/* ════════════════════════════════
   RESET & TOKENS
════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:     #08080c;
  --bg2:    #0d0d14;
  --ink:    #eef1f6;
  --muted:  #8d94ab;
  --border: rgba(255,255,255,.09);
  --brand:  #19e0b2;
  --blue:   #2563eb;
  --blue2:  #3b82f6;
  --indigo: #818cf8;
  --card:   rgba(255,255,255,.04);
  --fh: 'Sora', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --radius: 22px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--ink); background: var(--bg); line-height: 1.65; overflow-x: hidden; }
.wrap { width: min(1160px, 94%); margin-inline: auto; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── TYPE ── */
h1,h2,h3,h4,h5 { font-family: var(--fh); line-height: 1.14; }
h1 { font-size: clamp(28px,5.5vw,58px); font-weight: 900; }
h2 { font-size: clamp(22px,3.8vw,40px); font-weight: 800; }
h3 { font-size: clamp(17px,2.4vw,24px); font-weight: 800; }
h4 { font-size: clamp(14px,1.8vw,16px); font-weight: 700; }
p  { font-size: clamp(13px,1.6vw,15px); line-height: 1.72; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.6rem; border-radius: 10px; border: 1px solid transparent;
  font-weight: 700; font-family: var(--fh); cursor: pointer;
  font-size: clamp(12px,1.6vw,14px); transition: transform .12s, box-shadow .2s, background .2s;
  white-space: nowrap; text-decoration: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-blue   { background: var(--blue); color: #fff; box-shadow: 0 8px 28px rgba(37,99,235,.38); }
.btn-blue:hover { background: var(--blue2); box-shadow: 0 12px 36px rgba(37,99,235,.48); }
.btn-brand  { background: var(--brand); color: #0b1f17; box-shadow: 0 8px 24px rgba(25,224,178,.3); }
.btn-ghost  { background: rgba(255,255,255,.06); border-color: var(--border); color: var(--ink); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-outline-green { background: transparent; border-color: rgba(25,224,178,.4); color: var(--brand); }
.btn-sm     { padding: .55rem 1rem; font-size: 12px; border-radius: 8px; }
.btn-full   { width: 100%; }

/* ── TAGS ── */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: .28rem .85rem; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; font-family: var(--fh);
}
.tag-green  { background: rgba(25,224,178,.1);  color: var(--brand);  border: 1px solid rgba(25,224,178,.22); }
.tag-blue   { background: rgba(37,99,235,.14);  color: #93c5fd;       border: 1px solid rgba(37,99,235,.28); }
.tag-purple { background: rgba(129,140,248,.1); color: var(--indigo); border: 1px solid rgba(129,140,248,.24); }
.tag-orange { background: rgba(251,146,60,.1);  color: #fb923c;       border: 1px solid rgba(251,146,60,.24); }
.eyebrow { font-family: var(--fh); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--brand); }

/* ── CARDS ── */
.glass {
  background: linear-gradient(160deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
  position: relative; overflow: hidden;
}
.glass::before {
  content:''; position:absolute; inset:0; border-radius:inherit;
  background: linear-gradient(160deg,rgba(255,255,255,.07),transparent 55%);
  pointer-events:none; opacity:.3; mix-blend-mode:screen;
}

/* ── DIVIDERS ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── SECTION HEADER ── */
.sec-head { text-align: center; margin-bottom: 44px; }
.sec-head h2 { margin: 9px 0 11px; }
.sec-head p  { color: var(--muted); max-width: 52ch; margin: 0 auto; font-size: 15px; }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 0;
  transition: background .3s, box-shadow .3s;
}
.nav-bar.scrolled {
  background: rgba(8,8,12,.92); backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  width: min(1160px,94%); margin-inline: auto;
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--fh); font-weight: 900; font-size: 16px; color: var(--ink);
  flex-shrink: 0;
}
.nav-logo-dot {
  width: 60px; height: 60px; border-radius: 8px;

  display: grid; place-items: center; flex-shrink: 0;
}
.nav-logo-dot img

 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
    border: 1px solid #fff;
    border-radius: 900px 900px 400px 400px;
}
.nav-logo-dot svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; }
.nav-links {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
  list-style: none;
}
.nav-links a {
  padding: 7px 12px; border-radius: 8px; font-size: 13px; font-weight: 600;
  color: var(--muted); transition: color .18s, background .18s;
  font-family: var(--fh);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(255,255,255,.06); }
.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  margin-left: auto; padding: 6px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 16px 16px;
  background: rgba(8,8,12,.97); backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 10px 14px; border-radius: 9px; font-size: 14px; font-weight: 600;
  color: var(--muted); font-family: var(--fh); transition: color .15s, background .15s;
}
.nav-mobile a:hover { color: var(--ink); background: rgba(255,255,255,.06); }
.nav-mobile .btn { margin-top: 8px; }

