:root{
  --navy:#17224d;
  --blue:#2f80ff;
  --sky:#76d7ff;
  --yellow:#ffd84d;
  --orange:#ff9f1c;
  --coral:#ff5f7e;
  --pink:#ff8fcb;
  --purple:#8b5cf6;
  --green:#36d399;
  --mint:#b8ffdf;
  --white:#ffffff;
  --text:#18203f;
  --muted:#66708f;
  --shadow:0 14px 38px rgba(23,34,77,.12);
  --soft:0 8px 22px rgba(23,34,77,.08);
  --radius:34px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:'Poppins','Inter',sans-serif;
  color:var(--text);
  overflow-x:hidden;
  background:
    radial-gradient(circle at 8% 8%,rgba(255,216,77,.45),transparent 20%),
    radial-gradient(circle at 92% 12%,rgba(118,215,255,.45),transparent 22%),
    radial-gradient(circle at 20% 88%,rgba(255,143,203,.35),transparent 23%),
    linear-gradient(180deg,#fffaf0 0%,#f3fbff 42%,#fff7fd 100%);
}

body::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background-image:
    radial-gradient(circle,rgba(23,34,77,.08) 2px,transparent 2px),
    radial-gradient(circle,rgba(255,95,126,.12) 2px,transparent 2px);
  background-size:34px 34px,54px 54px;
  opacity:.35;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(1160px,92%);
  margin:auto;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:99;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(23,34,77,.08);
}

.header-inner{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:20px;
  font-size:28px;
  background:linear-gradient(135deg,var(--yellow),var(--pink),var(--sky));
  box-shadow:0 10px 22px rgba(255,95,126,.18);
}

.brand strong{
  display:block;
  color:var(--navy);
  font-size:17px;
  line-height:1.1;
}

.brand span{
  display:block;
  color:var(--muted);
  font-size:12px;
}

.nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-weight:800;
  color:var(--navy);
}

.nav a{
  position:relative;
  font-size:14px;
}

.nav a:not(.btn-mini)::after{
  content:"";
  position:absolute;
  height:4px;
  width:0;
  left:0;
  bottom:-8px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--coral),var(--yellow));
  transition:width .2s ease;
}

.nav a:hover::after{
  width:100%;
}

.btn-mini{
  color:#fff!important;
  padding:12px 20px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--coral),var(--orange));
  box-shadow:0 10px 22px rgba(255,95,126,.20);
}

/* HERO */

.hero{
  position:relative;
  padding:86px 0 110px;
  overflow:hidden;
}

.hero::before{
  content:"ABC";
  position:absolute;
  top:60px;
  right:5%;
  font-size:120px;
  font-weight:900;
  color:rgba(23,34,77,.045);
  transform:rotate(-10deg);
}

.hero::after{
  content:"★ ★ ★";
  position:absolute;
  left:5%;
  bottom:35px;
  color:rgba(255,159,28,.32);
  font-size:42px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:58px;
  align-items:center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 18px;
  border-radius:999px;
  background:#fff;
  color:var(--navy);
  font-weight:900;
  box-shadow:var(--soft);
  margin-bottom:22px;
}

.badge::before{
  content:"🚀";
}

.hero h1{
  margin:0;
  max-width:620px;
  font-size:clamp(44px,6vw,78px);
  line-height:.92;
  letter-spacing:-3px;
  color:var(--navy);
}

.hero h1::after{
  content:"";
  display:block;
  width:240px;
  height:18px;
  margin-top:10px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--yellow),var(--coral),var(--sky));
  opacity:.9;
}

.hero p{
  max-width:560px;
  margin:24px 0 0;
  font-size:20px;
  line-height:1.75;
  color:var(--muted);
}

.hero-buttons{
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:16px 26px;
  border-radius:999px;
  font-weight:900;
  transition:transform .2s ease;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--coral),var(--orange));
  box-shadow:0 14px 26px rgba(255,95,126,.24);
}

.btn-primary::after{
  content:" →";
  margin-left:6px;
}

.btn-secondary{
  background:#fff;
  color:var(--navy);
  box-shadow:var(--soft);
}

.btn-primary:hover,
.btn-secondary:hover{
  transform:translateY(-3px);
}

.stats{
  margin-top:38px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.stats div{
  min-width:130px;
  padding:18px 20px;
  border-radius:24px;
  background:rgba(255,255,255,.9);
  box-shadow:var(--soft);
  border:1px solid rgba(255,255,255,.7);
}

.stats strong{
  display:block;
  font-size:22px;
  color:var(--navy);
}

.stats span{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

/* HERO CARD */

.hero-card{
  position:relative;
  min-height:560px;
  border-radius:48px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.9),transparent 18%),
    radial-gradient(circle at 85% 18%,rgba(255,216,77,.65),transparent 20%),
    radial-gradient(circle at 15% 85%,rgba(255,143,203,.62),transparent 22%),
    linear-gradient(135deg,#7ddcff,#c4f9d5 48%,#ffe28a);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-card::before{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  top:34px;
  left:34px;
  background:rgba(255,255,255,.30);
  border-radius:52% 48% 63% 37% / 38% 49% 51% 62%;
}

.hero-card::after{
  content:"Hello!";
  position:absolute;
  right:34px;
  bottom:38px;
  padding:14px 22px;
  border-radius:26px 26px 26px 8px;
  background:#fff;
  color:var(--navy);
  font-weight:900;
  box-shadow:var(--soft);
}

.card{
  position:relative;
  z-index:2;
  width:min(360px,86%);
  padding:36px;
  border-radius:38px;
  text-align:center;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.8);
  box-shadow:0 18px 42px rgba(23,34,77,.12);
}

