/* ===================================================================
   FirstClass — Design System Foundations
   "Learn English the way a child does." Listening → Speaking first.
   Brand: purple #8E6DF2 + warm lavender→peach→coral→pink. Persian / RTL.
   =================================================================== */

:root {
  --purple:      #8E6DF2;
  --purple-deep: #6B4BD6;
  --purple-ink:  #2E2257;
  --lavender:    #A0A1E1;
  --peach:       #FFBDA3;
  --coral:       #FDADAA;
  --pink:        #FB98D7;
  --cream:       #F7E8C3;
  --gold:        #FFCE2B;
  --red:         #F93939;
  --green:       #2FBF71;
  --mint:        #9BF3C3;

  --ink:    #1B1A2E;
  --ink-2:  #4A4862;
  --ink-3:  #8A88A0;
  --line:   #ECEAF6;
  --surface:#FFFFFF;
  --bg:     #FBFAFF;
  --bg-warm:#FFF6F0;

  /* Tweak-driven */
  --brand: var(--purple);
  --brand-deep: var(--purple-deep);
  --anim-scale: 1;

  --grad-warm: linear-gradient(115deg, var(--lavender) 0%, var(--peach) 44%, var(--coral) 72%, var(--pink) 100%);
  --grad-brand: linear-gradient(150deg, var(--brand) 0%, var(--brand-deep) 100%);
  --grad-hero: radial-gradient(125% 125% at 82% 6%, #B79BFF 0%, var(--brand) 36%, var(--brand-deep) 76%, #3F2C96 100%);

  --r-sm: 12px; --r-md: 18px; --r-lg: 28px; --r-xl: 40px; --r-pill: 999px;

  --sh-sm: 0 2px 8px rgba(27,26,46,.06);
  --sh-md: 0 12px 32px rgba(27,26,46,.10);
  --sh-lg: 0 30px 70px rgba(27,26,46,.16);
  --sh-brand: 0 16px 40px rgba(142,109,242,.34);

  --font: "Vazirmatn", system-ui, sans-serif;
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); background: var(--bg); color: var(--ink);
  font-size: 18px; line-height: 1.75; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
h1,h2,h3,h4 { margin: 0; line-height: 1.16; font-weight: 800; letter-spacing: -.01em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 700; color: var(--brand);
  background: color-mix(in srgb, var(--brand) 12%, white);
  padding: 8px 16px; border-radius: var(--r-pill); margin-bottom: 22px;
}
.eyebrow.on-dark { color: #fff; background: rgba(255,255,255,.16); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.eyebrow.on-dark .dot { background: var(--gold); }

.h-display { font-size: clamp(40px, 6vw, 82px); font-weight: 800; line-height: 1.05; }
.h-section { font-size: clamp(31px, 4.2vw, 56px); font-weight: 800; }
.lead { font-size: clamp(18px, 1.5vw, 22px); color: var(--ink-2); line-height: 1.85; }

.grad-text {
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.brand-text { color: var(--brand); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 17px; border-radius: var(--r-pill);
  padding: 15px 30px; transition: transform .25s cubic-bezier(.2,.9,.3,1.2), box-shadow .25s, filter .25s; white-space: nowrap;
}
.btn:hover { transform: translateY(calc(-3px * var(--anim-scale))); }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 22px 50px rgba(142,109,242,.45); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-on-dark { background: #fff; color: var(--purple-deep); }
.btn-lg { padding: 18px 38px; font-size: 18px; }
.arrow { font-size: 20px; transition: transform .25s; }
.btn:hover .arrow { transform: translateX(-5px); }

/* Card */
.card {
  background: var(--surface); border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--sh-sm);
  transition: transform .3s cubic-bezier(.2,.9,.3,1.2), box-shadow .3s;
}
.card:hover { transform: translateY(calc(-6px * var(--anim-scale))); box-shadow: var(--sh-md); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } }

@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(calc(-16px * var(--anim-scale))) } }
@keyframes floatSlow { 0%,100% { transform: translateY(0) rotate(0) } 50% { transform: translateY(calc(-22px * var(--anim-scale))) rotate(3deg) } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(255,206,43,.5) } 100% { box-shadow: 0 0 0 22px rgba(255,206,43,0) } }
@keyframes eq { 0%,100% { height: 22%; } 50% { height: 100%; } }
.float { animation: float 5s ease-in-out infinite; }
.float-slow { animation: floatSlow 7s ease-in-out infinite; }

