/* ============ TOKENS ============ */
:root{
  --bg: #ffffff;
  --bg-alt: #f2f7f5;
  --navy: #dce8fb;
  --navy-light: #eaf1fd;
  --surface: rgba(8,32,22,0.035);
  --surface-strong: rgba(8,32,22,0.06);
  --border: rgba(8,32,22,0.10);
  --border-strong: rgba(16,185,129,0.35);
  --emerald: #10b981;
  --emerald-light: #34d399;
  --emerald-dark: #047857;
  --accent: var(--emerald-dark);
  --text: #0d1f17;
  --text-dim: #4a5c54;
  --text-dimmer: #6d7f77;
  --danger: #dc2626;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-display: 'Fraunces', 'Noto Sans Devanagari', 'Noto Sans Gujarati', 'Sora', serif;
  --font-head: 'Sora', 'Noto Sans Devanagari', 'Noto Sans Gujarati', 'Inter', sans-serif;
  --font-body: 'Inter', 'Noto Sans Devanagari', 'Noto Sans Gujarati', sans-serif;
  --font-jakarta: 'Plus Jakarta Sans', 'Noto Sans Devanagari', 'Noto Sans Gujarati', system-ui, sans-serif;
  --container: 1180px;
  --hero-wrap: 1320px;
  --shadow-glow: 0 0 0 1px var(--border), 0 20px 60px -20px rgba(15,35,25,0.16);

  /* Hero (v2) palette */
  --forest: #14563a;
  --forest-deep: #0f3b27;
  --forest-tint: #eaf4ee;
  --hero-line: #e9ece9;
  --pink-bg: #fdeaea;
  --pink-text: #e0605f;
  --phone-bg: #171d1a;
  --phone-up: #38c07a;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 15% -5%, rgba(59,130,246,0.06), transparent 60%),
    radial-gradient(1000px 500px at 90% 10%, rgba(16,185,129,0.08), transparent 55%),
    var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  position:relative;
}
body::before{
  content:"";
  position:fixed; inset:0; z-index:1; pointer-events:none; opacity:0.4; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
h1,h2,h3,h4{ font-family:var(--font-head); margin:0 0 .5em; line-height:1.15; font-weight:700; letter-spacing:-0.01em; }
h1, .section-head h2, .final-cta h2, .urgency-section h2, .about-text{ font-family:var(--font-display); font-weight:600; letter-spacing:-0.015em; }
p{ margin:0 0 1em; color:var(--text-dim); }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ margin:0; padding:0; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.container-narrow{ max-width:760px; }
.center{ text-align:center; }
.text-emerald{ color:var(--accent); }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border:none; border-radius:999px; font-weight:700; font-family:var(--font-head);
  letter-spacing:0.02em; cursor:pointer; transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color:#ffffff;
  box-shadow:0 8px 24px -8px rgba(16,185,129,0.55), 0 0 0 1px rgba(16,185,129,0.4) inset;
}
.btn-primary:hover{ transform:translateY(-2px); filter:brightness(1.08); box-shadow:0 12px 32px -8px rgba(16,185,129,0.7); }
.btn-primary:active{ transform:translateY(0); }
.btn-secondary{
  background:var(--surface-strong); color:var(--text); border:1px solid var(--border);
}
.btn-secondary:hover{ background:rgba(8,32,22,0.08); }
.btn-sm{ padding:10px 20px; font-size:0.85rem; }
.btn-lg{ padding:16px 32px; font-size:0.95rem; }
.btn-xl{ padding:20px 44px; font-size:1.05rem; }
.btn-block{ width:100%; }

/* ============ PILLS & BADGES ============ */
.pill{
  display:inline-block; padding:8px 16px; border-radius:999px; font-size:0.78rem; font-weight:700;
  letter-spacing:0.03em; text-transform:uppercase; margin-bottom:20px;
}
.pill-urgent{
  background:rgba(220,38,38,0.1); color:var(--danger); border:1px solid rgba(220,38,38,0.28);
  animation:pulseSoft 2.4s ease-in-out infinite;
}
.badge{
  display:inline-flex; align-items:center; gap:6px; padding:10px 18px; border-radius:999px;
  background:var(--surface); border:1px solid var(--border); font-size:0.85rem; font-weight:600; color:var(--text);
}
.badge-emerald{ background:rgba(16,185,129,0.12); border-color:rgba(16,185,129,0.4); color:var(--accent); }
.hero-badges{ display:flex; flex-wrap:wrap; gap:12px; margin:24px 0; }
.center-badges{ justify-content:center; }

@keyframes pulseSoft{
  0%,100%{ box-shadow:0 0 0 0 rgba(248,113,113,0.25); }
  50%{ box-shadow:0 0 0 8px rgba(248,113,113,0); }
}

/* ============ SITE HEADER (v2) ============ */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,0.82); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  font-family:var(--font-jakarta);
}
.site-header-wrap{ max-width:var(--hero-wrap); margin:0 auto; padding:0 40px; }
.site-nav{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:16px 0 14px; }