.avatar{
  width:128px;
  height:128px;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
  font-size:68px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--yellow),var(--mint));
  box-shadow:inset 0 -12px 0 rgba(255,255,255,.35);
}

.card h3{
  margin:0 0 10px;
  font-size:28px;
  color:var(--navy);
}

.card p{
  margin:0;
  color:var(--muted);
  font-weight:600;
}

.progress{
  height:14px;
  margin:24px 0;
  border-radius:999px;
  background:#e9edf7;
  overflow:hidden;
}

.progress div{
  width:72%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--green),var(--sky),var(--pink));
}

.card button{
  width:100%;
  border:0;
  cursor:pointer;
  padding:16px;
  border-radius:20px;
  background:var(--navy);
  color:#fff;
  font-weight:900;
}

/* SECTIONS */

.section{
  position:relative;
  padding:96px 0;
}

.section-title{
  max-width:760px;
  margin:0 auto 48px;
  text-align:center;
  font-size:clamp(34px,4vw,56px);
  line-height:1;
  letter-spacing:-1.8px;
  color:var(--navy);
}

.section-title::before{
  content:"✨";
  display:block;
  font-size:38px;
  margin-bottom:10px;
}

/* FEATURES */

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.card-feature{
  position:relative;
  min-height:270px;
  padding:30px 24px;
  border-radius:34px;
  background:#fff;
  text-align:center;
  box-shadow:var(--soft);
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}

.card-feature::before{
  content:"";
  position:absolute;
  inset:auto -30px -52px auto;
  width:130px;
  height:130px;
  border-radius:50%;
  background:rgba(118,215,255,.22);
}

.card-feature:nth-child(2)::before{
  background:rgba(255,216,77,.28);
}

.card-feature:nth-child(3)::before{
  background:rgba(255,143,203,.28);
}

.card-feature:nth-child(4)::before{
  background:rgba(54,211,153,.25);
}

.card-feature:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.card-feature span{
  width:82px;
  height:82px;
  margin:0 auto 18px;
  display:grid;
  place-items:center;
  font-size:42px;
  border-radius:28px;
  background:linear-gradient(135deg,#fff4b8,#dff7ff);
}

.card-feature h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:22px;
}

.card-feature p{
  color:var(--muted);
  line-height:1.55;
  font-weight:600;
}

/* METHOD */

.alt{
  background:
    radial-gradient(circle at top left,rgba(118,215,255,.20),transparent 25%),
    radial-gradient(circle at bottom right,rgba(255,143,203,.18),transparent 26%),
    rgba(255,255,255,.52);
}

.two-col{
  display:grid;
  grid-template-columns:1fr .86fr;
  gap:46px;
  align-items:center;
}

.two-col h2,
.form-grid h2{
  margin:0 0 18px;
  font-size:clamp(34px,4vw,56px);
  line-height:1;
  letter-spacing:-1.6px;
  color:var(--navy);
}

.two-col p,
.form-grid p{
  font-size:19px;
  color:var(--muted);
  line-height:1.7;
}

.steps{
  margin:28px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:16px;
}

.steps li{
  position:relative;
  padding:18px 20px 18px 58px;
  border-radius:22px;
  background:#fff;
  box-shadow:var(--soft);
  font-weight:900;
  color:var(--navy);
}

.steps li::before{
  content:"✓";
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--green);
  color:#fff;
}

.box{
  position:relative;
  padding:42px;
  border-radius:42px;
  color:#fff;
  background:linear-gradient(145deg,var(--navy),#3154d4 62%,var(--purple));
  box-shadow:var(--shadow);
  overflow:hidden;
}

.box::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-50px;
  top:-40px;
  border-radius:50%;
  background:rgba(255,216,77,.25);
}

.box h3{
  margin:0 0 24px;
  font-size:34px;
}

.box ul{
  position:relative;
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}

.box li{
  padding:16px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.13);
  font-weight:900;
}

/* PLAN */

.plan{
  max-width:560px;
  margin:auto;
  padding:42px;
  border-radius:42px;
  text-align:center;
  background:#fff;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.plan::before{
  content:"Más popular";
  position:absolute;
  top:24px;
  right:-42px;
  transform:rotate(35deg);
  background:var(--yellow);
  color:var(--navy);
  font-weight:900;
  padding:8px 52px;
}

.plan h3{
  margin:10px 0;
  font-size:34px;
  color:var(--navy);
}

.plan p{
  color:var(--muted);
  font-weight:600;
}

.price{
  margin:28px 0;
  font-size:44px;
  font-weight:900;
  color:var(--coral);
}

.plan ul{
  list-style:none;
  padding:0;
  margin:0 0 30px;
  display:grid;
  gap:12px;
  text-align:left;
}

.plan li{
  padding:14px 16px;
  border-radius:18px;
  background:#f7f9ff;
  font-weight:800;
}

.plan li::before{
  content:"🌟 ";
}

/* FORM */

