*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f5f7fb;
  color:#222;
  line-height:1.7;
}

.header{
  background:#061b49;
  color:white;
  padding:15px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 3px 15px rgba(0,0,0,.25);
}

.brand{
  display:flex;
  align-items:center;
  gap:15px;
}

.brand-logo{
  width:60px;
  height:60px;
  border-radius:50%;
  background:#ffd700;
  color:#061b49;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:24px;
  font-weight:bold;
}

.brand h1{
  font-size:24px;
}

.brand p{
  color:#ffd700;
  font-size:14px;
}

.nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.nav a{
  color:white;
  text-decoration:none;
  font-weight:bold;
}

.nav a:hover{
  color:#ffd700;
}

.hero{
  min-height:92vh;
  background:
    linear-gradient(rgba(6,27,73,.78), rgba(6,27,73,.78)),
    url("images/schools-success.png");
  background-size:cover;
  background-position:center;
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:30px;
}

.hero-content{
  max-width:980px;
}

.badge{
  display:inline-block;
  background:#ffd700;
  color:#061b49;
  padding:8px 18px;
  border-radius:50px;
  font-weight:bold;
  margin-bottom:20px;
}

.hero h2{
  font-size:56px;
  line-height:1.15;
  margin-bottom:20px;
}

.hero p{
  font-size:22px;
  margin-bottom:30px;
}

.hero-actions{
  display:flex;
  gap:15px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  padding:14px 28px;
  border-radius:9px;
  text-decoration:none;
  font-weight:bold;
  display:inline-block;
  border:none;
  cursor:pointer;
  font-size:16px;
}

.primary{
  background:#ffd700;
  color:#061b49;
}

.secondary{
  background:white;
  color:#061b49;
}

.section{
  padding:85px 10%;
}

.light{
  background:white;
}

.section h2{
  text-align:center;
  color:#061b49;
  font-size:38px;
  line-height:1.25;
  margin-bottom:22px;
}

.section-intro,
.center-text{
  text-align:center;
  max-width:850px;
  margin:0 auto 35px auto;
  font-size:18px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.card{
  background:white;
  padding:27px;
  border-radius:16px;
  box-shadow:0 6px 20px rgba(0,0,0,.09);
  border-top:5px solid #0b3d91;
}

.card h3{
  color:#061b49;
  font-size:23px;
  margin-bottom:12px;
}

.card.danger{
  border-top-color:#d00000;
}

.image-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:25px;
}

.image-grid img,
.wide-image,
.split img{
  width:100%;
  border-radius:18px;
  box-shadow:0 10px 28px rgba(0,0,0,.16);
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.split h2{
  text-align:left;
}

.wizard{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:30px;
  align-items:start;
  max-width:1200px;
  margin:35px auto 0 auto;
}

.wizard-form,
.wizard-plans{
  background:white;
  padding:30px;
  border-radius:18px;
  box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.wizard-form h3,
.wizard-plans h3{
  color:#061b49;
  margin-bottom:18px;
  font-size:25px;
}

.wizard label{
  display:block;
  margin-top:15px;
  margin-bottom:6px;
  font-weight:bold;
  color:#061b49;
}

.wizard input,
.wizard select{
  width:100%;
  padding:14px;
  border:1px solid #ccc;
  border-radius:9px;
  font-size:16px;
}

.pricing-box{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:20px;
}

.price-card{
  background:#f8fbff;
  padding:24px;
  border-radius:16px;
  text-align:center;
  border:1px solid #dbe5ff;
  box-shadow:0 5px 16px rgba(0,0,0,.07);
}

.price-card h3{
  color:#061b49;
  margin-bottom:10px;
}

.price{
  font-size:30px;
  font-weight:bold;
  color:#078542;
  margin:12px 0;
}

.plan-btn{
  margin-top:15px;
  width:100%;
}

.payment-message{
  margin-top:20px;
  padding:15px;
  border-radius:10px;
  font-weight:bold;
  display:none;
}

.payment-message.show{
  display:block;
  background:#fff4cc;
  color:#061b49;
}

.contact-box{
  background:white;
  padding:30px;
  border-radius:16px;
  box-shadow:0 6px 20px rgba(0,0,0,.09);
}

.cta{
  background:#061b49;
  color:white;
  text-align:center;
}

.cta h2{
  color:white;
}

.cta p{
  max-width:700px;
  margin:0 auto 30px auto;
  font-size:20px;
}

.footer{
  background:#061b49;
  color:white;
  text-align:center;
  padding:35px;
}

.hidden{
  opacity:0;
  transform:translateY(25px);
  transition:all .7s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:900px){
  .header{
    flex-direction:column;
    gap:15px;
  }

  .nav{
    justify-content:center;
  }

  .hero h2{
    font-size:35px;
  }

  .hero p{
    font-size:18px;
  }

  .section{
    padding:60px 6%;
  }

  .section h2{
    font-size:29px;
  }

  .split,
  .wizard{
    grid-template-columns:1fr;
  }

  .split h2{
    text-align:center;
  }
}

.success-box{
  max-width:750px;
  margin:35px auto 0 auto;
  background:white;
  padding:35px;
  border-radius:18px;
  box-shadow:0 8px 25px rgba(0,0,0,.12);
  text-align:left;
}

.success-box h3{
  color:#061b49;
  font-size:28px;
  margin-bottom:20px;
  text-align:center;
}

.success-box p{
  font-size:18px;
  margin-bottom:10px;
}

.success-box hr{
  margin:20px 0;
  border:none;
  border-top:1px solid #ddd;
}

.success-actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:25px;
}

.small-note{
  text-align:center;
  font-size:14px !important;
  color:#555;
  margin-top:20px;
}

.hero-slider-section{
  background:#061b49;
  color:white;
}

.hero-slider-section h2{
  color:white;
}

.hero-slider{
  max-width:1100px;
  margin:30px auto 0 auto;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  box-shadow:0 12px 35px rgba(0,0,0,.35);
  background:#000;
}

.hero-slider img{
  width:100%;
  display:block;
}

.slider-caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:25px;
  background:linear-gradient(transparent, rgba(0,0,0,.9));
}