/* ── PAGE VIEWS ── */
.page { display: none; padding-top: 70px; }
.page.active { display: block; }

/* PAGE TRANSITION */
.page.fade-in { animation: fadeUp .35s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════
   HOME PAGE
════════════════════════════════ */
/* Hero */
.hero-wrap { padding: 18px 0 16px; }
.hero-card {
  position: relative; border-radius: 28px; overflow: hidden;
  background: linear-gradient(135deg,#cdf5e8 0%,#a8edda 42%,#8ae5cc 100%);
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
}
.hero-card::before {
  content:''; position:absolute; inset:0; pointer-events:none; z-index:1;
  background:
    radial-gradient(ellipse at 74% 22%,rgba(25,224,178,.22) 0%,transparent 52%),
    radial-gradient(ellipse at 6% 84%,rgba(37,99,235,.1) 0%,transparent 50%);
}
.hero-pill {
  position:absolute; right:14px; top:14px; z-index:5;
  padding:.52rem .95rem; font-weight:700; font-size:12px; border-radius:9px;
  background:#111827; color:#e8ebf3; border:1px solid rgba(255,255,255,.15); font-family:var(--fh);
  box-shadow:0 8px 22px rgba(0,0,0,.3); cursor:pointer;
}
.hero-grid {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr 1fr; gap:28px;
  padding:52px 28px 56px; align-items:center;
}
.hero-brand { display:flex; align-items:center; gap:9px; font-family:var(--fh); font-weight:900; font-size:17px; color:#0b2a20; margin-bottom:10px; }
.hero-brand-dot { width:30px; height:30px; border-radius:8px; background:linear-gradient(135deg,#19e0b2,#00b88a); display:grid; place-items:center; overflow:hidden; flex-shrink:0; box-shadow:0 4px 14px rgba(25,224,178,.4); }
.hero-brand-dot img { width:100%; height:100%; object-fit:cover; }
.hero-brand-dot svg { width:15px; height:15px; fill:none; stroke:#fff; stroke-width:2.5; }
.hero-sub { font-family:var(--fh); font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#1d7a5c; margin-bottom:11px; }
.hero-copy h1    { color:#0b1f17; margin-bottom:14px; }
.hero-copy .lead { color:#2a4a3a; font-size:clamp(13px,1.9vw,16px); line-height:1.68; max-width:44ch; margin-bottom:22px; }
.hero-actions    { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:26px; }
.hero-trust      { display:flex; flex-wrap:wrap; gap:6px; list-style:none; }
.hero-trust li   { display:flex; align-items:center; gap:5px; padding:4px 10px; border-radius:999px; font-family:var(--fh); font-size:11px; font-weight:600; color:#2a4a3a; background:rgba(25,224,178,.15); border:1px solid rgba(25,224,178,.3); }
.hero-trust svg  { width:11px; height:11px; flex-shrink:0; }

/* Hero form */
.hero-form {
  background:rgba(9,10,18,.94); backdrop-filter:blur(22px);
  border:1px solid rgba(255,255,255,.14); border-radius:22px;
  padding:28px 24px;
  box-shadow:0 32px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.1);
}
.hero-form h3  { color:#fff; font-size:clamp(15px,2.2vw,19px); margin-bottom:5px; }
.hero-form > p { color:var(--muted); font-size:12px; margin-bottom:18px; line-height:1.5; }
.field         { margin-bottom:11px; }
.field label   { display:block; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-bottom:5px; font-family:var(--fh); }
.field input, .field select, .field textarea {
  width:100%; padding:11px 13px; border-radius:8px;
  border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.05);
  color:#fff; font-size:13px; font-family:var(--fb); outline:none;
  transition:border-color .2s, box-shadow .2s; -webkit-appearance:none;
}
.field input::placeholder, .field textarea::placeholder { color:rgba(255,255,255,.28); }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--brand); box-shadow:0 0 0 3px rgba(25,224,178,.13); }
.field select option { background:#1a1d27; }
.field textarea { resize:vertical; min-height:90px; }
.fcheck { display:flex; align-items:flex-start; gap:8px; color:var(--muted); font-size:11px; margin-bottom:13px; line-height:1.45; }
.fcheck input { margin-top:2px; accent-color:var(--brand); flex-shrink:0; }
.fsubmit {
  width:100%; padding:13px; border-radius:9px; background:var(--blue); color:#fff; border:none;
  font-size:14px; font-weight:800; cursor:pointer; font-family:var(--fh);
  box-shadow:0 10px 30px rgba(37,99,235,.42); transition:transform .12s, box-shadow .2s;
}
.fsubmit:hover { transform:translateY(-2px); box-shadow:0 16px 44px rgba(37,99,235,.5); }
.fnote { text-align:center; color:var(--muted); font-size:10px; margin-top:9px; }

/* Stats strip */
.stats-strip { padding:40px 0; }
.stats-grid  { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; }
.stat-item   { padding:28px 24px; text-align:center; background:rgba(255,255,255,.03); border:1px solid var(--border); }
.stat-item:first-child { border-radius:var(--radius) 0 0 var(--radius); }
.stat-item:last-child  { border-radius:0 var(--radius) var(--radius) 0; }
.stat-num  { font-family:var(--fh); font-size:clamp(28px,4vw,44px); font-weight:900; color:var(--brand); line-height:1; margin-bottom:6px; }
.stat-lbl  { color:var(--muted); font-size:13px; }

/* Feature tiles */
.features-sec { padding:20px 0 56px; }
.feat-grid    { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.feat-card    { border-radius:var(--radius); padding:28px; display:flex; flex-direction:column; gap:14px; background:linear-gradient(160deg,#131318,#0c0c10); border:1px solid var(--border); box-shadow:0 20px 60px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.08); position:relative; overflow:hidden; }
.feat-card::before { content:''; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(160deg,rgba(255,255,255,.07),transparent); pointer-events:none; opacity:.22; mix-blend-mode:screen; }
.feat-icon { width:54px; height:54px; border-radius:14px; display:grid; place-items:center; }
.feat-icon.green  { background:rgba(25,224,178,.12); border:1px solid rgba(25,224,178,.22); }
.feat-icon.blue   { background:rgba(37,99,235,.12);  border:1px solid rgba(37,99,235,.22); }
.feat-icon.purple { background:rgba(129,140,248,.1); border:1px solid rgba(129,140,248,.2); }
.feat-icon svg    { width:24px; height:24px; fill:none; stroke-width:1.8; }
.feat-icon.green  svg { stroke:var(--brand); }
.feat-icon.blue   svg { stroke:#93c5fd; }
.feat-icon.purple svg { stroke:var(--indigo); }
.feat-card h3 { font-size:clamp(16px,2vw,20px); }
.feat-card p  { color:var(--muted); font-size:13.5px; line-height:1.68; flex-grow:1; }
.feat-card .link-arrow { color:var(--brand); font-size:12px; font-weight:700; font-family:var(--fh); display:flex; align-items:center; gap:5px; margin-top:4px; cursor:pointer; width:fit-content; }
.feat-card .link-arrow:hover { opacity:.8; }

/* Testimonials */
.testi-sec  { padding:60px 0; }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.testi-card { border-radius:var(--radius); padding:26px; background:linear-gradient(160deg,rgba(255,255,255,.055),rgba(255,255,255,.018)); border:1px solid var(--border); box-shadow:0 16px 50px rgba(0,0,0,.4); }
.testi-stars { color:var(--brand); font-size:14px; margin-bottom:12px; letter-spacing:2px; }
.testi-card blockquote { font-size:14px; line-height:1.72; color:#d4d8e6; margin-bottom:16px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:11px; }
.testi-avatar { width:38px; height:38px; border-radius:999px; display:grid; place-items:center; font-family:var(--fh); font-weight:900; font-size:13px; flex-shrink:0; }
.testi-name  { font-weight:700; font-size:13px; font-family:var(--fh); }
.testi-role  { font-size:11.5px; color:var(--muted); }

/* CTA band */
.cta-band { padding:60px 0; }
.cta-band-inner {
  border-radius:28px; padding:56px 48px;
  background:linear-gradient(135deg,#0f2044 0%,#0a1628 50%,#0d1f3c 100%);
  border:1px solid rgba(37,99,235,.22);
  box-shadow:0 24px 70px rgba(0,0,0,.5), inset 0 1px 0 rgba(37,99,235,.2);
  text-align:center; position:relative; overflow:hidden;
}
.cta-band-inner::before {
  content:''; position:absolute; inset:0; border-radius:inherit;
  background:radial-gradient(ellipse at 50% 0%,rgba(37,99,235,.18) 0%,transparent 70%);
  pointer-events:none;
}
.cta-band-inner h2 { margin:10px 0 14px; position:relative; }
.cta-band-inner p  { color:var(--muted); max-width:50ch; margin:0 auto 28px; font-size:15px; position:relative; }
.cta-band-btns { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; position:relative; }

/* ════════════════════════════════
   PROGRAM PAGE
════════════════════════════════ */
.page-hero { padding:56px 0 48px; }
.page-hero-inner { max-width:750px; }
.page-hero h1  { margin:10px 0 16px; }
.page-hero .lead { color:var(--muted); font-size:clamp(14px,1.9vw,17px); line-height:1.72; max-width:55ch; }
.page-hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }

/* Two col info */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.info-card {
  border-radius:var(--radius); padding:32px 28px;
  background:linear-gradient(160deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border:1px solid var(--border);
  box-shadow:0 16px 50px rgba(0,0,0,.4);
  position:relative; overflow:hidden;
}
.info-card::before { content:''; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(160deg,rgba(255,255,255,.07),transparent); pointer-events:none; opacity:.18; mix-blend-mode:screen; }
.info-card h3   { margin:10px 0 14px; }
.info-card > p  { color:var(--muted); font-size:14px; line-height:1.72; margin-bottom:10px; }

/* Check list */
.cklist { list-style:none; display:grid; gap:10px; margin-top:8px; }
.cklist li { display:flex; align-items:flex-start; gap:9px; color:#c9cedb; font-size:13.5px; line-height:1.5; }
.cklist li::before { content:'✓'; color:var(--brand); font-weight:900; font-size:11px; width:18px; height:18px; border-radius:50%; display:grid; place-items:center; background:rgba(25,224,178,.12); flex-shrink:0; margin-top:1px; }

/* Breakdown sections */
.breakdown-sec { padding:56px 0; }
.breakdown-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:32px; align-items:center; }
.breakdown-grid.rev { direction:rtl; }
.breakdown-grid.rev > * { direction:ltr; }
.bd-visual { border-radius:var(--radius); padding:32px; display:flex; align-items:center; justify-content:center; min-height:240px; }
.bd-visual.green  { background:rgba(25,224,178,.06);  border:1px solid rgba(25,224,178,.13); }
.bd-visual.blue   { background:rgba(37,99,235,.06);   border:1px solid rgba(37,99,235,.14); }
.bd-visual.purple { background:rgba(129,140,248,.06); border:1px solid rgba(129,140,248,.12); }
.bd-checks { list-style:none; display:grid; gap:14px; }
.bd-checks li { display:flex; align-items:flex-start; gap:12px; }
.bd-ico { width:36px; height:36px; min-width:36px; border-radius:999px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.18); flex-shrink:0; }
.bd-ico svg { width:16px; height:16px; fill:none; stroke:var(--brand); stroke-width:1.8; }
.bd-ico.purple svg { stroke:var(--indigo); }
.bd-ico.blue svg { stroke:#93c5fd; }
.bd-ct h4 { font-size:13.5px; font-weight:700; color:#fff; margin-bottom:3px; font-family:var(--fh); }
.bd-ct p  { font-size:12.5px; color:rgba(255,255,255,.6); }
.sec-pad { padding:56px 0; }

/* ════════════════════════════════
   CURRICULUM PAGE
════════════════════════════════ */
.days-hero { padding:52px 0 44px; }
.days-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.day-card {
  border-radius:var(--radius); padding:28px 24px;
  background:linear-gradient(160deg,#131318,#0c0c10);
  border:1px solid var(--border);
  box-shadow:0 16px 50px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
  position:relative; overflow:hidden;
}
.day-card::after { content:''; position:absolute; top:0; right:0; width:60px; height:60px; border-radius:0 var(--radius) 0 60px; background:rgba(25,224,178,.06); }
.day-number {
  font-family:var(--fh); font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  color:var(--brand); margin-bottom:9px; display:flex; align-items:center; gap:7px;
}
.day-number::after { content:''; flex:1; height:1px; background:rgba(25,224,178,.2); }
.day-card h3  { font-size:clamp(16px,2vw,20px); margin-bottom:10px; }
.day-card p   { color:var(--muted); font-size:13.5px; line-height:1.68; margin-bottom:14px; }
.day-topics   { list-style:none; display:grid; gap:6px; }
.day-topics li { display:flex; align-items:center; gap:8px; color:#c9cedb; font-size:12.5px; }
.day-topics li::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--brand); flex-shrink:0; }

/* Timeline */
.timeline-sec { padding:56px 0; }
.timeline { display:grid; gap:0; position:relative; }
.timeline::before { content:''; position:absolute; left:24px; top:0; bottom:0; width:1px; background:linear-gradient(to bottom, var(--brand), rgba(25,224,178,.1)); }
.tl-item { display:flex; gap:20px; padding:0 0 32px 0; }
.tl-dot  { width:48px; height:48px; border-radius:999px; background:rgba(25,224,178,.1); border:2px solid rgba(25,224,178,.3); display:grid; place-items:center; flex-shrink:0; font-family:var(--fh); font-weight:900; font-size:14px; color:var(--brand); position:relative; z-index:2; }
.tl-body { padding-top:10px; flex:1; }
.tl-body h4 { font-size:15px; margin-bottom:5px; color:#fff; font-family:var(--fh); }
.tl-body p  { color:var(--muted); font-size:13px; line-height:1.65; }

/* Format pills */
.fmt-bar  { display:flex; flex-wrap:wrap; gap:10px; margin-top:32px; }
.fmt-pill {
  display:flex; align-items:center; gap:7px; padding:9px 16px; border-radius:999px;
  background:rgba(255,255,255,.05); border:1px solid var(--border);
  color:#c9cedb; font-size:12px; font-weight:600; font-family:var(--fh);
}
.fmt-pill svg { width:13px; height:13px; fill:none; stroke:var(--brand); stroke-width:2; }

/* ════════════════════════════════
   BATCHES PAGE
════════════════════════════════ */
.batches-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:36px; }
.batch-card {
  border-radius:var(--radius); padding:28px;
  background:linear-gradient(160deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border:1px solid var(--border);
  box-shadow:0 16px 50px rgba(0,0,0,.4);
  position:relative; overflow:hidden;
}
.batch-card.featured { border-color:rgba(25,224,178,.28); box-shadow:0 16px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(25,224,178,.1); }
.batch-header { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:18px; }
.batch-badge { font-family:var(--fh); font-size:10px; font-weight:800; padding:.28rem .75rem; border-radius:999px; text-transform:uppercase; letter-spacing:.08em; }
.batch-badge.open    { background:rgba(25,224,178,.12); color:var(--brand); border:1px solid rgba(25,224,178,.22); }
.batch-badge.filling { background:rgba(251,146,60,.1); color:#fb923c; border:1px solid rgba(251,146,60,.22); }
.batch-badge.soon    { background:rgba(129,140,248,.1); color:var(--indigo); border:1px solid rgba(129,140,248,.2); }
.batch-title   { font-family:var(--fh); font-size:18px; font-weight:800; margin-bottom:4px; }
.batch-dates   { color:var(--brand); font-size:13px; font-weight:600; font-family:var(--fh); }
.batch-details { display:grid; gap:8px; margin:16px 0; }
.batch-row     { display:flex; align-items:center; gap:10px; color:#c9cedb; font-size:13px; }
.batch-row svg { width:14px; height:14px; fill:none; stroke:var(--muted); stroke-width:1.8; flex-shrink:0; }
.batch-seats   { display:flex; align-items:center; gap:8px; margin:16px 0 18px; }
.seat-bar      { flex:1; height:5px; border-radius:999px; background:rgba(255,255,255,.1); overflow:hidden; }
.seat-fill     { height:100%; border-radius:999px; background:var(--brand); transition:width .6s ease; }
.seat-text     { font-size:11px; color:var(--muted); font-family:var(--fh); white-space:nowrap; }

/* Pricing */
.pricing-sec  { padding:60px 0; }
.pricing-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; max-width:760px; margin:0 auto; }
.price-card {
  border-radius:var(--radius); padding:32px 28px;
  background:linear-gradient(160deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border:1px solid var(--border); text-align:center;
  box-shadow:0 16px 50px rgba(0,0,0,.4);
}
.price-card.highlight { border-color:rgba(25,224,178,.28); background:linear-gradient(160deg,rgba(25,224,178,.07),rgba(25,224,178,.02)); }
.price-amount { font-family:var(--fh); font-size:clamp(32px,5vw,48px); font-weight:900; color:var(--brand); line-height:1; margin:12px 0 4px; }
.price-period { color:var(--muted); font-size:13px; margin-bottom:18px; }
.price-feats  { list-style:none; display:grid; gap:9px; margin:18px 0 22px; text-align:left; }
.price-feats li { display:flex; align-items:flex-start; gap:8px; font-size:13px; color:#c9cedb; }
.price-feats li::before { content:'✓'; color:var(--brand); font-weight:900; flex-shrink:0; }

/* ════════════════════════════════
   MENTOR PAGE
════════════════════════════════ */
.mentor-hero { display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:center; padding:56px 0 48px; }
.mentor-visual { border-radius:var(--radius); overflow:hidden; min-height:380px; background:linear-gradient(135deg,#0f2044,#0d1f3c); border:1px solid rgba(37,99,235,.2); display:flex; align-items:center; justify-content:center; }
.mentor-avatar-lg { width:160px; height:160px; border-radius:999px; background:linear-gradient(135deg,var(--brand),#0059ff); display:grid; place-items:center; font-size:52px; font-family:var(--fh); font-weight:900; color:#0b1f17; box-shadow:0 16px 50px rgba(25,224,178,.3); }
.mentor-name   { font-size:clamp(24px,4vw,44px); font-weight:900; margin:8px 0 4px; }
.mentor-title  { color:var(--brand); font-size:14px; font-weight:700; margin-bottom:18px; font-family:var(--fh); }
.mentor-bio    { color:var(--muted); font-size:15px; line-height:1.78; margin-bottom:12px; }
.mentor-quote  { border-left:3px solid var(--brand); padding-left:18px; color:var(--brand); font-size:14px; font-style:italic; font-weight:600; line-height:1.65; margin:20px 0; }
.skills-grid   { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:32px; }
.skill-pill    { border-radius:10px; padding:14px 16px; background:rgba(255,255,255,.04); border:1px solid var(--border); font-family:var(--fh); font-size:12.5px; font-weight:700; color:var(--ink); text-align:center; }

/* ════════════════════════════════
   FAQ PAGE
════════════════════════════════ */
.faq-sec  { padding:56px 0; }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; align-items:start; }
.faq-item { border-radius:14px; overflow:hidden; border:1px solid var(--border); background:rgba(255,255,255,.03); }
.faq-q    {
  padding:18px 20px; display:flex; align-items:center; justify-content:space-between; gap:12px;
  cursor:pointer; font-family:var(--fh); font-size:14px; font-weight:700; color:var(--ink);
  transition:background .18s; user-select:none;
}
.faq-q:hover   { background:rgba(255,255,255,.04); }
.faq-q svg     { width:16px; height:16px; fill:none; stroke:var(--muted); stroke-width:2; flex-shrink:0; transition:transform .25s; }
.faq-q.open svg { transform:rotate(45deg); stroke:var(--brand); }
.faq-a         { display:none; padding:0 20px 18px; color:var(--muted); font-size:13.5px; line-height:1.72; }
.faq-a.open    { display:block; }

/* ════════════════════════════════
   CONTACT PAGE
════════════════════════════════ */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:start; padding:56px 0; }
.contact-info h2    { margin-bottom:14px; }
.contact-info .sub  { color:var(--muted); font-size:15px; line-height:1.72; margin-bottom:32px; }
.contact-methods    { display:grid; gap:14px; }
.contact-method     { display:flex; align-items:flex-start; gap:14px; padding:18px; border-radius:14px; background:rgba(255,255,255,.03); border:1px solid var(--border); }
.contact-method-ico { width:42px; height:42px; border-radius:11px; display:grid; place-items:center; flex-shrink:0; }
.contact-method-ico.green  { background:rgba(25,224,178,.1);  border:1px solid rgba(25,224,178,.18); }
.contact-method-ico.blue   { background:rgba(37,99,235,.1);   border:1px solid rgba(37,99,235,.18); }
.contact-method-ico.purple { background:rgba(129,140,248,.1); border:1px solid rgba(129,140,248,.18); }
.contact-method-ico svg    { width:18px; height:18px; fill:none; stroke-width:1.8; }
.contact-method-ico.green  svg { stroke:var(--brand); }
.contact-method-ico.blue   svg { stroke:#93c5fd; }
.contact-method-ico.purple svg { stroke:var(--indigo); }
.contact-method h4  { font-size:13px; margin-bottom:3px; }
.contact-method p   { color:var(--muted); font-size:12.5px; }
.contact-method a   { color:var(--brand); font-size:13px; font-weight:600; }

.contact-form-card {
  border-radius:var(--radius); padding:32px 28px;
  background:linear-gradient(160deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border:1px solid var(--border);
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}
.contact-form-card h3 { margin-bottom:20px; }

/* ════════════════════════════════
   ENROLL PAGE
════════════════════════════════ */
.enroll-grid { display:grid; grid-template-columns:1fr 1.1fr; gap:32px; align-items:start; padding:52px 0 64px; }
.enroll-info h2    { margin:8px 0 14px; }
.enroll-info .sub  { color:var(--muted); font-size:15px; line-height:1.72; margin-bottom:28px; }
.enroll-includes   { list-style:none; display:grid; gap:11px; margin-bottom:28px; }
.enroll-includes li { display:flex; align-items:center; gap:10px; font-size:14px; color:#d4d8e6; }
.enroll-includes li .ei { width:22px; height:22px; border-radius:6px; background:rgba(25,224,178,.12); display:grid; place-items:center; flex-shrink:0; font-size:12px; }
.guarantee { border-radius:14px; padding:18px; background:rgba(25,224,178,.06); border:1px solid rgba(25,224,178,.18); display:flex; align-items:flex-start; gap:12px; margin-top:20px; }
.guarantee-ico { font-size:22px; flex-shrink:0; }
.guarantee h4   { font-size:13px; margin-bottom:4px; color:var(--brand); font-family:var(--fh); }
.guarantee p    { font-size:12px; color:var(--muted); line-height:1.5; }

.enroll-form-card {
  border-radius:var(--radius); padding:36px 32px;
  background:linear-gradient(160deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border:1px solid var(--border);
  box-shadow:0 24px 70px rgba(0,0,0,.5);
  position:relative; overflow:hidden;
}
.enroll-form-card::before { content:''; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(160deg,rgba(255,255,255,.07),transparent); pointer-events:none; opacity:.16; mix-blend-mode:screen; }
.enroll-form-card h3   { font-size:clamp(16px,2.2vw,20px); margin-bottom:5px; }
.enroll-form-card > p  { color:var(--muted); font-size:12.5px; margin-bottom:22px; }
.price-tag { display:inline-flex; align-items:baseline; gap:5px; margin-bottom:20px; }
.price-big { font-family:var(--fh); font-size:36px; font-weight:900; color:var(--brand); }
.price-sub { color:var(--muted); font-size:13px; }
.form-row  { display:grid; grid-template-columns:1fr 1fr; gap:12px; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer { border-top:1px solid var(--border); padding:48px 0 24px; margin-top:40px; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; margin-bottom:40px; }
.footer-brand h3 { font-size:16px; margin-bottom:8px; }
.footer-brand p  { color:var(--muted); font-size:13px; line-height:1.7; max-width:26ch; }
.footer-col h5   { font-family:var(--fh); font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:14px; }
.footer-col ul   { list-style:none; display:grid; gap:9px; }
.footer-col ul a { color:#94a3b8; font-size:13px; transition:color .15s; }
.footer-col ul a:hover { color:var(--ink); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; padding-top:24px; border-top:1px solid var(--border); }
.footer-copy   { color:#64748b; font-size:12.5px; }
.footer-links  { display:flex; gap:20px; }
.footer-links a { color:#64748b; font-size:12px; }
.footer-links a:hover { color:var(--ink); }
.footer-logo   { display:flex; align-items:center; gap:8px; font-family:var(--fh); font-weight:900; font-size:14px; margin-bottom:10px; }
.footer-logo-dot { width:24px; height:24px; border-radius:7px; background:linear-gradient(135deg,var(--brand),#00b88a); display:grid; place-items:center; }
.footer-logo-dot svg { width:12px; height:12px; fill:none; stroke:#fff; stroke-width:2.5; }

/* ════════════════════════════════
   TOAST / SUCCESS
════════════════════════════════ */
.toast {
  position:fixed; bottom:24px; right:24px; z-index:200;
  padding:14px 20px; border-radius:12px;
  background:#1a2e1a; border:1px solid rgba(25,224,178,.3);
  color:#fff; font-family:var(--fh); font-size:14px; font-weight:700;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  display:flex; align-items:center; gap:10px;
  transform:translateY(80px); opacity:0;
  transition:transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s;
}
.toast.show { transform:translateY(0); opacity:1; }
.toast-icon { font-size:18px; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width:1024px) {
  .hero-grid          { grid-template-columns:1fr; padding:38px 20px 42px; }
  .mentor-hero        { grid-template-columns:1fr; }
  .footer-grid        { grid-template-columns:1fr 1fr; }
  .enroll-grid        { grid-template-columns:1fr; }
  .contact-grid       { grid-template-columns:1fr; }
  .two-col            { grid-template-columns:1fr; }
  .breakdown-grid     { grid-template-columns:1fr; }
  .breakdown-grid.rev { direction:ltr; }
  .bd-visual          { display:none; }
}
@media (max-width:768px) {
  .nav-links, .nav-cta { display:none; }
  .hamburger            { display:flex; }
  .hero-card            { border-radius:20px; }
  .stats-grid           { grid-template-columns:repeat(2,1fr); }
  .stat-item:first-child { border-radius:var(--radius) var(--radius) 0 0; }
  .stat-item:last-child  { border-radius:0 0 var(--radius) var(--radius); }
  .feat-grid            { grid-template-columns:1fr; }
  .testi-grid           { grid-template-columns:1fr; }
  .batches-grid         { grid-template-columns:1fr; }
  .pricing-grid         { grid-template-columns:1fr; }
  .days-grid            { grid-template-columns:1fr; }
  .faq-grid             { grid-template-columns:1fr; }
  .skills-grid          { grid-template-columns:repeat(2,1fr); }
  .cta-band-inner       { padding:36px 24px; }
  .footer-grid          { grid-template-columns:1fr; gap:24px; }
  .footer-bottom        { flex-direction:column; align-items:flex-start; }
  .form-row             { grid-template-columns:1fr; }
  .hero-actions .btn    { flex:1; min-width:140px; }
  .page-hero-actions    { flex-direction:column; }
  .page-hero-actions .btn { width:100%; }
}
@media (max-width:480px) {
  .wrap               { width:96%; }
  .hero-grid          { padding:28px 14px 32px; }
  .hero-form          { padding:20px 16px; }
  .hero-actions       { flex-direction:column; }
  .hero-actions .btn  { width:100%; }
  .hero-trust         { flex-direction:column; gap:5px; }
  .stats-grid         { grid-template-columns:1fr 1fr; }
  .cta-band-btns      { flex-direction:column; }
  .cta-band-btns .btn { width:100%; }
  .enroll-form-card   { padding:24px 18px; }
  .contact-form-card  { padding:24px 18px; }
}