.form-grid{
  display:grid;
  grid-template-columns:.86fr 1fr;
  gap:46px;
  align-items:start;
}

.form{
  padding:34px;
  border-radius:38px;
  background:#ffffff;
  box-shadow:var(--shadow);
  display:grid;
  gap:14px;
}

.form input,
.form select{
  width:100%;
  border:2px solid transparent;
  outline:none;
  padding:17px 18px;
  border-radius:20px;
  background:#f7f9ff;
  font-size:15px;
  font-family:inherit;
  transition:border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.form input:focus,
.form select:focus{
  background:#fff;
  border-color:var(--sky);
  box-shadow:0 0 0 4px rgba(118,215,255,.18);
}

.form button{
  border:0;
  cursor:pointer;
  margin-top:4px;
  padding:17px;
  border-radius:20px;
  color:#fff;
  background:linear-gradient(135deg,var(--coral),var(--orange));
  font-weight:900;
  font-size:16px;
  box-shadow:0 12px 26px rgba(255,95,126,.20);
}

/* BLOQUE EXTRA PARA EL VACÍO DEL REGISTRO */

.register-highlight{
  margin-top:28px;
  padding:28px;
  border-radius:34px;
  background:#ffffff;
  box-shadow:var(--soft);
  max-width:440px;
}

.register-highlight span{
  display:inline-flex;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,216,77,.38);
  color:#8a6200;
  font-weight:900;
  margin-bottom:12px;
}

.register-highlight h3{
  margin:0 0 10px;
  font-size:28px;
  color:var(--navy);
}

.register-highlight p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
}

.highlight-price{
  padding:18px;
  border-radius:24px;
  background:linear-gradient(135deg,rgba(118,215,255,.22),rgba(255,143,203,.20));
  margin-bottom:18px;
}

.highlight-price small{
  display:block;
  color:var(--muted);
  font-weight:800;
  margin-bottom:4px;
}

.highlight-price strong{
  font-size:30px;
  color:var(--coral);
}

.register-highlight ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.register-highlight li{
  font-weight:800;
  color:var(--navy);
}

/* FOOTER */

.footer{
  padding:42px 0;
  text-align:center;
  color:#fff;
  background:var(--navy);
}

.footer strong{
  font-size:20px;
}

.footer p{
  color:rgba(255,255,255,.7);
}

/* RESPONSIVE */

@media(max-width:980px){
  .hero-grid,
  .two-col,
  .form-grid{
    grid-template-columns:1fr;
  }

  .hero-card{
    min-height:460px;
  }

  .grid{
    grid-template-columns:repeat(2,1fr);
  }

  .register-highlight{
    max-width:100%;
  }
}

@media(max-width:720px){
  .nav{
    display:none;
  }

  .header-inner{
    height:74px;
  }

  .hero{
    padding:58px 0 80px;
  }

  .hero h1{
    font-size:43px;
    letter-spacing:-1.6px;
  }

  .hero p{
    font-size:17px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
  }

  .stats div{
    width:100%;
  }

  .grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:72px 0;
  }

  .plan,
  .form,
  .register-highlight{
    padding:26px;
  }

  .box{
    padding:28px;
  }
}
.form button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.form button.loading .btn-text {
  opacity: .75;
}

.form button.loading .btn-loader {
  display: inline-block;
}

.form button:disabled {
  cursor: not-allowed;
  opacity: .85;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.phone-row{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:12px;
}

.phone-row select,
.phone-row input{
  margin:0;
}

@media(max-width:720px){
  .phone-row{
    grid-template-columns:1fr;
  }
}
.footer-pro{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 18%,rgba(255,216,77,.28),transparent 26%),
    radial-gradient(circle at 82% 16%,rgba(118,215,255,.22),transparent 28%),
    radial-gradient(circle at 42% 92%,rgba(255,143,203,.22),transparent 26%),
    linear-gradient(135deg,#17224d 0%,#24307a 52%,#8b5cf6 100%);
  color:#fff;
  padding:86px 0 30px;
}

.footer-pro::before{
  content:"ABC";
  position:absolute;
  right:5%;
  top:24px;
  font-size:110px;
  font-weight:900;
  color:rgba(255,255,255,.06);
  transform:rotate(-8deg);
}

.footer-pro::after{
  content:"";
  position:absolute;
  left:-120px;
  bottom:-140px;
  width:330px;
  height:330px;
  border-radius:50%;
  background:rgba(255,216,77,.18);
  filter:blur(4px);
}

.footer-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.5fr repeat(4,1fr);
  gap:42px;
}

.footer-brand h3,
.footer-pro h4{
  margin:0 0 16px;
  color:#fff;
}

.footer-logo{
  width:66px;
  height:66px;
  display:grid;
  place-items:center;
  border-radius:24px;
  background:linear-gradient(135deg,var(--yellow),var(--pink),var(--sky));
  font-size:34px;
  margin-bottom:18px;
  box-shadow:0 18px 34px rgba(255,95,126,.22);
}

.footer-brand p{
  max-width:310px;
  line-height:1.6;
  color:rgba(255,255,255,.76);
  font-weight:600;
}

.footer-pro a{
  display:block;
  color:rgba(255,255,255,.72);
  font-weight:800;
  margin:0 0 13px;
  transition:.2s;
}