.sh-brand{ display:flex; align-items:center; gap:10px; flex:0 0 auto; }
.sh-brand-mark{
  width:42px; height:42px; border-radius:50%; overflow:hidden;
  display:flex; align-items:center; justify-content:center; flex:0 0 auto;
  box-shadow:0 6px 16px rgba(10,24,48,.22);
}
.sh-brand-mark svg{ display:block; }
.sh-brand-mark img{ display:block; width:100%; height:100%; object-fit:cover; border-radius:50%; }
.sh-brand-name{ font-size:1.2rem; font-weight:800; letter-spacing:-.02em; white-space:nowrap; color:var(--ink, #141816); }
.sh-brand-name .em{ font-style:normal; color:var(--emerald); }
.sh-brand-short{ display:none; }

.sh-links{ display:flex; align-items:center; gap:24px; flex:0 0 auto; }
.sh-links a{ display:flex; align-items:center; gap:6px; font-size:0.92rem; font-weight:600; color:#333a35; white-space:nowrap; transition:color .15s ease; }
.sh-links a:hover{ color:var(--emerald); }
.sh-dot{ width:6px; height:6px; border-radius:50%; background:var(--emerald); animation:pulseDotSoft 1.8s ease-in-out infinite; }
@keyframes pulseDotSoft{ 0%,100%{ opacity:1; } 50%{ opacity:0.3; } }

.sh-actions{ display:flex; align-items:center; gap:12px; flex:0 0 auto; }
.sh-btn{
  display:inline-flex; align-items:center; gap:9px; font-family:var(--font-jakarta); font-weight:700;
  font-size:0.92rem; padding:11px 17px; cursor:pointer; border:none; border-radius:12px; white-space:nowrap;
  transition:transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.sh-btn:active{ transform:translateY(1px); }
.sh-btn-primary{ background:var(--forest-deep); color:#fff; box-shadow:0 8px 20px rgba(20,86,58,.26); }
.sh-btn-primary:hover{ background:var(--forest); }
.sh-btn-ar{ width:18px; height:18px; flex:0 0 auto; }

.site-header .lang-switch-btn{
  border:1.5px solid var(--border); border-radius:11px; padding:9px 13px; background:#fff;
  font-family:var(--font-jakarta); font-size:0.9rem; color:#333a35;
}
.site-header .lang-switch-btn:hover{ border-color:var(--emerald); background:#fff; }

/* ============ LANGUAGE SWITCHER ============ */
.lang-switch{ position:relative; }
.lang-switch-btn{
  display:inline-flex; align-items:center; gap:6px; padding:8px 12px; border-radius:999px;
  background:var(--surface); border:1px solid var(--border); color:var(--text);
  font-size:0.82rem; font-weight:600; font-family:var(--font-body); white-space:nowrap;
  transition:background .15s ease, border-color .15s ease;
}
.lang-switch-btn:hover{ background:var(--surface-strong); border-color:var(--border-strong); }
.lang-globe{ font-size:0.95rem; line-height:1; }
.lang-chevron{ font-size:0.65rem; color:var(--text-dim); transition:transform .2s ease; }
.lang-switch.open .lang-chevron{ transform:rotate(180deg); }
.lang-menu{
  position:absolute; top:calc(100% + 8px); right:0; min-width:150px; margin:0; padding:6px;
  list-style:none; background:var(--bg); border:1px solid var(--border); border-radius:var(--radius-sm);
  box-shadow:var(--shadow-glow); z-index:70;
}
.lang-menu[hidden]{ display:none; }
.lang-menu li{
  padding:9px 12px; border-radius:8px; font-size:0.86rem; font-weight:500; color:var(--text);
  cursor:pointer; transition:background .15s ease;
}
.lang-menu li:hover{ background:var(--surface-strong); }
.lang-menu li[aria-selected="true"]{ color:var(--accent); font-weight:700; background:rgba(16,185,129,0.08); }

/* ============ HERO (v2) ============ */
.hero{ position:relative; padding:24px 0 48px; overflow:hidden; font-family:var(--font-jakarta); }
.hero-wrap{ max-width:var(--hero-wrap); margin:0 auto; padding:0 40px; }
.hero-glow{
  position:absolute; inset:-20% -10% auto -10%; height:600px; z-index:0; pointer-events:none;
  background:radial-gradient(60% 60% at 30% 20%, rgba(16,185,129,0.22), transparent 70%),
             radial-gradient(50% 50% at 80% 10%, rgba(16,185,129,0.14), transparent 70%);
  filter:blur(10px);
}
.hero-grid{
  position:relative; z-index:2;
  display:grid; grid-template-columns:minmax(0,560px) 1fr; gap:24px; align-items:start;
}
.hero-copy{ position:relative; z-index:5; padding-top:12px; }

/* shared helpers kept from v1 */
.btn-link{
  background:none; border:none; padding:0; color:var(--accent); font-weight:700; font-size:0.98rem;
  text-decoration:none; display:inline-flex; align-items:center;
}
.btn-link:hover{ text-decoration:underline; }
.trust-line{ margin-top:14px; font-size:0.85rem; color:var(--text-dimmer); }

/* countdown */
.hero-cd{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  border:1.5px solid var(--hero-line); border-radius:18px; padding:14px 16px; margin-bottom:22px;
  max-width:520px; box-shadow:0 6px 22px rgba(20,40,30,.05);
}
.hero-cd-cal{
  width:46px; height:46px; border-radius:12px; background:var(--forest-tint);
  display:flex; align-items:center; justify-content:center; flex:0 0 auto;
}
.hero-cd-label{ font-size:0.9rem; font-weight:600; color:#414a44; line-height:1.32; flex:1 1 130px; }
.hero-cd-boxes{ display:flex; gap:10px; margin-left:auto; }
.hero-cd-box{ border:1.5px solid var(--hero-line); border-radius:12px; padding:7px 11px; text-align:center; min-width:54px; }
.hero-cd-box span{ display:block; font-size:1.4rem; font-weight:800; letter-spacing:-.02em; line-height:1; color:var(--text); }
.hero-cd-box small{ display:block; font-size:0.6rem; font-weight:700; letter-spacing:.1em; color:var(--text-dimmer); margin-top:5px; text-transform:uppercase; }

/* live badge */
.hero-live-badge{
  display:inline-flex; align-items:center; gap:8px; background:var(--pink-bg); color:var(--pink-text);
  font-size:0.75rem; font-weight:800; letter-spacing:.05em; padding:8px 14px; border-radius:30px; margin-bottom:18px;
}
.hero-live-dot{ width:8px; height:8px; border-radius:50%; background:currentColor; position:relative; }
.hero-live-dot::after{
  content:""; position:absolute; inset:0; border-radius:50%; background:currentColor;
  animation:heroLivePulse 1.6s ease-out infinite;
}
@keyframes heroLivePulse{ 0%{ transform:scale(1); opacity:.6; } 100%{ transform:scale(2.6); opacity:0; } }

.hero-title{
  font-family:var(--font-jakarta);
  font-size:clamp(2.3rem, 5vw, 3.6rem); line-height:1.03; font-weight:800; letter-spacing:-.035em;
  margin:0 0 8px; color:var(--text);
}
.hero-title .text-emerald{ color:var(--emerald); }
.hero-squiggle{ display:block; width:172px; height:16px; margin:0 0 18px 2px; }

.hero-subtitle{ font-size:1.12rem; line-height:1.6; color:#4c564f; max-width:480px; margin:0 0 26px; font-weight:500; }
.hero-subtitle strong{ color:var(--forest); font-weight:700; }

.hero-features{ display:flex; flex-wrap:wrap; gap:22px; margin-bottom:28px; }
.hero-feature{ display:flex; align-items:center; gap:11px; }
.hero-feature-icon{
  width:42px; height:42px; border-radius:11px; background:var(--forest-tint); color:var(--forest);
  display:flex; align-items:center; justify-content:center; flex:0 0 auto;
}
.hero-feature div{ display:flex; flex-direction:column; line-height:1.15; }
.hero-feature b{ font-size:0.9rem; font-weight:700; color:var(--text); }
.hero-feature span{ font-size:0.78rem; color:var(--text-dim); font-weight:500; margin-top:2px; }

.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:30px; }
.hero-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-jakarta); font-weight:700; font-size:0.97rem; cursor:pointer;
  border:none; border-radius:13px; padding:16px 24px; white-space:nowrap; text-decoration:none;
  transition:transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.hero-btn:active{ transform:translateY(1px); }
.hero-btn-primary{ background:var(--forest-deep); color:#fff; box-shadow:0 8px 20px rgba(20,86,58,.26); }
.hero-btn-primary:hover{ background:var(--forest); }
.hero-btn-ghost{ background:#fff; color:var(--forest); border:1.5px solid var(--hero-line); }
.hero-btn-ghost:hover{ border-color:var(--emerald); }
.hero-btn-circle{
  display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; border-radius:50%;
  background:rgba(255,255,255,.2); font-size:0.85rem; flex:0 0 auto;
}

.hero-social{ display:flex; align-items:center; gap:15px; flex-wrap:wrap; }
.hero-avatars{ display:flex; align-items:center; }
.hero-avatars .av{
  width:44px; height:44px; border-radius:50%; border:3px solid #fff; margin-left:-14px; overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,.08); background:linear-gradient(135deg, var(--emerald-light), var(--emerald-dark));
}
.hero-avatars .av:first-child{ margin-left:0; }
.hero-avatars .av:nth-child(2){ background:linear-gradient(135deg, #60a5fa, #1d4ed8); }
.hero-avatars .av:nth-child(3){ background:linear-gradient(135deg, #fbbf24, #b45309); }
.hero-avatars .av:nth-child(4){ background:linear-gradient(135deg, #f472b6, #be185d); }
.hero-avatars .av-count{
  width:50px; height:50px; border-radius:50%; background:var(--emerald); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:0.82rem;
  margin-left:-14px; border:3px solid #fff; position:relative; z-index:2;
}
.hero-social-text{ display:flex; flex-direction:column; gap:3px; }
.hero-social-text .st1{ font-size:0.9rem; font-weight:700; color:#333a35; }
.hero-social-text .st2{ display:flex; align-items:center; gap:8px; }
.hero-stars{ color:#f5b23e; letter-spacing:1px; font-size:0.9rem; }
.hero-social-text .rev{ font-size:0.82rem; color:var(--text-dim); font-weight:600; }
.hero-social-text .rev b{ color:#333a35; }

/* shared helper kept from v1 (modal, schedule card) */
.glass-card{
  background:var(--surface); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-glow);
}

/* ============ HERO VISUAL (v2) ============ */
.hero-visual{ position:relative; height:600px; z-index:1; }
.hv-blob{ position:absolute; pointer-events:none; }
.hv-blob-dark{
  width:780px; height:780px; right:-280px; top:-40px; border-radius:50%;
  background:radial-gradient(circle at 50% 50%, #0e3a27 0%, #0c3020 55%, #0b2c1e 66%, rgba(11,44,30,0) 76%);
}
.hv-blob-bright{
  width:340px; height:420px; left:70px; top:140px;
  border-radius:46% 54% 50% 50% / 48% 46% 54% 52%;
  background:radial-gradient(circle at 45% 40%, #37a86c 0%, #218751 58%, #156a40 100%);
  opacity:.88; filter:blur(4px);
}
.hv-blob-soft{
  width:220px; height:220px; right:150px; top:56px; border-radius:50%;
  background:radial-gradient(circle, #4dbe80 0%, rgba(77,190,128,0) 70%); opacity:.5;
}
.hv-arrow{ position:absolute; right:4px; top:20px; width:120px; height:280px; z-index:1; }
.hv-candles{ position:absolute; right:20px; bottom:150px; z-index:1; opacity:.45; }

.hv-podium{ position:absolute; left:40%; bottom:22px; transform:translateX(-50%); width:380px; height:120px; z-index:2; }
.hv-podium .p-top{
  position:absolute; bottom:34px; left:0; right:0; height:64px; border-radius:50%;
  background:radial-gradient(ellipse at 50% 38%, #26332b 0%, #141c18 68%, #0c1310 100%); box-shadow:0 26px 46px rgba(0,0,0,.4);
}
.hv-podium .p-ring{
  position:absolute; bottom:16px; left:22px; right:22px; height:64px; border-radius:50%;
  border:2px solid rgba(67,184,120,.55); box-shadow:0 0 26px rgba(67,184,120,.4);
}
.hv-podium .p-base{
  position:absolute; bottom:0; left:42px; right:42px; height:54px; border-radius:50%;
  background:radial-gradient(ellipse at 50% 40%, #1a231e 0%, #0d1310 75%); opacity:.75;
}

.hv-phone{
  position:absolute; width:204px; height:430px; border-radius:36px; background:var(--phone-bg);
  border:2px solid #2b352f; box-shadow:0 40px 70px rgba(6,20,12,.5), inset 0 0 0 5px #0d1310;
  z-index:3; overflow:hidden; padding:16px 14px;
}
.hv-phone::before{
  content:""; position:absolute; top:11px; left:50%; transform:translateX(-50%);
  width:66px; height:18px; background:#0b0f0d; border-radius:16px; z-index:9;
}
.hv-phone-left{ left:20px; top:58px; transform:rotate(-7deg); z-index:3; }
.hv-phone-right{ right:70px; top:104px; transform:rotate(3deg); z-index:4; }

.hv-status{ display:flex; justify-content:space-between; align-items:center; color:#cfd8d2; font-size:0.68rem; font-weight:600; padding:5px 5px 0; }
.hv-status .rt{ display:flex; gap:4px; align-items:center; }

.hv-wl-title{ color:#fff; font-size:1.05rem; font-weight:800; margin:14px 5px 8px; }
.hv-wl-row{ display:grid; grid-template-columns:1fr auto auto; align-items:center; gap:8px; padding:8px 5px; border-bottom:1px solid rgba(255,255,255,.06); }
.hv-wl-name{ color:#e8efeb; font-size:0.76rem; font-weight:700; }
.hv-wl-mid{ color:#c8d1cc; font-size:0.7rem; font-weight:600; text-align:right; }
.hv-wl-pct{ color:var(--phone-up); font-size:0.7rem; font-weight:700; text-align:right; min-width:44px; }
.hv-wl-foot{ margin-top:12px; display:flex; align-items:flex-end; justify-content:space-between; padding:0 5px; }
.hv-wl-foot .ft{ color:#fff; font-weight:800; font-size:0.85rem; line-height:1.3; }
.hv-wl-foot .fs{ color:#93a09a; font-size:0.7rem; font-weight:600; }

.hv-ch-head{ margin:12px 5px 4px; display:flex; align-items:baseline; gap:7px; }
.hv-ch-head .nm{ color:#fff; font-size:0.95rem; font-weight:800; }
.hv-ch-head .pc{ color:var(--phone-up); font-size:0.8rem; font-weight:700; }
.hv-ch-times{ display:flex; gap:6px; justify-content:center; margin:4px 4px 0; }
.hv-ch-t{ font-size:0.68rem; font-weight:700; color:#9aa7a1; padding:5px 11px; border-radius:16px; }
.hv-ch-t.on{ background:var(--emerald); color:#fff; }

.hv-nav{ position:absolute; bottom:12px; left:14px; right:14px; display:flex; justify-content:space-around; padding-top:10px; border-top:1px solid rgba(255,255,255,.07); }
.hv-nav .ni{ display:flex; flex-direction:column; align-items:center; gap:3px; color:#8b9992; font-size:0.55rem; font-weight:600; }
.hv-nav .ni.on{ color:var(--emerald-light); }

.hv-badge{ position:absolute; border-radius:15px; padding:12px 16px; z-index:6; display:flex; align-items:center; gap:10px; }
.hv-badge-top{ top:62px; right:34px; background:#12201a; box-shadow:0 18px 40px rgba(0,0,0,.32); }
.hv-badge-top .tt{ font-size:0.86rem; font-weight:700; color:#fff; white-space:nowrap; }
.hv-badge-ic{ width:32px; height:32px; border-radius:9px; display:flex; align-items:center; justify-content:center; flex:0 0 auto; }
.hv-badge-bottom{ bottom:104px; left:4px; background:#fff; box-shadow:0 18px 40px rgba(10,30,20,.16); }
.hv-badge-bottom .tt{ font-size:0.82rem; font-weight:800; color:var(--text); white-space:nowrap; }
.hv-badge-bottom .ts{ font-size:0.7rem; color:var(--text-dim); font-weight:600; margin-top:1px; }

/* ============ HERO STATS (v2) ============ */
.hero-stats{
  position:relative; z-index:2; margin:8px 0 0; padding:26px 36px; border-radius:22px;
  background:var(--forest); box-shadow:0 24px 50px rgba(20,86,58,.2);
}
.hero-stats::before{
  content:""; position:absolute; inset:9px; border:1.5px solid rgba(255,255,255,.12); border-radius:15px; pointer-events:none;
}
.hero-stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); position:relative; }
.hs-item{ display:flex; align-items:center; gap:15px; padding:4px 6px; position:relative; }
.hs-item + .hs-item::before{
  content:""; position:absolute; left:0; top:50%; transform:translateY(-50%); height:42px; width:1px; background:rgba(255,255,255,.14);
}
.hs-ic{ width:50px; height:50px; border-radius:13px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; flex:0 0 auto; }
.hs-n{ color:#fff; font-size:1.6rem; font-weight:800; letter-spacing:-.02em; line-height:1; }
.hs-l{ color:#b9d4c6; font-size:0.82rem; font-weight:600; margin-top:4px; }

/* ============ TRUST STRIP ============ */
.trust-strip{
  position:relative; z-index:1; margin-top:56px; border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  background:rgba(8,32,22,0.02);
}
.trust-strip-inner{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:14px 28px;
  padding:16px 24px; font-size:0.82rem; color:var(--text-dim); font-weight:500;
}
.trust-item{ white-space:nowrap; }
.trust-divider{ width:4px; height:4px; border-radius:50%; background:var(--border-strong); }

/* ============ HOW IT WORKS ============ */
.how-section{ padding-top:64px; }
.steps{ display:grid; grid-template-columns:1fr auto 1fr auto 1fr; align-items:start; gap:0 8px; max-width:960px; margin:0 auto; }
.step{
  text-align:center; padding:28px 22px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md);
  transition:transform .2s ease, border-color .2s ease;
}
.step:hover{ transform:translateY(-4px); border-color:var(--border-strong); }
.step-num{
  display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; margin-bottom:14px;
  border-radius:50%; background:linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color:#ffffff; font-family:var(--font-head); font-weight:800; font-size:0.95rem;
}
.step h3{ font-size:1.05rem; margin-bottom:6px; }
.step p{ font-size:0.88rem; margin-bottom:0; }
.step-connector{
  align-self:center; height:2px; width:100%; min-width:24px; margin-top:-58px;
  background:linear-gradient(90deg, var(--border-strong), transparent);
}

/* ============ SECTIONS ============ */
.section{ padding:88px 0; position:relative; }
.section-alt{ background:var(--bg-alt); }
.section-head{ text-align:center; max-width:680px; margin:0 auto 48px; }
.eyebrow{ display:inline-block; font-size:0.78rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--accent); margin-bottom:12px; }
.section-head h2{ font-size:clamp(1.7rem, 3vw, 2.4rem); }
.section-sub{ font-size:1.02rem; max-width:520px; margin:0 auto; }

/* ============ OFFER ============ */
.offer-section{ background:var(--bg); }
.price-strike{
  position:relative; color:var(--text-dimmer); font-weight:600; text-decoration:line-through;
  text-decoration-color:#ef4444; text-decoration-thickness:3px;
}
.price-strike-onbanner{ color:rgba(13,31,23,0.5); text-decoration-color:#ef4444; }
.highlight-free{
  display:inline-block; background:linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color:#ffffff; font-weight:800; padding:1px 12px; border-radius:8px;
  box-shadow:0 6px 18px -6px rgba(16,185,129,0.55);
}
.section-head h2 .highlight-free{ padding:2px 18px; border-radius:14px; }
.highlight-underline{
  color:var(--accent); font-weight:800;
  background:linear-gradient(transparent 62%, rgba(16,185,129,0.28) 62%);
}

.offer-eyebrow{
  display:inline-flex; align-items:center; gap:8px; margin-bottom:16px;
  padding:8px 18px; border-radius:999px; border:1.5px solid var(--border-strong);
  background:rgba(16,185,129,0.06); color:var(--accent);
  font-family:var(--font-head); font-size:0.76rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase;
}

.offer-value-card{
  display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:14px 18px;
  max-width:720px; margin:8px auto 22px; padding:20px 28px; border-radius:20px;
  background:linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.035));
  border:1px solid var(--border-strong);
}
.offer-value-icon{
  display:inline-flex; align-items:center; justify-content:center; flex:0 0 auto;
  width:56px; height:56px; border-radius:50%; background:rgba(16,185,129,0.16); color:var(--accent);
}
.offer-value-text{ font-family:var(--font-head); font-weight:800; font-size:1.02rem; letter-spacing:0.02em; color:var(--text); }
.offer-value-eq{ color:var(--accent); margin-left:4px; }
.offer-value-badge{
  display:inline-flex; align-items:center; padding:12px 22px; border-radius:12px;
  background:linear-gradient(135deg, var(--emerald), var(--emerald-dark)); color:#fff;
  font-family:var(--font-head); font-weight:800; font-size:0.92rem; letter-spacing:0.03em;
  box-shadow:0 10px 26px -8px rgba(16,185,129,0.55);
}

.offer-note{
  display:flex; align-items:flex-start; justify-content:center; gap:10px;
  text-align:center; max-width:620px; margin:0 auto 44px; font-size:0.95rem; color:var(--text-dim); font-weight:500; line-height:1.55;
}
.offer-note-ic{ flex:0 0 auto; color:var(--accent); margin-top:3px; }
.offer-note strong{ color:var(--text); font-weight:700; }

/* curriculum */
.curriculum{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; max-width:940px; margin:0 auto 44px; align-items:stretch; }
.curriculum-group{
  background:var(--bg); border:1px solid var(--border); border-radius:var(--radius-lg); padding:26px 26px 24px;
  box-shadow:0 14px 40px -24px rgba(15,35,25,0.28);
  transition:transform .2s ease, box-shadow .2s ease;
}
.curriculum-group:hover{ transform:translateY(-3px); box-shadow:0 22px 46px -22px rgba(16,185,129,0.3); }
.curriculum-head{ display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.curriculum-ic{
  display:inline-flex; align-items:center; justify-content:center; flex:0 0 auto;
  width:46px; height:46px; border-radius:50%; background:rgba(16,185,129,0.12); color:var(--accent);
}
.curriculum-cat{
  margin:0; font-family:var(--font-head); font-size:1rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--accent); position:relative; padding-bottom:9px;
}
.curriculum-cat::after{ content:""; position:absolute; left:0; bottom:0; width:34px; height:3px; border-radius:2px; background:var(--accent); }
.curriculum-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.curriculum-list li{ display:flex; align-items:flex-start; gap:12px; font-size:0.92rem; color:var(--text); font-weight:500; line-height:1.45; }
.curriculum-num{
  flex:0 0 auto; min-width:28px; height:28px; padding:0 7px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:9px; background:linear-gradient(135deg, var(--emerald), var(--emerald-dark)); color:#fff;
  font-family:var(--font-head); font-weight:800; font-size:0.74rem; letter-spacing:0.02em;
  box-shadow:0 6px 16px -6px rgba(16,185,129,0.5);
}
.curriculum-list li.curriculum-extra{ margin-top:4px; color:var(--text-dim); }
.curriculum-list li.curriculum-extra .curriculum-num{
  background:rgba(16,185,129,0.12); color:var(--accent); box-shadow:none; min-width:46px; border-radius:999px;
}

/* offer CTA banner */
.offer-cta{
  display:flex; align-items:center; gap:24px; flex-wrap:wrap; justify-content:center;
  max-width:940px; margin:0 auto 28px; padding:30px 34px; border-radius:var(--radius-lg);
  background:linear-gradient(135deg, #0f5132, #08351f);
  box-shadow:0 24px 50px -24px rgba(8,40,24,0.55);
}
.offer-cta-emblem{
  flex:0 0 auto; width:76px; height:76px; border-radius:50%; overflow:hidden;
  box-shadow:0 0 0 4px rgba(255,255,255,0.08);
}
.offer-cta-emblem img{ display:block; width:100%; height:100%; object-fit:cover; }
.offer-cta-copy{ flex:1 1 300px; min-width:0; }
.offer-cta-copy h3{ margin:0 0 6px; font-family:var(--font-head); font-size:1.3rem; font-weight:800; color:#fff; line-height:1.2; }
.offer-cta-copy p{ margin:0; font-size:0.9rem; color:rgba(255,255,255,0.82); line-height:1.5; }
.offer-cta-btn{
  flex:0 0 auto; gap:10px; padding:16px 26px; border-radius:12px;
  background:linear-gradient(135deg, #ffd24a, #f4b400); color:#3a2e00;
  font-family:var(--font-head); font-weight:800; font-size:0.92rem; letter-spacing:0.02em;
  box-shadow:0 12px 30px -10px rgba(244,180,0,0.6);
}
.offer-cta-btn:hover{ transform:translateY(-2px); filter:brightness(1.05); }
.offer-cta-arrow{ font-size:1.05rem; }

/* offer feature strip */
.offer-features{
  display:flex; flex-wrap:wrap; align-items:stretch; justify-content:center;
  max-width:940px; margin:0 auto;
}
.offer-feature{
  display:flex; align-items:center; gap:10px; padding:6px 24px; flex:1 1 200px; justify-content:center;
  font-size:0.85rem; font-weight:600; color:var(--text-dim); line-height:1.3;
  border-right:1px solid var(--border);
}
.offer-feature:last-child{ border-right:none; }
.offer-feature-ic{
  display:inline-flex; align-items:center; justify-content:center; flex:0 0 auto;
  width:34px; height:34px; border-radius:50%; background:rgba(16,185,129,0.1); color:var(--accent);
}

/* ============ CARDS / GRIDS ============ */
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:32px 26px; transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover{ transform:translateY(-4px); border-color:var(--border-strong); box-shadow:0 16px 40px -20px rgba(16,185,129,0.35); }
.card-icon{ font-size:1.8rem; margin-bottom:14px; }
.card h3{ font-size:1.1rem; margin-bottom:8px; }
.card p{ font-size:0.92rem; margin-bottom:0; }

/* ============ SCHEDULE ============ */
.schedule-card{ max-width:560px; margin:0 auto; padding:44px 36px; text-align:center; }
.schedule-time{ display:flex; flex-direction:column; align-items:center; gap:8px; margin-bottom:16px; }
.schedule-clock{ font-family:var(--font-head); font-size:3rem; font-weight:800; color:var(--accent); text-shadow:0 0 30px rgba(16,185,129,0.4); }
.schedule-tag{ font-size:0.78rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-dim); padding:6px 14px; border:1px solid var(--border); border-radius:999px; }
.schedule-desc{ max-width:380px; margin:0 auto 24px; }
.urgency-line{ margin-top:18px; font-size:0.85rem; color:var(--danger); font-weight:600; }

/* ============ MENTORS ============ */
.mentor-card{ text-align:center; position:relative; }
.avatar-frame{
  width:88px; height:88px; border-radius:50%; margin:0 auto 16px; overflow:hidden;
  border:1px solid var(--border-strong); box-shadow:0 8px 20px -8px rgba(15,35,25,0.22);
}
.mentor-card .role{ display:block; font-size:0.82rem; color:var(--accent); font-weight:600; margin-bottom:12px; }
.tags{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:12px; }
.tags span{ font-size:0.74rem; padding:6px 12px; border-radius:999px; background:var(--surface-strong); border:1px solid var(--border); color:var(--text-dim); }
.placeholder-tag{ display:block; margin-top:16px; font-size:0.7rem; color:var(--text-dimmer); font-style:italic; border-top:1px dashed var(--border); padding-top:12px; }

/* ============ VIDEO TESTIMONIALS ============ */
.video-thumb{
  position:relative; aspect-ratio:9/16; max-width:250px; margin:0 auto 18px; border-radius:var(--radius-sm); overflow:hidden;
  background:linear-gradient(135deg, #0d1a14, #08120d);
  display:flex; align-items:center; justify-content:center;
  background-image:
    repeating-linear-gradient(90deg, rgba(16,185,129,0.08) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(0deg, rgba(16,185,129,0.08) 0 1px, transparent 1px 40px);
}
.video-thumb.has-video{ background:#000; background-image:none; }
.reel-embed{
  position:absolute; inset:0; width:100%; height:100%; border:0; display:block; background:#000;
}
/* YouTube renders a 16:9 stage; scale + centre-crop it to fill the 9:16 reel */
.video-thumb.has-video iframe{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  height:100%; width:177.78%; min-width:100%; border:0; display:block; background:#000;
  pointer-events:none;
}
.reel-sound{
  position:absolute; right:10px; bottom:10px; z-index:2;
  width:36px; height:36px; padding:0; border:0; border-radius:50%; cursor:pointer;
  background:rgba(0,0,0,0.55); color:#fff; font-size:0.95rem; line-height:1;
  display:flex; align-items:center; justify-content:center;
  -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
  transition:background .2s ease, transform .2s ease;
}
.reel-sound:hover{ background:rgba(0,0,0,0.78); transform:scale(1.08); }
/* Written review panel — same frame as a reel, text instead of video */
.video-thumb.review-panel{
  background:linear-gradient(160deg, rgba(16,185,129,0.16), rgba(4,120,87,0.05));
  background-image:none;
  border:1px solid rgba(16,185,129,0.22);
  flex-direction:column; gap:16px; padding:26px 22px; text-align:center;
}
.review-mark{
  font-family:var(--font-display, Georgia, 'Times New Roman', serif);
  font-size:5rem; line-height:0.6; color:var(--emerald); opacity:0.5;
}
.review-stars{ color:#f5b23e; letter-spacing:4px; font-size:1.1rem; }
.review-panel-text{
  margin:0; font-size:0.9rem; line-height:1.55; color:var(--text); font-weight:500;
}
.play-btn{
  width:56px; height:56px; border-radius:50%; background:rgba(16,185,129,0.9); color:#ffffff;
  display:flex; align-items:center; justify-content:center; font-size:1.1rem; box-shadow:0 8px 24px -6px rgba(16,185,129,0.7);
  transition:transform .2s ease;
}
.video-card:hover .play-btn{ transform:scale(1.1); }
.testimonial-meta{ display:flex; justify-content:space-between; align-items:center; margin-top:14px; font-size:0.85rem; }
.testimonial-meta b{ color:var(--text); }
.testimonial-meta span{ color:var(--text-dimmer); }

/* ============ ABOUT / TRUST ============ */
.about-block{ max-width:720px; margin:0 auto 56px; text-align:center; }
.about-text{ font-size:1.15rem; color:var(--text); font-weight:500; line-height:1.6; }

/* ============ STATS ============ */
.stat-box{ text-align:center; padding:20px; }
.stat-num{ display:block; font-size:2rem; font-weight:600; color:var(--accent); margin-bottom:6px; }
.stat-label{ font-size:0.85rem; color:var(--text-dim); }

/* ============ URGENCY / COUNTDOWN ============ */
.urgency-section{ position:relative; overflow:hidden; }
.countdown{ display:flex; justify-content:center; gap:16px; margin:32px 0 8px; }
.count-box{
  display:flex; flex-direction:column; align-items:center; gap:4px; min-width:78px; padding:16px 12px;
  background:var(--surface); border:1px solid var(--border-strong); border-radius:var(--radius-sm);
}
.count-box span{ font-family:var(--font-head); font-size:1.8rem; font-weight:800; color:var(--accent); }
.count-box small{ font-size:0.7rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-dimmer); }
.countdown-label{ font-size:0.85rem; color:var(--text-dimmer); margin-bottom:28px; }

/* ============ FAQ ============ */
.accordion{ display:flex; flex-direction:column; gap:12px; }
.acc-item{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-sm); overflow:hidden; }
.acc-trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:none; border:none; color:var(--text); font-family:var(--font-head); font-weight:600; font-size:0.98rem;
  padding:20px 22px; text-align:left;
}
.acc-icon{ flex-shrink:0; font-size:1.2rem; color:var(--accent); transition:transform .25s ease; }
.acc-item.open .acc-icon{ transform:rotate(45deg); }
.acc-panel{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.acc-panel p{ padding:0 22px 20px; margin:0; font-size:0.92rem; }

/* ============ FINAL CTA ============ */
.final-cta{ text-align:center; padding-bottom:120px; }
.final-cta h2{ font-size:clamp(1.9rem,4vw,2.8rem); }

/* ============ FOOTER ============ */
.footer{ background:var(--bg-alt); border-top:1px solid var(--border); padding:56px 0 100px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:32px; padding-bottom:32px; border-bottom:1px solid var(--border); margin-bottom:24px; }
.footer-brand .logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:700; font-size:1.02rem; margin-bottom:10px; }
.footer-brand .logo em{ font-style:normal; color:var(--accent); }
.logo-mark{ display:inline-flex; flex:0 0 auto; width:30px; height:30px; border-radius:50%; overflow:hidden; box-shadow:0 0 0 1px rgba(8,32,22,0.08), 0 6px 16px -6px rgba(15,35,25,0.18); }
.logo-mark img{ display:block; width:100%; height:100%; object-fit:cover; border-radius:50%; }
.footer-tagline{ font-size:0.85rem; max-width:280px; margin:0; }
.footer-links{ display:flex; flex-direction:column; gap:10px; }
.footer-col-title{ font-size:0.74rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-dimmer); margin-bottom:4px; }
.footer-links a{ font-size:0.88rem; color:var(--text-dim); transition:color .15s ease; }
.footer-links a:hover{ color:var(--accent); }
.footer-note{ font-size:0.8rem; color:var(--text-dimmer); line-height:1.5; }
.footer-disclaimer-box{
  font-size:0.78rem; color:var(--text-dimmer); line-height:1.6; padding:16px 20px; border-radius:var(--radius-sm);
  background:var(--surface); border:1px solid var(--border); margin-bottom:16px;
}
.footer-disclaimer-box strong{ color:var(--text-dim); }
.footer-identity{ margin:0 0 12px; }
.footer-identity p{ font-size:0.8rem; color:var(--text-dimmer); line-height:1.6; margin:0 0 4px; }
.footer-identity strong{ color:var(--text-dim); }
.footer-identity a{ color:var(--text-dim); }
.footer-identity a:hover{ color:var(--accent); }
.copyright{ font-size:0.78rem; color:var(--text-dimmer); margin:0; }

/* ============ LEGAL PAGES (privacy / terms) ============ */
.legal-header{ background:var(--bg-alt); border-bottom:1px solid var(--border); }
.legal-header-inner{ max-width:var(--container); margin:0 auto; padding:18px 24px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.legal-header .logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:700; font-size:1rem; }
.legal-header .logo em{ font-style:normal; color:var(--accent); }
.legal-header-back{ font-size:0.88rem; font-weight:600; color:var(--accent); }
.legal-header-back:hover{ text-decoration:underline; }
.legal-main{ max-width:820px; margin:0 auto; padding:48px 24px 96px; }
.legal-main h1{ font-family:var(--font-display); font-weight:600; font-size:2rem; margin-bottom:6px; }
.legal-updated{ font-size:0.85rem; color:var(--text-dimmer); margin-bottom:32px; }
.legal-main h2{ font-size:1.15rem; margin:38px 0 10px; }
.legal-main h3{ font-size:1rem; margin:22px 0 8px; }
.legal-main p, .legal-main li{ font-size:0.95rem; color:var(--text-dim); line-height:1.7; }
.legal-main ul{ padding-left:22px; margin:0 0 1em; list-style:disc; }
.legal-main li{ margin-bottom:6px; }
.legal-main a{ color:var(--accent); text-decoration:underline; }
.legal-contact-box{ margin-top:36px; padding:18px 20px; border-radius:var(--radius-sm); background:var(--surface); border:1px solid var(--border); font-size:0.9rem; }
.legal-contact-box p{ margin:0 0 4px; }
.legal-contact-box p:last-child{ margin:0; }

/* ============ STICKY MOBILE CTA ============ */
.mobile-sticky-cta{
  display:none; position:fixed; left:0; right:0; bottom:0; z-index:50; padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,0.92); backdrop-filter:blur(14px); border-top:1px solid var(--border);
}

/* ============ MODAL ============ */
.modal-overlay{
  position:fixed; inset:0; z-index:100; display:flex; align-items:center; justify-content:center;
  background:rgba(13,25,20,0.55); backdrop-filter:blur(6px);
  opacity:0; pointer-events:none; transition:opacity .25s ease; padding:20px;
}
.modal-overlay.active{ opacity:1; pointer-events:auto; }
.modal{
  position:relative; width:100%; min-width:0; max-width:540px; max-height:none; overflow:visible;
  padding:26px 30px; transform:translateY(20px) scale(0.98); transition:transform .3s ease;
  background:linear-gradient(180deg, #ffffff, #f6faf8);
  box-shadow:0 20px 60px -20px rgba(15,35,25,0.35);
}
.modal-overlay.active .modal{ transform:translateY(0) scale(1); }
.modal-close{
  position:absolute; top:14px; right:14px; width:32px; height:32px; border-radius:50%;
  background:var(--surface-strong); border:1px solid var(--border); color:var(--text); font-size:0.9rem;
}
.modal-close:hover{ background:rgba(8,32,22,0.1); }
.modal-form-state .pill{ margin-bottom:10px; }
.modal-form-state h3{ margin-bottom:6px; font-size:1.3rem; }
.modal-sub{ font-size:0.88rem; margin-bottom:16px; }
.form-row{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:12px; margin-bottom:12px; }
.form-group{ margin-bottom:12px; min-width:0; }
.form-row .form-group{ margin-bottom:0; }
.form-group label{ display:block; font-size:0.8rem; font-weight:600; margin-bottom:5px; color:var(--text-dim); }
.form-group input, .form-group select{
  width:100%; min-width:0; padding:11px 13px; border-radius:var(--radius-sm); background:rgba(8,32,22,0.035);
  border:1px solid var(--border); color:var(--text); font-size:0.92rem; font-family:var(--font-body);
  transition:border-color .18s ease, background .18s ease;
}
.form-group input:focus, .form-group select:focus{
  outline:none; border-color:var(--emerald); background:rgba(8,32,22,0.055);
}
.form-group input.invalid, .form-group select.invalid{ border-color:var(--danger); }
.form-group select{ appearance:none; -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239fb0a9' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center;
}
.error-msg{ display:block; min-height:14px; font-size:0.72rem; color:var(--danger); margin-top:3px; line-height:1.3; }
.privacy-line{ text-align:center; font-size:0.78rem; color:var(--text-dimmer); margin:10px 0 0; }
.hp-field{ position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; overflow:hidden; }
.form-submit-error{ display:none; text-align:center; font-size:0.82rem; color:var(--danger); margin:0 0 12px; font-weight:600; }
.form-submit-error.visible{ display:block; }

.modal-success-state{ text-align:center; }
.success-icon{ font-size:2.4rem; margin-bottom:6px; animation:popIn .4s ease; }
@keyframes popIn{ 0%{ transform:scale(0.5); opacity:0; } 100%{ transform:scale(1); opacity:1; } }
.next-session-box{ display:flex; flex-direction:column; gap:6px; align-items:center; margin:18px 0; padding:16px; border-radius:var(--radius-sm); background:rgba(16,185,129,0.08); border:1px solid var(--border-strong); }
.next-session-time{ font-family:var(--font-head); font-weight:800; font-size:1.2rem; color:var(--accent); }

@media (max-height: 640px){
  .modal{ max-height:94vh; overflow-y:auto; }
}

/* ============ REVEAL ANIMATION ============ */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .float-card, .dot-live, .pill-urgent, .success-icon{ animation:none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px){
  .hero-grid{ grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:16px; }
  .hv-phone-right{ right:24px; }
  .hv-badge-top{ right:12px; }
}
@media (max-width: 980px){
  .nav-links, .sh-links{ display:none; }
  .site-header-wrap, .hero-wrap{ padding:0 20px; }
  .hero-grid{ grid-template-columns:1fr; gap:8px; }
  .hero-copy{ max-width:560px; margin:0 auto; }
  .hero-visual{ order:2; height:560px; margin:0 auto; max-width:560px; }
  .hero-stats-grid{ grid-template-columns:1fr 1fr; gap:26px 0; }
  .hs-item + .hs-item::before{ display:none; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:1fr; max-width:440px; margin:0 auto; }
  .offer-grid{ grid-template-columns:1fr; }
  .curriculum{ grid-template-columns:1fr; max-width:560px; }
  .offer-cta{ flex-direction:column; text-align:center; max-width:560px; }
  .offer-cta-copy{ flex-basis:auto; }
  .offer-features{ max-width:560px; }
  .offer-feature{ flex:1 1 45%; border-right:none; padding:10px 16px; justify-content:flex-start; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:1 / -1; }
}

@media (max-width: 720px){
  .steps{ grid-template-columns:1fr; max-width:440px; margin:0 auto; gap:16px; }
  .step-connector{ display:none; }
}

@media (max-width: 640px){
  .site-nav{ gap:10px; }
  .sh-actions{ gap:8px; }
  .lang-switch-btn{ padding:8px 9px; }
  .lang-switch-btn .lang-switch-label{ display:none; }
  .lang-menu{ min-width:130px; }
  .btn-sm{ padding:9px 16px; font-size:0.78rem; }
  .sh-brand-full{ display:none; }
  .sh-brand-short{ display:inline; }
  .hero{ padding:16px 0 40px; }
  .hero-title{ font-size:2rem; }
  .hero-cd{ padding:12px 14px; }
  .hero-cd-boxes{ margin-left:0; }
  .hero-visual{ transform:scale(.82); transform-origin:top center; height:470px; }
  .hero-stats{ padding:22px 16px; }
  .hero-stats-grid{ gap:22px 0; }
  .hs-n{ font-size:1.3rem; }
  .hs-ic{ width:42px; height:42px; }
  .section{ padding:64px 0; }
  .how-section{ padding-top:48px; }
  .grid-4{ grid-template-columns:repeat(2,1fr); gap:14px; }
  .card{ padding:26px 20px; }
  .mobile-sticky-cta{ display:block; }
  body{ padding-bottom:calc(94px + env(safe-area-inset-bottom)); }
  .countdown{ gap:10px; }
  .count-box{ min-width:64px; padding:12px 8px; }
  .count-box span{ font-size:1.4rem; }
  .modal{ padding:22px 18px; }
  .form-row{ gap:8px; }
  .form-group input, .form-group select{ padding:10px 10px; font-size:0.86rem; }
  .schedule-card{ padding:32px 22px; }
  .schedule-clock{ font-size:2.4rem; }
  .trust-strip-inner{ gap:10px 18px; font-size:0.76rem; padding:14px 20px; }
  .footer-grid{ grid-template-columns:1fr; }
}

@media (max-width: 420px){
  .grid-4{ grid-template-columns:1fr 1fr; }
  .hero-badges{ flex-direction:column; align-items:flex-start; }
}