.slider-caption h3{
  font-size:30px;
  margin-bottom:8px;
  color:#ffd700;
}

.slider-caption p{
  font-size:18px;
}

.hero-carousel{
  position:relative;
  min-height:92vh;
  overflow:hidden;
  padding:0;
  background:#061b49;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  padding:40px;
}

.hero-slide.active{
  opacity:1;
  z-index:2;
}

.hero-dark{
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(6,27,73,.62),
    rgba(6,27,73,.78)
  );
  z-index:1;
}

.hero-slide .hero-content{
  position:relative;
  z-index:3;
  max-width:1000px;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:52px;
  height:52px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.85);
  color:#061b49;
  font-size:38px;
  cursor:pointer;
  font-weight:bold;
}

.hero-prev{
  left:25px;
}

.hero-next{
  right:25px;
}

.hero-dots{
  position:absolute;
  bottom:25px;
  left:0;
  right:0;
  z-index:5;
  display:flex;
  justify-content:center;
  gap:10px;
}

.hero-dot{
  width:13px;
  height:13px;
  border-radius:50%;
  border:2px solid white;
  background:transparent;
  cursor:pointer;
}

.hero-dot.active{
  background:#ffd700;
  border-color:#ffd700;
}

@media(max-width:700px){
  .hero-arrow{
    width:40px;
    height:40px;
    font-size:28px;
  }

  .hero-prev{
    left:10px;
  }

  .hero-next{
    right:10px;
  }
}

.hero-carousel{
  position:relative;
  min-height:92vh;
  overflow:hidden;
  padding:0;
  background:#061b49;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  padding:40px;
}

.hero-slide.active{
  opacity:1;
  z-index:2;
}

.hero-dark{
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(6,27,73,.62),
    rgba(6,27,73,.78)
  );
  z-index:1;
}

.hero-slide .hero-content{
  position:relative;
  z-index:3;
  max-width:1000px;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:52px;
  height:52px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.85);
  color:#061b49;
  font-size:38px;
  cursor:pointer;
  font-weight:bold;
}

.hero-prev{
  left:25px;
}

.hero-next{
  right:25px;
}

.hero-dots{
  position:absolute;
  bottom:25px;
  left:0;
  right:0;
  z-index:5;
  display:flex;
  justify-content:center;
  gap:10px;
}

.hero-dot{
  width:13px;
  height:13px;
  border-radius:50%;
  border:2px solid white;
  background:transparent;
  cursor:pointer;
}

.hero-dot.active{
  background:#ffd700;
  border-color:#ffd700;
}

@media(max-width:700px){
  .hero-arrow{
    width:40px;
    height:40px;
    font-size:28px;
  }

  .hero-prev{
    left:10px;
  }

  .hero-next{
    right:10px;
  }
}

.lesson-slideshow{
  max-width:1150px;
  margin:30px auto 0 auto;
  background:white;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,.18);
}

.lesson-poster{
  width:100%;
  display:block;
}

.lesson-slide-caption{
  padding:22px;
  text-align:center;
  background:#061b49;
  color:white;
}

.lesson-slide-caption h3{
  color:#ffd700;
  font-size:26px;
  margin-bottom:8px;
}