.footer-pro a:hover{
  color:#fff;
  transform:translateX(5px);
}

.footer-bottom{
  position:relative;
  z-index:2;
  margin-top:52px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.18);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.78);
  font-weight:700;
  font-size:14px;
}

@media(max-width:900px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:620px){
  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
  }
}
.footer-pro{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 18%,rgba(255,216,77,.24),transparent 26%),
    radial-gradient(circle at 82% 16%,rgba(118,215,255,.20),transparent 28%),
    radial-gradient(circle at 42% 92%,rgba(255,143,203,.22),transparent 26%),
    linear-gradient(135deg,#17224d 0%,#24307a 52%,#8b5cf6 100%);
  color:#fff;
  padding:86px 0 30px;
}

.footer-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.4fr repeat(4,1fr);
  gap:42px;
}

.footer-logo{
  width:66px;
  height:66px;
  display:grid;
  place-items:center;
  border-radius:24px;
  background:linear-gradient(135deg,var(--yellow),var(--pink),var(--sky));
  font-size:34px;
  margin-bottom:18px;
}

.footer-brand h3,
.footer-pro h4{
  margin:0 0 16px;
  color:#fff;
}

.footer-brand p{
  max-width:310px;
  line-height:1.6;
  color:rgba(255,255,255,.76);
  font-weight:600;
}

.footer-pro a{
  display:block;
  color:rgba(255,255,255,.72);
  font-weight:800;
  margin:0 0 13px;
  transition:.2s;
}

.footer-pro a:hover{
  color:#fff;
  transform:translateX(5px);
}

.footer-bottom{
  position:relative;
  z-index:2;
  margin-top:52px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.18);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.78);
  font-weight:700;
  font-size:14px;
}

@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:620px){
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
}
/* =========================================================
   PÁGINA INTERNA: CLASES EN VIVO / programa.php
   English Adventure Kids
========================================================= */

/* HERO CLASES EN VIVO */

.live-hero{
  position:relative;
  padding:86px 0 110px;
  overflow:hidden;
}

.live-hero::before{
  content:"LIVE";
  position:absolute;
  right:4%;
  top:90px;
  font-size:120px;
  font-weight:900;
  color:rgba(23,34,77,.045);
  transform:rotate(-8deg);
}

.live-hero-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:58px;
  align-items:center;
}

.live-hero-content h1{
  margin:0;
  max-width:680px;
  font-size:clamp(44px,6vw,76px);
  line-height:.92;
  letter-spacing:-3px;
  color:var(--navy);
}

.live-hero-content h1::after{
  content:"";
  display:block;
  width:260px;
  height:18px;
  margin-top:14px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--yellow),var(--coral),var(--sky));
}

.live-hero-content p{
  max-width:620px;
  margin:26px 0 0;
  font-size:20px;
  line-height:1.75;
  color:var(--muted);
}

.live-mini-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:34px;
}

.live-mini-stats div{
  padding:18px;
  border-radius:24px;
  background:rgba(255,255,255,.9);
  box-shadow:var(--soft);
}

.live-mini-stats strong{
  display:block;
  color:var(--navy);
  font-size:15px;
  margin-bottom:6px;
}

.live-mini-stats span{
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}

/* MOCKUP PRINCIPAL DE CLASE */

.live-class-preview{
  min-height:580px;
  display:grid;
  place-items:center;
  border-radius:48px;
  background:
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.75),transparent 20%),
    radial-gradient(circle at 86% 16%,rgba(255,216,77,.55),transparent 22%),
    radial-gradient(circle at 14% 88%,rgba(255,143,203,.48),transparent 24%),
    linear-gradient(135deg,#86ddff,#c4f9d5 48%,#ffe28a);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}

.live-class-preview::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  left:40px;
  top:50px;
  border-radius:50%;
  background:rgba(255,255,255,.28);
}

.live-screen{
  width:min(430px,88%);
  position:relative;
  z-index:2;
  border-radius:38px;
  background:rgba(255,255,255,.94);
  box-shadow:0 24px 52px rgba(23,34,77,.16);
  padding:18px;
}

.screen-top{
  display:flex;
  gap:8px;
  margin-bottom:16px;
}

.screen-top span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#e3e8f6;
}

.screen-top span:nth-child(1){background:var(--coral)}
.screen-top span:nth-child(2){background:var(--yellow)}
.screen-top span:nth-child(3){background:var(--sky)}

.teacher-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:24px;
  background:#f7f9ff;
  margin-bottom:16px;
}

.teacher-avatar{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  font-size:28px;
  background:linear-gradient(135deg,var(--yellow),var(--pink));
}

.teacher-card strong{
  display:block;
  color:var(--navy);
}

.teacher-card small{
  color:var(--muted);
  font-weight:700;
}

.live-pill{
  margin-left:auto;
  padding:7px 11px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,var(--coral),var(--orange));
  font-size:11px;
  font-weight:900;
}