/* Wordmark */
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; }
.brand-name { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; direction: ltr; }
.brand-name b { color: var(--brand); font-weight: 800; }
.brand-name .star { color: var(--brand); }

/* ===================== NAV ===================== */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(251,250,255,.78); backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.nav.scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(27,26,46,.05); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 76px; }
.nav-links { display: flex; gap: 28px; margin-inline-start: auto; }
.nav-links a { font-size: 16px; font-weight: 600; color: var(--ink-2); transition: color .2s; position: relative; }
.nav-links a::after { content: ""; position: absolute; bottom: -6px; inset-inline: 0; height: 2px; background: var(--brand); transform: scaleX(0); transition: transform .25s; border-radius: 2px; }
.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-login { font-weight: 700; font-size: 16px; }
.nav-login:hover { color: var(--brand); }
.nav-download { padding: 11px 22px; font-size: 15px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(72px); }
.blob.b1 { width: 520px; height: 520px; background: var(--lavender); top: -160px; left: -120px; opacity: .5; }
.blob.b2 { width: 460px; height: 460px; background: var(--peach); top: 30px; right: -150px; opacity: .42; }
.blob.b3 { width: 380px; height: 380px; background: var(--pink); bottom: -130px; left: 32%; opacity: .28; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; gap: 50px; align-items: center; padding-block: clamp(36px, 5vw, 70px); }
.hero-copy .h-display { margin-block: 4px 22px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 15px; color: var(--ink-2); font-weight: 600; }
.hero-note .free { background: color-mix(in srgb,var(--green) 14%,#fff); color: #1c7a4a; padding: 4px 11px; border-radius: 999px; font-weight: 800; font-size: 13px; }

/* Hero visual: phone showing a narrative scene */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone { width: 320px; max-width: 82vw; background: #14132a; border-radius: 46px; padding: 12px; box-shadow: var(--sh-lg); position: relative; z-index: 2; }
.phone::before { content:""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 86px; height: 22px; background: #14132a; border-radius: 0 0 14px 14px; z-index: 4; }
.phone-screen { background: #F4F1FB; border-radius: 36px; overflow: hidden; min-height: 560px; display: flex; flex-direction: column; }
.ps-top { display: flex; align-items: center; gap: 12px; padding: 26px 18px 12px; }
.ps-back { width: 34px; height: 34px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: var(--sh-sm); font-size: 16px; color: var(--ink-2); }
.ps-title { display: flex; flex-direction: column; }
.ps-title b { font-size: 16px; font-weight: 800; direction: ltr; }
.ps-title span { font-size: 11px; font-weight: 800; letter-spacing: 1px; color: var(--brand); }
.ps-scene { position: relative; margin: 4px 14px 0; border-radius: 22px; aspect-ratio: 4/3; background: #20203a center/cover; overflow: hidden; box-shadow: var(--sh-md); }
.ps-scene img { width: 100%; height: 100%; object-fit: cover; }
.ps-cap { position: absolute; inset-inline: 12px; bottom: 12px; background: rgba(20,19,42,.78); color: #fff; padding: 9px 13px; border-radius: 12px; font-size: 13px; direction: ltr; text-align: left; backdrop-filter: blur(4px); }
.ps-cap b { color: var(--gold); }
.ps-ctrl { display: flex; align-items: center; gap: 10px; padding: 16px 18px; margin-top: auto; }
.ps-dots { flex: 1; display: flex; gap: 7px; background: #fff; padding: 12px 14px; border-radius: 999px; box-shadow: var(--sh-sm); }
.ps-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.ps-dots i.on { background: var(--brand); width: 22px; }
.ps-dots i.warn { background: var(--coral); }
.ps-btn { width: 48px; height: 48px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: var(--sh-sm); color: var(--ink); font-size: 16px; }
.ps-btn.play { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand); }

.hero-char { position: absolute; bottom: -8px; left: -64px; width: 220px; z-index: 3; filter: drop-shadow(0 24px 40px rgba(27,26,46,.22)); pointer-events: none; }
.orbit { position: absolute; z-index: 3; filter: drop-shadow(0 12px 24px rgba(27,26,46,.18)); }
.orbit img { width: 100%; height: 100%; object-fit: contain; }
.orbit.o1 { width: 84px; height: 84px; top: 2%; right: -2%; }
.orbit.o2 { width: 68px; height: 68px; top: 44%; right: -6%; }

/* trust strip */
.trust-strip { position: relative; z-index: 1; border-top: 1px solid var(--line); padding-block: 28px; }
.trust-inner { display: flex; gap: 14px 44px; flex-wrap: wrap; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item b { font-size: 30px; font-weight: 800; color: var(--brand); line-height: 1; }
.trust-item span { font-size: 14px; color: var(--ink-2); max-width: 140px; }

/* ===================== SECTION HEAD ===================== */
.sec-head { max-width: 720px; margin: 0 auto clamp(40px,5vw,64px); text-align: center; }
.sec-head .lead { margin-top: 16px; }

/* ===================== PHILOSOPHY ===================== */
.philo { background: var(--bg-warm); }
.philo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.philo-copy .h-section { margin-block: 6px 18px; }
.ladder { display: flex; flex-direction: column; gap: 14px; }
.rung { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 22px; box-shadow: var(--sh-sm); position: relative; }
.rung .n { width: 46px; height: 46px; flex: none; border-radius: 14px; display: grid; place-items: center; font-weight: 800; font-size: 19px; color: #fff; background: var(--grad-brand); }
.rung.soft .n { background: color-mix(in srgb,var(--brand) 14%,#fff); color: var(--brand); }
.rung h4 { font-size: 19px; margin-bottom: 3px; }
.rung p { font-size: 15px; color: var(--ink-2); }
.rung .tag { margin-inline-start: auto; font-size: 12px; font-weight: 800; color: var(--ink-3); white-space: nowrap; }
.philo-copy .quote { margin-top: 26px; font-size: 17px; color: var(--ink-2); border-inline-start: 3px solid var(--brand); padding-inline-start: 18px; }

/* ===================== SITUATION (4 STEPS) ===================== */
.steps-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stepc { padding: 0 0 26px; overflow: hidden; display: flex; flex-direction: column; }
.stepc .scene { position: relative; aspect-ratio: 16/11; background: #20203a center/cover; }
.stepc .scene img { width: 100%; height: 100%; object-fit: cover; }
.stepc .scene.plain { background: var(--grad-hero); display: grid; place-items: center; }
.stepc .scene .pin { position: absolute; top: 14px; inset-inline-start: 14px; width: 38px; height: 38px; border-radius: 12px; background: rgba(255,255,255,.92); display: grid; place-items: center; font-weight: 800; color: var(--brand); box-shadow: var(--sh-sm); }
.stepc .scene .ava { width: 96px; height: 96px; border-radius: 50%; border: 4px solid rgba(255,255,255,.85); background: #fff center/cover; box-shadow: var(--sh-md); }
.stepc .body { padding: 22px 22px 0; }
.stepc .phase { font-size: 12px; font-weight: 800; letter-spacing: .5px; color: var(--brand); text-transform: uppercase; }
.stepc h3 { font-size: 21px; margin-block: 9px 8px; }
.stepc p { font-size: 15px; color: var(--ink-2); }
/* mini audio options inside step 2 */
.aopts { display: flex; flex-direction: column; gap: 7px; position: absolute; inset-inline: 14px; bottom: 14px; }
.aopt { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.95); border-radius: 10px; padding: 8px 10px; font-size: 12px; font-weight: 700; box-shadow: var(--sh-sm); direction: ltr; }
.aopt .wv { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
.aopt .wv i { width: 2.5px; background: var(--brand); border-radius: 2px; animation: eq 1s ease-in-out infinite; }
.aopt.ok { box-shadow: 0 0 0 2px var(--green); }
.aopt.ok .wv i { background: var(--green); }
.mic { position: absolute; inset-inline: 0; bottom: 16px; display: grid; place-items: center; }
.mic .ring { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-size: 24px; box-shadow: var(--sh-brand); animation: pulseRing 1.8s infinite; }

/* ===================== COACHES ===================== */
.coaches { background: var(--purple-ink); color: #fff; overflow: hidden; }
.coaches .sec-head h2, .coaches .sec-head .lead { color: #fff; }
.coaches .sec-head .lead { color: rgba(255,255,255,.82); }
.coach-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.coach-cards { display: flex; gap: 20px; }
.ccard { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 26px; text-align: center; transition: transform .3s, background .3s; }
.ccard:hover { transform: translateY(calc(-6px * var(--anim-scale))); background: rgba(255,255,255,.1); }
.ccard .pf { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px; background: var(--grad-warm) center/cover; overflow: hidden; border: 4px solid rgba(255,255,255,.18); }
.ccard .pf img { width: 100%; height: 100%; object-fit: cover; }
.ccard h4 { font-size: 22px; }
.ccard .flag { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }
.ccard .acc { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; background: rgba(255,255,255,.14); padding: 6px 14px; border-radius: 999px; }
.coach-copy .eyebrow { color: #fff; background: rgba(255,255,255,.16); }
.coach-copy .eyebrow .dot { background: var(--gold); }
.coach-copy h2 { color: #fff; font-size: clamp(28px,3.4vw,44px); margin-bottom: 16px; }
.coach-copy p { color: rgba(255,255,255,.82); }
.coach-feats { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.coach-feats li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: rgba(255,255,255,.92); }
.coach-feats .ic { width: 26px; height: 26px; flex: none; border-radius: 8px; background: var(--grad-warm); display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 800; margin-top: 2px; }

/* ===================== COURSE STRUCTURE ===================== */
.course-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.course-copy .h-section { margin-block: 6px 16px; }
.course-copy .checks { margin-top: 24px; }
.checks { display: flex; flex-direction: column; gap: 13px; }
.checks li { position: relative; padding-inline-start: 36px; font-size: 17px; color: var(--ink-2); font-weight: 500; }
.checks li::before { content: "✓"; position: absolute; right: 0; top: 2px; width: 24px; height: 24px; background: var(--grad-brand); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 800; }
.checks.sm li { font-size: 15px; padding-inline-start: 30px; }
.checks.sm li::before { width: 20px; height: 20px; font-size: 11px; top: 1px; }
/* situation map visual */
.smap { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 30px; box-shadow: var(--sh-lg); }
.smap-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.smap-head b { font-size: 18px; }
.smap-head .lvl { font-size: 13px; font-weight: 800; color: var(--brand); background: color-mix(in srgb,var(--brand) 12%,#fff); padding: 5px 12px; border-radius: 999px; }
.sitem { display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: var(--r-md); border: 1px solid var(--line); margin-bottom: 12px; transition: .2s; }
.sitem:hover { border-color: var(--brand); }
.sitem .ico { width: 50px; height: 50px; flex: none; border-radius: 14px; display: grid; place-items: center; box-shadow: var(--sh-sm); }
.sitem .ico img { width: 32px; height: 32px; object-fit: contain; }
.sitem .meta { flex: 1; }
.sitem .meta b { font-size: 16px; display: block; }
.sitem .meta span { font-size: 13px; color: var(--ink-3); }
.sitem .state { font-size: 12px; font-weight: 800; padding: 5px 10px; border-radius: 999px; }
.state.done { background: color-mix(in srgb,var(--green) 14%,#fff); color: #1c7a4a; }
.state.now { background: var(--grad-brand); color: #fff; }
.state.lock { background: var(--line); color: var(--ink-3); }

/* ===================== SERIES / CHARACTERS ===================== */
.series { background: var(--bg-warm); }
.series-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.series-frames { position: relative; }
.frame-main { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 16/10; }
.frame-main img { width: 100%; height: 100%; object-fit: cover; }
.frame-sub { position: absolute; bottom: -34px; inset-inline-start: -28px; width: 46%; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 5px solid #fff; }
.frame-sub img { width: 100%; display: block; }
.series-badge { position: absolute; top: -18px; inset-inline-end: 20px; background: var(--gold); color: #4a3000; font-weight: 800; padding: 8px 18px; border-radius: 999px; box-shadow: var(--sh-md); font-size: 14px; }
.series-copy .h-section { margin-block: 6px 16px; }

/* ===================== RESULT / CLAIM ===================== */
.claim { text-align: center; }
.claim-bar { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; margin-top: 44px; }
.lvl-chip { width: 78px; height: 78px; border-radius: 20px; display: grid; place-items: center; font-weight: 800; font-size: 22px; background: #fff; border: 2px solid var(--line); color: var(--ink-3); box-shadow: var(--sh-sm); }
.lvl-chip.on { background: var(--grad-brand); color: #fff; border-color: transparent; transform: scale(1.08); box-shadow: var(--sh-brand); }
.lvl-arrow { color: var(--brand); font-size: 26px; margin-inline: 8px; }
.claim-sub { margin-top: 30px; font-size: 19px; color: var(--ink-2); }
.claim-sub b { color: var(--brand); }

/* ===================== PRICING / COURSES ===================== */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price { padding: 36px 32px; display: flex; flex-direction: column; position: relative; }
.price.pop { background: var(--grad-hero); color: #fff; border: none; box-shadow: var(--sh-lg); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #4a3000; font-weight: 800; font-size: 13px; padding: 7px 18px; border-radius: 999px; white-space: nowrap; }
.price h3 { font-size: 23px; }
.price-desc { font-size: 15px; color: var(--ink-3); margin-top: 6px; }
.price.pop .price-desc { color: rgba(255,255,255,.82); }
.price-amt { margin-block: 22px 24px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-amt b { font-size: 38px; font-weight: 800; line-height: 1; }
.price-amt span { font-size: 15px; color: var(--ink-3); }
.price.pop .price-amt span { color: rgba(255,255,255,.85); }
.price .checks { margin: 0 0 28px; flex: 1; }
.price.pop .checks li { color: rgba(255,255,255,.95); }
.price.pop .checks li::before { background: rgba(255,255,255,.25); }
.price.pop .btn-primary { background: #fff; color: var(--brand-deep); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.price .btn { width: 100%; }

/* ===================== FAQ ===================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 4px 26px; margin-bottom: 14px; box-shadow: var(--sh-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 30px; height: 30px; flex: none; border-radius: 50%; background: color-mix(in srgb,var(--brand) 12%,#fff); color: var(--brand); display: grid; place-items: center; font-size: 18px; transition: transform .3s; }
.faq[open] summary .pm { transform: rotate(45deg); }
.faq p { padding: 0 0 22px; color: var(--ink-2); font-size: 16px; }

/* ===================== CTA ===================== */
.cta-final { background: var(--grad-hero); margin: clamp(40px,6vw,80px) 24px; border-radius: var(--r-xl); overflow: hidden; }
.cta-inner { text-align: center; color: #fff; position: relative; z-index: 1; }
.cta-inner .h-display { color: #fff; max-width: 800px; margin: 0 auto 18px; }
.lead.on-dark { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta-orbit { position: absolute; filter: drop-shadow(0 14px 28px rgba(0,0,0,.25)); }
.cta-orbit img { width: 100%; height: 100%; object-fit: contain; }
.cta-orbit.o1 { width: 92px; height: 92px; top: 12%; right: 7%; }
.cta-orbit.o2 { width: 80px; height: 80px; bottom: 10%; left: 8%; }

/* ===================== FOOTER ===================== */
.footer { background: var(--ink); color: #fff; padding-block: 64px 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand .brand-name { color: #fff; }
.foot-brand p { color: rgba(255,255,255,.6); font-size: 15px; margin-top: 16px; max-width: 280px; }
.foot-col h4 { font-size: 16px; margin-bottom: 16px; }
.foot-col a { display: block; color: rgba(255,255,255,.6); font-size: 15px; margin-bottom: 11px; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); font-size: 14px; color: rgba(255,255,255,.5); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-grid, .philo-grid, .course-grid, .series-grid, .coach-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; } .hero-char { display: none; }
  .steps-track { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; } .nav-burger { display: flex; }
  .coaches .coach-copy { order: -1; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .steps-track, .foot-grid { grid-template-columns: 1fr; }
  .coach-cards { flex-direction: column; }
  .nav-download { display: none; }
  .hero-actions .btn, .cta-actions .btn { flex: 1; }
  .lvl-chip { width: 60px; height: 60px; font-size: 18px; }
  .frame-sub { position: static; width: 100%; margin-top: 16px; inset-inline-start: 0; }
}
