
/* RESET */
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial, sans-serif;}

body{background:#f7f7f7;color:#1a1a1a;}

.container{width:100%;max-width:1250px;margin:auto;}

.att-hero{
  position:relative;
  margin-top:50px;
  min-height:520px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* BACKGROUND */
.hero-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
}

.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:right center;
  display:block;
}
/* OVERLAY */
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(255,255,255,0.96) 30%,
    rgba(255,255,255,0.72) 52%,
    rgba(255,255,255,0.05) 78%
  );
}

/* CONTAINER */
.att-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  position:relative;
  z-index:2;
}

.att-content{
  max-width:580px;
}

/* SMALL TEXT */
.att-eyebrow{
  font-size:17px;
  font-weight:600;
  margin-bottom:18px;
  color:#111;
  letter-spacing:0.5px;
}

/* TITLE */
.att-content h1{
  font-size:46px;
  line-height:1.15;
  font-weight:700;
  margin-bottom:30px;
  color:#0f172a;
}

/* SLIDER */
.att-slider{
  position:relative;
  height:95px;
  margin-bottom:35px;
  overflow:hidden;
}

/* EACH SLIDE */
.slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;

  opacity:0;
  transform:translateY(35px);
  transition:all 0.7s ease;

  display:flex;
  align-items:center; /* FIX ALIGNMENT */
  gap:18px;
}

/* ACTIVE */
.slide.active{
  opacity:1;
  transform:translateY(0);
}

/* NUMBER CIRCLE */
.slide-number{
  width:50px;
  height:50px;
  min-width:50px;

  border-radius:50%;
  background:#1a2340;
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:14px;
  font-weight:700;

  flex-shrink:0;
}

/* TEXT */
.slide p{
  margin:0;
  font-size:17px;
  line-height:1.5;
  color:#1e293b;
  font-weight:500;
}

/* BUTTONS */
.att-buttons{
  display:flex;
  gap:15px;
}

/* PRIMARY BUTTON */
.btn-primary{
  background:#1a2340;
  color:#fff;
  padding:14px 28px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.4px;
  transition:0.3s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-primary:hover{
  background:#000;
  transform:translateY(-2px);
}

/* MOBILE */
@media(max-width:900px){

  .att-hero{
    min-height:700px;
    padding:0;
    display:flex;
    align-items:flex-start;
  }

  /* FORCE BG TO FILL */
  .hero-bg{
    height:100%;
  }

  .hero-bg img{
    object-position:center center;
  }

  /* OVERLAY */
  .hero-bg::after{
    background:linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(255,255,255,0.9)
    );
  }

  .att-container{
    padding-top:110px;
    padding-bottom:70px;
    width:90%;
  }

  .att-content{
    max-width:100%;
  }

  .att-content h1{
    font-size:32px;
    line-height:1.25;
    margin-bottom:25px;
  }

  .att-slider{
    height:160px;
  }

  .slide{
    gap:14px;
  }

  .slide-number{
    min-width:42px;
    height:42px;
    font-size:13px;
  }

  .slide p{
    font-size:15px;
    line-height:1.6;
  }

  .att-buttons{
    width:100%;
  }

  .btn-primary{
    width:100%;
    justify-content:center;
  }

}

/* PAIN POINTS */
.section{
  padding:60px 0;
  background: #1a2340;
}

.section h2{
  margin-bottom:30px;
  font-size:18px;
  letter-spacing:1px;
  color:hwb(0 100% 0%);
  margin-right: 50px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.card{
  background:#ff0000e4;
  padding:15px;
  border-radius:8px;
  border:1px solid #eee;
}

.card h3{
  font-size:16px;
  margin-bottom:10px;
    color:#fffbfb;
}

.card p{
  font-size:14px;
  color:hsl(0, 0%, 100%);
}

/* SPLIT SECTION */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:30px;
  padding:60px 0;
}

.split-text h2{
  font-size:28px;
  margin-bottom:15px;
}

.split-text p{
  margin-bottom:20px;
  color:#555;
}

.split-buttons button{
  margin-right:10px;
  padding:10px 16px;
  border-radius:20px;
  border:none;
  cursor:pointer;
}

.btn-dark{background:#000;color:#fff;}
.btn-light{background:#eee;}

.split img{
  width:100%;
  border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .grid{grid-template-columns:1fr 1fr;}
  .split{grid-template-columns:1fr;}
}

@media(max-width:600px){
  .hero{height:300px;}
  .hero h1{font-size:20px;}
  .grid{grid-template-columns:1fr;}
}


/* MOBILE */
@media(max-width:900px){

  .slide{
    align-items:flex-start;
    gap:14px;
  }

  .slide-number{
    width:42px;
    height:42px;
    min-width:42px;
    font-size:12px;
    margin-top:3px;
  }

  .slide p{
    font-size:15px;
    line-height:1.5;
  }

}