.class-board{
  padding:22px;
  border-radius:30px;
  color:#fff;
  background:linear-gradient(145deg,var(--navy),#3154d4 60%,var(--purple));
}

.topic-label{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  font-size:12px;
  font-weight:900;
  margin-bottom:12px;
}

.class-board h3{
  margin:0 0 18px;
  font-size:28px;
}

.animal-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.animal-row div{
  display:grid;
  place-items:center;
  gap:6px;
  padding:14px 8px;
  border-radius:20px;
  background:rgba(255,255,255,.14);
  font-size:30px;
}

.animal-row span{
  font-size:11px;
  font-weight:900;
}

.students-row{
  display:flex;
  gap:10px;
  margin:16px 0;
}

.students-row div{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#fff7df;
  font-size:26px;
  box-shadow:var(--soft);
}

.speak-bubble{
  padding:15px 18px;
  border-radius:22px 22px 22px 8px;
  background:#fff;
  box-shadow:var(--soft);
  color:var(--muted);
  font-weight:800;
}

.speak-bubble strong{
  color:var(--navy);
}

/* ENCABEZADOS INTERNOS */

.section-heading{
  max-width:820px;
  margin:0 auto 48px;
  text-align:center;
}

.section-heading span,
.small-label{
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  color:var(--navy);
  font-weight:900;
  box-shadow:var(--soft);
  margin-bottom:16px;
}

.section-heading h2,
.live-moment-content h2,
.parent-card h2,
.final-cta-card h2{
  margin:0;
  font-size:clamp(34px,4.4vw,58px);
  line-height:1;
  letter-spacing:-1.8px;
  color:var(--navy);
}

.section-heading p,
.live-moment-content p,
.parent-card p,
.final-cta-card p{
  margin:20px auto 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

/* CARDS DE EXPERIENCIA */

.class-experience-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:22px;
}

.experience-card{
  min-height:280px;
  padding:30px;
  border-radius:34px;
  background:#fff;
  box-shadow:var(--soft);
  position:relative;
  overflow:hidden;
  transition:.2s ease;
}

.experience-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.experience-card.big{
  grid-row:span 2;
  min-height:582px;
  background:
    radial-gradient(circle at 20% 18%,rgba(255,216,77,.36),transparent 24%),
    radial-gradient(circle at 88% 86%,rgba(118,215,255,.28),transparent 28%),
    #fff;
}

.experience-card::after{
  content:"";
  position:absolute;
  right:-42px;
  bottom:-48px;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(255,143,203,.22);
}

.experience-icon{
  width:82px;
  height:82px;
  display:grid;
  place-items:center;
  border-radius:28px;
  font-size:40px;
  background:linear-gradient(135deg,#fff4b8,#dff7ff);
  margin-bottom:22px;
}

.experience-card h3{
  margin:0 0 12px;
  font-size:27px;
  color:var(--navy);
}

.experience-card p{
  color:var(--muted);
  font-weight:600;
  line-height:1.65;
}

/* SECCIÓN DE FOTOS REALES */

.real-class-gallery{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}

.real-photo-card{
  position:relative;
  overflow:hidden;
  min-height:360px;
  border-radius:42px;
  background:#fff;
  box-shadow:var(--shadow);
}

.real-photo-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.real-photo-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(23,34,77,.72));
}

.real-photo-info{
  position:absolute;
  left:28px;
  right:28px;
  bottom:26px;
  z-index:2;
  color:#fff;
}

.real-photo-info span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
  font-weight:900;
  margin-bottom:12px;
}

.real-photo-info h3{
  margin:0 0 8px;
  font-size:30px;
}

.real-photo-info p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.55;
  font-weight:600;
}

.real-photo-side{
  display:grid;
  gap:26px;
}

.real-photo-card.small{
  min-height:260px;
}

/* FLUJO DE CLASE - CORREGIDO */

.lesson-flow{
  display:grid;
  gap:22px;
}

.lesson-step{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:20px;
  align-items:start;
}

.lesson-number{
  min-height:112px;
  height:112px;
  display:grid;
  place-items:center;
  border-radius:30px;
  background:linear-gradient(135deg,var(--coral),var(--orange));
  color:#fff;
  font-weight:900;
  font-size:24px;
  box-shadow:0 14px 26px rgba(255,95,126,.18);
}

.lesson-content{
  display:grid;
  grid-template-columns:82px 1fr;
  grid-template-rows:auto auto;
  column-gap:22px;
  row-gap:6px;
  align-items:center;
  min-height:112px;
  padding:26px 30px;
  border-radius:34px;
  background:#fff;
  box-shadow:var(--soft);
}

.lesson-content > span{
  grid-column:1;
  grid-row:1 / span 2;
  width:82px;
  height:82px;
  display:grid;
  place-items:center;
  border-radius:28px;
  background:linear-gradient(135deg,#fff4b8,#dff7ff);
  font-size:38px;
}

.lesson-content h3{
  grid-column:2;
  grid-row:1;
  margin:0;
  color:var(--navy);
  font-size:25px;
  line-height:1.15;
}

.lesson-content p{
  grid-column:2;
  grid-row:2;
  margin:0;
  max-width:850px;
  color:var(--muted);
  line-height:1.6;
  font-weight:600;
  font-size:16px;
}

/* TEMAS */

.topics-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}

.topic-card{
  min-height:220px;
  padding:24px 18px;
  border-radius:32px;
  background:#fff;
  box-shadow:var(--soft);
  text-align:center;
  transition:.2s ease;
}

.topic-card:hover{
  transform:translateY(-6px) rotate(-1deg);
  box-shadow:var(--shadow);
}

.topic-card div{
  width:78px;
  height:78px;
  margin:0 auto 16px;
  display:grid;
  place-items:center;
  font-size:40px;
  border-radius:28px;
  background:linear-gradient(135deg,#fff6bd,#dff7ff);
}

.topic-card h3{
  margin:0 0 8px;
  color:var(--navy);
  font-size:20px;
}

.topic-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
  font-weight:700;
}

/* ASÍ SE VIVE */

.live-moment-grid{
  display:grid;
  grid-template-columns:.95fr 1fr;
  gap:56px;
  align-items:center;
}

.live-check-list{
  list-style:none;
  padding:0;
  margin:28px 0 0;
  display:grid;
  gap:14px;
}

.live-check-list li{
  position:relative;
  padding:17px 18px 17px 56px;
  border-radius:22px;
  background:#fff;
  box-shadow:var(--soft);
  color:var(--navy);
  font-weight:800;
}

.live-check-list li::before{
  content:"✓";
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--green);
  color:#fff;
}

.live-mockup-stack{
  position:relative;
  min-height:470px;
  display:grid;
  place-items:center;
}

.mockup-card{
  border-radius:36px;
  background:#fff;
  box-shadow:var(--shadow);
}

.mockup-card.main{
  width:min(430px,90%);
  padding:34px;
  background:
    radial-gradient(circle at 88% 18%,rgba(255,216,77,.26),transparent 28%),
    radial-gradient(circle at 15% 90%,rgba(118,215,255,.22),transparent 28%),
    #fff;
}

.mockup-tag{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,95,126,.12);
  color:var(--coral);
  font-weight:900;
  margin-bottom:18px;
}

.mockup-card.main h3{
  margin:0 0 22px;
  font-size:34px;
  color:var(--navy);
}

.color-dots{
  display:flex;
  gap:12px;
  margin-bottom:24px;
}

.color-dots span{
  width:52px;
  height:52px;
  border-radius:18px;
}

.color-dots span:nth-child(1){background:var(--yellow)}
.color-dots span:nth-child(2){background:var(--coral)}
.color-dots span:nth-child(3){background:var(--sky)}
.color-dots span:nth-child(4){background:var(--purple)}

.mockup-card.main p{
  color:var(--muted);
  font-weight:800;
}

.mockup-card.main strong{
  display:block;
  padding:16px;
  border-radius:22px;
  background:var(--navy);
  color:#fff;
}

.mockup-card.floating{
  position:absolute;
  padding:18px 22px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  color:var(--navy);
}

.mockup-card.floating span{
  font-size:28px;
}

.mockup-card.floating.one{
  top:28px;
  right:24px;
}

.mockup-card.floating.two{
  bottom:30px;
  left:20px;
}

/* TARJETAS TIPO APP */

.class-cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.app-class-card{
  overflow:hidden;
  border-radius:36px;
  background:#fff;
  box-shadow:var(--soft);
  transition:.2s ease;
}

.app-class-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow);
}

.app-card-cover{
  height:210px;
  display:grid;
  place-items:center;
  font-size:76px;
}

.app-card-cover.animals{
  background:linear-gradient(135deg,#dff7ff,#fff2a8);
}

.app-card-cover.food{
  background:linear-gradient(135deg,#ffe2eb,#fff4b8);
}

.app-card-cover.school{
  background:linear-gradient(135deg,#e7ddff,#dff7ff);
}

.app-card-cover span{
  width:130px;
  height:130px;
  display:grid;
  place-items:center;
  border-radius:42px;
  background:rgba(255,255,255,.58);
}

.app-card-body{
  padding:28px;
}

.app-card-body small{
  display:inline-flex;
  margin-bottom:12px;
  color:var(--coral);
  font-weight:900;
}

.app-card-body h3{
  margin:0 0 10px;
  font-size:26px;
  color:var(--navy);
}

.app-card-body p{
  color:var(--muted);
  font-weight:600;
  line-height:1.6;
}

.mini-progress{
  height:12px;
  border-radius:999px;
  background:#edf1fa;
  overflow:hidden;
  margin-top:20px;
}

.mini-progress span{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--green),var(--sky),var(--pink));
}

/* NECESIDADES */

.needs-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.need-card{
  padding:28px 24px;
  border-radius:34px;
  background:#fff;
  box-shadow:var(--soft);
  text-align:center;
}

.need-card span{
  width:76px;
  height:76px;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
  border-radius:26px;
  font-size:36px;
  background:linear-gradient(135deg,#fff4b8,#dff7ff);
}

.need-card h3{
  color:var(--navy);
  font-size:21px;
  margin:0 0 10px;
}

.need-card p{
  color:var(--muted);
  font-weight:600;
  line-height:1.55;
}

/* BENEFICIOS PARA PADRES */

.parent-benefits{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:center;
}

.parent-card,
.parent-dashboard{
  border-radius:42px;
  background:#fff;
  box-shadow:var(--shadow);
}

.parent-card{
  padding:42px;
}

.parent-benefit-list{
  display:grid;
  gap:16px;
  margin-top:28px;
}

.parent-benefit-list div{
  padding:18px;
  border-radius:24px;
  background:#f7f9ff;
}

.parent-benefit-list strong{
  display:block;
  color:var(--navy);
  margin-bottom:6px;
}

.parent-benefit-list span{
  color:var(--muted);
  font-weight:600;
}

.parent-dashboard{
  padding:34px;
  background:
    radial-gradient(circle at 88% 12%,rgba(255,216,77,.28),transparent 28%),
    radial-gradient(circle at 12% 88%,rgba(118,215,255,.24),transparent 26%),
    #fff;
}

.dashboard-header{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  margin-bottom:28px;
}

.dashboard-header strong{
  font-size:24px;
  color:var(--navy);
}

.dashboard-header span{
  padding:8px 12px;
  border-radius:999px;
  background:var(--navy);
  color:#fff;
  font-size:12px;
  font-weight:900;
}

.progress-item{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  margin-top:18px;
}

.progress-item strong{
  display:block;
  color:var(--navy);
}

.progress-item span{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.progress-item small{
  color:var(--coral);
  font-weight:900;
  font-size:18px;
}

.progress-line{
  height:12px;
  margin-top:10px;
  border-radius:999px;
  background:#edf1fa;
  overflow:hidden;
}

.progress-line span{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--coral),var(--orange),var(--yellow));
}

/* CTA FINAL */

.live-final-cta{
  padding:40px 0 96px;
}

.final-cta-card{
  position:relative;
  overflow:hidden;
  padding:58px;
  border-radius:48px;
  background:
    radial-gradient(circle at 12% 18%,rgba(255,216,77,.35),transparent 28%),
    radial-gradient(circle at 90% 24%,rgba(118,215,255,.32),transparent 30%),
    linear-gradient(135deg,#ffffff,#fff8df);
  box-shadow:var(--shadow);
  text-align:center;
}

.final-cta-card::after{
  content:"ABC";
  position:absolute;
  right:30px;
  bottom:10px;
  font-size:92px;
  font-weight:900;
  color:rgba(23,34,77,.05);
  transform:rotate(-8deg);
}

.final-cta-card > span{
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  box-shadow:var(--soft);
  color:var(--navy);
  font-weight:900;
  margin-bottom:18px;
}

.final-cta-card .hero-buttons{
  justify-content:center;
}

/* RESPONSIVE */

@media(max-width:1060px){
  .topics-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .class-experience-grid{
    grid-template-columns:1fr 1fr;
  }

  .experience-card.big{
    grid-row:auto;
    min-height:280px;
  }

  .needs-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .real-class-gallery{
    grid-template-columns:1fr;
  }
}

@media(max-width:980px){
  .live-hero-grid,
  .live-moment-grid,
  .parent-benefits{
    grid-template-columns:1fr;
  }

  .live-class-preview{
    min-height:500px;
  }

  .class-cards-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:720px){
  .live-hero{
    padding:58px 0 80px;
  }

  .live-hero-content h1{
    font-size:43px;
    letter-spacing:-1.6px;
  }

  .live-hero-content p{
    font-size:17px;
  }

  .live-mini-stats{
    grid-template-columns:1fr;
  }

  .class-experience-grid,
  .topics-grid,
  .needs-grid{
    grid-template-columns:1fr;
  }

  .lesson-step{
    grid-template-columns:1fr;
  }

  .lesson-number{
    width:100%;
    height:64px;
    min-height:64px;
    border-radius:24px;
  }

  .lesson-content{
    grid-template-columns:1fr;
    grid-template-rows:auto;
    padding:24px;
  }

  .lesson-content > span{
    grid-column:1;
    grid-row:auto;
    width:68px;
    height:68px;
  }

  .lesson-content h3{
    grid-column:1;
    grid-row:auto;
    font-size:23px;
  }

  .lesson-content p{
    grid-column:1;
    grid-row:auto;
    font-size:15px;
  }

  .mockup-card.floating{
    position:relative;
    top:auto;
    right:auto;
    bottom:auto;
    left:auto;
    margin-top:16px;
  }

  .live-mockup-stack{
    min-height:auto;
    display:block;
  }

  .mockup-card.main{
    width:100%;
  }

  .parent-card,
  .parent-dashboard,
  .final-cta-card{
    padding:28px;
  }

  .final-cta-card{
    text-align:left;
  }

  .final-cta-card .hero-buttons{
    justify-content:flex-start;
  }

  .real-photo-card,
  .real-photo-card.small{
    min-height:280px;
  }
}
/* =========================================================
   HEADER GLOBAL REUTILIZABLE
   English Adventure Kids
========================================================= */

.main-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(23,34,77,.08);
  box-shadow:0 8px 24px rgba(23,34,77,.05);
}

.main-header-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.main-brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.main-logo{
  width:180px;
  max-width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}

.main-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:24px;
  font-weight:900;
  color:var(--navy);
}

.main-nav a{
  position:relative;
  font-size:14px;
  line-height:1;
  color:var(--navy);
  transition:.2s ease;
  white-space:nowrap;
}

.main-nav a:not(.main-btn)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--coral),var(--orange),var(--yellow));
  transition:.2s ease;
}

.main-nav a:hover{
  color:var(--coral);
}

.main-nav a:hover::after,
.main-nav a.active::after{
  width:100%;
}

.main-nav a.active{
  color:var(--coral);
}

.main-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:14px 24px;
  border-radius:999px;
  color:#fff!important;
  background:linear-gradient(135deg,var(--coral),var(--orange));
  box-shadow:0 14px 28px rgba(255,95,126,.22);
  transition:.2s ease;
}

.main-btn:hover{
  transform:translateY(-3px);
  color:#fff!important;
}

.main-btn::after{
  display:none!important;
}

.main-btn.active-btn{
  box-shadow:0 0 0 5px rgba(255,95,126,.12), 0 14px 28px rgba(255,95,126,.22);
}

/* Botón móvil */

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:0;
  border-radius:16px;
  background:#f7f9ff;
  box-shadow:var(--soft);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.menu-toggle span{
  width:22px;
  height:3px;
  border-radius:999px;
  background:var(--navy);
  transition:.2s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

/* Ajuste para que el header viejo no interfiera si queda en alguna página */

.site-header{
  display:none;
}

/* Responsive header */

@media(max-width:1080px){
  .main-logo{
    width:230px;
  }

  .main-nav{
    gap:18px;
  }

  .main-nav a{
    font-size:13px;
  }

  .main-btn{
    padding:13px 20px;
  }
}

@media(max-width:900px){
  .main-header-inner{
    min-height:78px;
  }

  .main-logo{
    width:220px;
  }

  .menu-toggle{
    display:flex;
  }

  .main-nav{
    position:absolute;
    top:100%;
    left:4%;
    right:4%;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:18px;
    border-radius:28px;
    background:rgba(255,255,255,.98);
    box-shadow:0 20px 50px rgba(23,34,77,.16);
    border:1px solid rgba(23,34,77,.08);
  }

  .main-nav.active{
    display:flex;
  }

  .main-nav a{
    padding:15px 16px;
    border-radius:18px;
    background:#f7f9ff;
  }

  .main-nav a::after{
    display:none;
  }

  .main-nav a.active{
    background:linear-gradient(135deg,rgba(255,95,126,.12),rgba(255,159,28,.12));
  }

  .main-btn{
    width:100%;
    min-height:52px;
    margin-top:4px;
  }
}

@media(max-width:520px){
  .main-logo{
    width:185px;
  }

  .main-header-inner{
    min-height:72px;
  }
}
/* =========================================================
   PLANES POR NIVEL
========================================================= */

.pricing-section{
  background:
    radial-gradient(circle at 10% 20%,rgba(255,216,77,.20),transparent 25%),
    radial-gradient(circle at 90% 10%,rgba(118,215,255,.20),transparent 25%),
    linear-gradient(180deg,#f8fcff,#ffffff);
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:stretch;
}

.price-card{
  position:relative;
  padding:34px;
  border-radius:38px;
  background:#fff;
  box-shadow:var(--soft);
  border:1px solid rgba(23,34,77,.06);
  overflow:hidden;
  transition:.22s ease;
}

.price-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow);
}

.price-card.featured{
  transform:scale(1.03);
  box-shadow:0 24px 60px rgba(23,34,77,.16);
  border:2px solid rgba(255,95,126,.22);
}

.price-card.featured:hover{
  transform:scale(1.03) translateY(-8px);
}

.price-badge{
  display:inline-flex;
  padding:9px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--coral),var(--orange));
  color:#fff;
  font-size:12px;
  font-weight:900;
  margin-bottom:20px;
}

.price-icon{
  width:78px;
  height:78px;
  display:grid;
  place-items:center;
  border-radius:28px;
  font-size:38px;
  background:linear-gradient(135deg,#fff4b8,#dff7ff);
  margin-bottom:20px;
}

.price-card h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:32px;
  letter-spacing:-.8px;
}

.price-description{
  margin:0 0 22px;
  color:var(--muted);
  font-weight:600;
  line-height:1.6;
}

.price-box{
  padding:22px;
  border-radius:28px;
  background:
    radial-gradient(circle at 90% 20%,rgba(255,216,77,.30),transparent 32%),
    linear-gradient(135deg,#f7f9ff,#fff7fb);
  margin-bottom:24px;
}

.price-box small{
  display:block;
  color:var(--muted);
  font-weight:900;
  margin-bottom:6px;
}

.price-box strong{
  display:block;
  color:var(--coral);
  font-size:34px;
  line-height:1;
  margin-bottom:8px;
}

.price-box span{
  color:var(--navy);
  font-weight:800;
  font-size:14px;
}

.price-card ul{
  list-style:none;
  padding:0;
  margin:0 0 28px;
  display:grid;
  gap:12px;
}

.price-card li{
  position:relative;
  padding:14px 14px 14px 44px;
  border-radius:18px;
  background:#f7f9ff;
  color:var(--navy);
  font-weight:800;
  line-height:1.35;
}

.price-card li::before{
  content:"✓";
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-size:13px;
  font-weight:900;
}

.price-card .btn-primary{
  width:100%;
}

.pricing-note{
  max-width:780px;
  margin:36px auto 0;
  padding:24px 28px;
  border-radius:30px;
  background:#fff;
  box-shadow:var(--soft);
  text-align:center;
}

.pricing-note strong{
  display:block;
  color:var(--navy);
  font-size:22px;
  margin-bottom:8px;
}

.pricing-note span{
  color:var(--muted);
  font-weight:600;
  line-height:1.6;
}

@media(max-width:980px){
  .pricing-grid{
    grid-template-columns:1fr;
  }

  .price-card.featured{
    transform:none;
  }

  .price-card.featured:hover{
    transform:translateY(-8px);
  }
}