/* ===========================================================
   Doctor of Laxmi v2  (dark, gold-forward, premium)
   Font: Plus Jakarta Sans
   =========================================================== */

:root {
  /* base */
  --bg:        #07080d;          /* near-black navy */
  --bg-2:      #0b0d15;          /* section band */
  --panel:     #0f1119;          /* card base */
  --panel-2:   #131623;          /* raised card */
  --line:      rgba(255,255,255,0.08);
  --line-soft: rgba(255,255,255,0.05);

  /* ink */
  --ink:       #f4f4f7;          /* headings */
  --ink-soft:  #c6c8d2;          /* body */
  --ink-mute:  #8d909e;          /* secondary */
  --ink-fade:  #5e616e;          /* labels */

  /* gold accent */
  --gold:      #e3b765;
  --gold-bright:#f2cf86;
  --gold-deep: #c79341;
  --gold-soft: rgba(227,183,101,0.12);
  --gold-line: rgba(227,183,101,0.30);

  /* gradient for highlighted words */
  --grad: linear-gradient(95deg, #f2cf86 0%, #e3b765 45%, #d9a85a 100%);
  /* warm glow */
  --glow: radial-gradient(60% 60% at 50% 0%, rgba(227,183,101,0.14) 0%, rgba(227,183,101,0) 70%);

  --max:    1180px;
  --gutter: clamp(20px, 4vw, 44px);
  --radius: 18px;
  --shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px -28px rgba(0,0,0,0.8);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(227,183,101,0.25); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}
:focus:not(:focus-visible) { outline: none; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--band { background: var(--bg-2); }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }

/* ---------- typography ---------- */
h1, h2, h3 { color: var(--ink); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold-line);
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--ink-mute); }

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

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn--primary {
  background: var(--grad); color: #1a1407;
  box-shadow: 0 10px 30px -10px rgba(227,183,101,0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(227,183,101,0.7); }

.btn--ghost {
  background: rgba(255,255,255,0.03); color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold-line); background: rgba(227,183,101,0.06); transform: translateY(-2px); }

.btn--block { width: 100%; justify-content: center; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,8,13,0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; font-size: 18.5px; white-space: nowrap; flex: none; }
.brand .grad { font-weight: 800; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 15px; font-weight: 600; color: var(--ink-mute); transition: color .18s ease; }
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__cta { display: inline-flex; }
/* keep CTA text dark on the gold gradient (beats the grey .nav__links a colour) */
.nav__links a.nav__cta { color: #1a1407; }
.nav__burger { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(72px, 11vw, 150px) 0 clamp(60px, 8vw, 110px); overflow: hidden; text-align: center; }
.hero::before {
  content: ""; position: absolute; inset: 0; background: var(--glow); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 35%, #000 0%, transparent 75%);
          mask-image: radial-gradient(70% 60% at 50% 35%, #000 0%, transparent 75%);
}
.hero__inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; }
.hero h1 { margin-bottom: 26px; font-size: clamp(1.9rem, 4.2vw, 3.3rem); }
.hero .lead { margin: 0 auto 36px; text-align: center; max-width: 70ch; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__trust { margin-top: 40px; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; color: var(--ink-fade); font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---------- inner page hero ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(86px, 12vw, 150px) 0 clamp(48px, 6vw, 80px); text-align: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: var(--glow); pointer-events: none; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.45;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000 0%, transparent 78%); mask-image: radial-gradient(70% 70% at 50% 30%, #000 0%, transparent 78%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 840px; margin: 0 auto; }
.page-hero h1 { margin-bottom: 22px; font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.page-hero .lead { margin: 0 auto; text-align: center; }

/* ---------- prose ---------- */
.prose { max-width: 720px; }
.prose.center { margin: 0 auto; }
.prose p { margin-bottom: 20px; color: var(--ink-soft); font-size: 17px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 700; }
.callout {
  border-left: 2px solid var(--gold-line); background: linear-gradient(90deg, rgba(227,183,101,0.08), transparent);
  padding: 22px 26px; border-radius: 0 12px 12px 0; margin: 30px 0;
}
.callout p { color: var(--ink); font-size: 17.5px; margin-bottom: 0; }

/* ---------- about layout ---------- */
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; }
.about-grid img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }
.cred-list { list-style: none; display: grid; gap: 12px; }
.cred-list li { position: relative; padding-left: 24px; font-size: 15.5px; color: var(--ink-soft); }
.cred-list li::before { content: "\2014"; position: absolute; left: 0; color: var(--gold); }

/* ---------- proof stories ---------- */
.story { padding: 32px; }
.story__metrics { display: flex; flex-wrap: wrap; gap: 28px; margin: 22px 0 8px; }
.story__metrics .m .v { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.story__metrics .m .k { font-size: 13px; color: var(--ink-mute); margin-top: 2px; }
.story ul { list-style: none; display: grid; gap: 10px; margin-top: 18px; }
.story li { position: relative; padding-left: 24px; font-size: 15.5px; color: var(--ink-soft); }
.story li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-method { display: flex; gap: 16px; align-items: center; }
.contact-method .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); }
.contact-method .ic svg { width: 22px; height: 22px; }
.contact-method .k { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-fade); }
.contact-method .v { font-size: 16.5px; color: var(--ink); font-weight: 600; }
.contact-method:hover .v { color: var(--gold); }
@media (max-width: 760px) { .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- generic card grids ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.card:hover { border-color: var(--gold-line); transform: translateY(-3px); }

/* symptom / checklist cards */
.check-card { display: flex; gap: 14px; align-items: flex-start; }
.check-card .ic {
  flex: none; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold); font-size: 15px; margin-top: 1px;
}
.check-card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- cost of delay ---------- */
.cost-card { text-align: left; }
.cost-card h3 { color: var(--gold); margin-bottom: 8px; }
.cost-card p { color: var(--ink-mute); font-size: 15.5px; }

/* ---------- before / after ---------- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ba__col { border-radius: var(--radius); border: 1px solid var(--line); padding: 30px; }
.ba__col--before { background: var(--panel); }
.ba__col--after { background: linear-gradient(180deg, rgba(227,183,101,0.08), rgba(227,183,101,0.02)); border-color: var(--gold-line); }
.ba__tag { font-size: 12.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; }
.ba__col--before .ba__tag { color: var(--ink-fade); }
.ba__col--after .ba__tag { color: var(--gold); }
.ba__list { list-style: none; display: grid; gap: 13px; }
.ba__list li { position: relative; padding-left: 26px; font-size: 15.5px; }
.ba__list li::before { position: absolute; left: 0; top: 0; }
.ba__col--before .ba__list li::before { content: "\2715"; color: var(--ink-fade); font-size: 13px; top: 1px; }
.ba__col--after .ba__list li { color: var(--ink-soft); }
.ba__col--after .ba__list li::before { content: "\2713"; color: var(--gold); font-weight: 800; }

/* ---------- proof ---------- */
.metrics { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.metric {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; text-align: left;
}
.metric .big { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1.05; }
.metric .big .grad { font-weight: 800; }
.metric .lbl { margin-top: 10px; font-size: 13.5px; color: var(--ink-mute); line-height: 1.4; }
.proof-note { margin-top: 28px; text-align: center; color: var(--gold); font-weight: 700; font-size: 15.5px; }

.proof-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.proof-photos figure { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.proof-photos img { width: 100%; height: 200px; object-fit: cover; filter: saturate(1.02); }
.proof-photos figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 14px 11px;
  font-size: 12.5px; color: #e8e8ee; font-weight: 600;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
}

/* founder strip */
.founder { display: grid; grid-template-columns: 150px 1fr; gap: 28px; align-items: center; margin-top: 40px;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.founder img { width: 150px; height: 150px; object-fit: cover; border-radius: 14px; }
.founder h3 { margin-bottom: 8px; }
.founder p { font-size: 15.5px; color: var(--ink-mute); }

/* ---------- modules ---------- */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.module { position: relative; }
.module .num { font-size: 13px; font-weight: 800; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 14px; display: block; }
.module h3 { margin-bottom: 10px; font-size: 1.18rem; }
.module p { font-size: 15px; color: var(--ink-mute); }
.module--wide { grid-column: span 1; }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.price-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; height: 100%;
}
.price-card--feature {
  background: linear-gradient(180deg, rgba(227,183,101,0.10), rgba(227,183,101,0.02));
  border-color: var(--gold-line); box-shadow: 0 30px 70px -34px rgba(227,183,101,0.4);
}
.price-card__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); font-size: 22px; margin-bottom: 20px; }
.price-card__label { font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.price-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.price-card__desc { font-size: 14.5px; color: var(--ink-mute); min-height: 66px; }
.price-card__price { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-card__price .amt { font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.price-card__price .gst { font-size: 14px; font-weight: 600; color: var(--ink-mute); }
.price-card__dur { font-size: 13.5px; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
.price-card__incl-h { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-fade); margin: 8px 0 14px; }
.price-card ul { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; }
.price-card li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--ink-soft); }
.price-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.price-card .btn { margin-top: auto; }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; }
.step .num {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  border: 1px solid var(--gold-line); color: var(--gold); font-weight: 800; font-size: 16px; margin-bottom: 18px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--ink-mute); }

/* ---------- for you / not for you ---------- */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit__col { border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); }
.fit__col--yes { background: linear-gradient(180deg, rgba(227,183,101,0.08), rgba(227,183,101,0.02)); border-color: var(--gold-line); }
.fit__col--no { background: var(--panel); }
.fit__col h3 { margin-bottom: 20px; font-size: 1.25rem; }
.fit__list { list-style: none; display: grid; gap: 13px; }
.fit__list li { position: relative; padding-left: 28px; font-size: 15.5px; }
.fit__list li::before { position: absolute; left: 0; top: 0; font-weight: 800; }
.fit__col--yes .fit__list li::before { content: "\2713"; color: var(--gold); }
.fit__col--no .fit__list li { color: var(--ink-mute); }
.fit__col--no .fit__list li::before { content: "\2715"; color: var(--ink-fade); font-size: 13px; top: 2px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.faq details[open] { border-color: var(--gold-line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--ink);
  font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 24px; font-weight: 400; transition: transform .2s ease; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 22px; color: var(--ink-mute); font-size: 15.5px; }

/* ---------- final CTA ---------- */
.final { text-align: center; position: relative; overflow: hidden; }
.final::before { content: ""; position: absolute; inset: 0; background: var(--glow); pointer-events: none; }
.final__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.final h2 { margin-bottom: 22px; }
.final p { margin: 0 auto 34px; max-width: 60ch; }
.final__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- positioning line ---------- */
.positioning { text-align: center; }
.positioning p { max-width: 72ch; margin: 0 auto; font-size: clamp(1.15rem, 1.9vw, 1.55rem); color: var(--ink); font-weight: 600; line-height: 1.45; letter-spacing: -0.02em; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 72px) 0 36px; background: var(--bg-2); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.1fr; gap: 36px; margin-bottom: 40px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { font-size: 14.5px; color: var(--ink-mute); max-width: 42ch; }
.footer h4 { font-size: 12.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-fade); margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; font-size: 14.5px; color: var(--ink-mute); margin-bottom: 11px; transition: color .18s ease; }
.footer__col a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 12px; margin-top: 4px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--ink-mute); transition: all .18s ease;
}
.footer__social a:hover { border-color: var(--gold-line); color: var(--gold); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid var(--line-soft); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--ink-fade); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .modules, .grid-3, .pricing, .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 22px var(--gutter); gap: 18px;
  }
  .nav__links.open .nav__cta { display: inline-flex; margin-top: 6px; }
}
@media (max-width: 760px) {
  .grid-2, .ba, .fit, .modules, .grid-3, .pricing, .steps, .proof-photos { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .founder { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero__cta .btn, .final__cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  .metrics { grid-template-columns: 1fr; }
}

/* ---------- program-page (Akshat-style) components ---------- */
.badge { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: var(--ink); background: rgba(255,255,255,0.04); border: 1px solid var(--gold-line); border-radius: 999px; padding: 8px 16px; margin-bottom: 22px; }
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 720px; margin: 40px auto 0; }
.stat-box { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px 18px; text-align: center; }
.stat-box .v { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.stat-box .v .grad { font-weight: 800; }
.stat-box .k { font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-fade); margin-top: 6px; }

/* connected 3-stage flow */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.flow::before { content: ""; position: absolute; top: 28px; left: 16.6%; right: 16.6%; height: 2px; background: linear-gradient(90deg, var(--gold-line), var(--gold), var(--gold-line)); opacity: 0.5; }
.flow__col { text-align: center; position: relative; }
.flow__node { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 20px; border: 1px solid var(--gold-line); background: var(--bg); color: var(--gold); font-weight: 800; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--bg); }
.flow__kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.flow__title { font-size: 1.25rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip { font-size: 13px; font-weight: 600; color: var(--ink-soft); background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; }

/* module/bootcamp cards with checklist */
.mod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.mod-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: border-color .2s ease; }
.mod-card:hover { border-color: var(--gold-line); }
.mod-card .num { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.mod-card h3 { font-size: 1.3rem; margin: 12px 0 12px; }
.mod-card > p { color: var(--ink-mute); font-size: 15px; margin-bottom: 18px; }
.mod-card ul { list-style: none; display: grid; gap: 11px; }
.mod-card li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink-soft); }
.mod-card li::before { content: "\2713"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); font-size: 11px; font-weight: 800; display: grid; place-items: center; }

/* deliverables / outcomes */
.deliver { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: start; }
.deliver__list { list-style: none; display: grid; gap: 24px; }
.deliver__list li { position: relative; padding-left: 42px; }
.deliver__list li::before { content: "\2713"; position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--gold-soft); color: var(--gold); font-weight: 800; display: grid; place-items: center; }
.deliver__list h4 { font-size: 1.05rem; color: var(--ink); margin-bottom: 5px; }
.deliver__list p { font-size: 14.5px; color: var(--ink-mute); }
.deliver__visual { position: sticky; top: 92px; background: linear-gradient(180deg, rgba(227,183,101,0.10), rgba(227,183,101,0.02)); border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 32px; }
.deliver__visual .v-stat { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.deliver__visual .v-stat .grad { font-weight: 800; }
.deliver__visual .v-k { font-size: 13.5px; color: var(--ink-mute); margin-top: 4px; }
.deliver__visual hr { border: 0; border-top: 1px solid var(--gold-line); margin: 22px 0; opacity: 0.5; }

/* dual Enrollment / Investment pricing */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.duo__card { border-radius: var(--radius); padding: 36px; border: 1px solid var(--line); background: var(--panel); display: flex; flex-direction: column; }
.duo__card--invest { background: radial-gradient(120% 120% at 50% 0%, rgba(227,183,101,0.12), rgba(15,17,25,0.6)); border-color: var(--gold-line); }
.duo__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); font-size: 20px; margin-bottom: 18px; }
.duo__label { font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.duo__card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.duo__card p { color: var(--ink-mute); font-size: 15px; margin-bottom: 16px; }
.fee-box { background: rgba(0,0,0,0.25); border: 1px solid var(--gold-line); border-radius: 14px; padding: 24px; margin: 8px 0 22px; }
.fee-box .fee-k { font-size: 11.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-fade); margin-bottom: 8px; }
.fee-box .fee-amt { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.fee-box .fee-gst { font-size: 14px; font-weight: 600; color: var(--ink-mute); margin-left: 8px; }
.fee-box .fee-sub { font-size: 14px; color: var(--ink-mute); margin-top: 12px; margin-bottom: 0; }
.duo__card .btn { margin-top: auto; }
.duo__list { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.duo__list li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--ink-soft); }
.duo__list li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

@media (max-width: 860px) {
  .deliver { grid-template-columns: 1fr; gap: 28px; }
  .deliver__visual { position: static; }
}
@media (max-width: 760px) {
  .flow { grid-template-columns: 1fr; gap: 30px; }
  .flow::before { display: none; }
  .mod-grid, .duo, .stat-row { grid-template-columns: 1fr; }
}

/* ---------- breadcrumbs ---------- */
.crumbs { padding: 18px 0 0; font-size: 13.5px; color: var(--ink-fade); }
.crumbs a { color: var(--ink-mute); } .crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 8px; color: var(--ink-fade); }

/* ---------- nav: tighter for more items ---------- */
.nav__links { gap: 24px; }

/* ---------- tool cards (hub) ---------- */
.tool-card { display: flex; flex-direction: column; padding: 32px; }
.tool-card .price-card__ic { margin-bottom: 18px; }
.tool-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.tool-card p { color: var(--ink-mute); font-size: 15.5px; margin-bottom: 22px; }
.tool-card .btn { margin-top: auto; }

/* ---------- forms / calculator ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 28px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field select {
  width: 100%; padding: 13px 15px; font-size: 16px; font-family: inherit;
  color: var(--ink); background: #0b0d15; border: 1px solid var(--line); border-radius: 10px;
  transition: border-color .18s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold-line); }
.calc-panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,4vw,38px); }
.calc-result {
  background: linear-gradient(180deg, rgba(227,183,101,0.10), rgba(227,183,101,0.02));
  border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 30px; margin-top: 26px;
}
.calc-result .big { font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.calc-result .sub { color: var(--ink-mute); font-size: 14.5px; margin-top: 4px; }
.calc-result ul { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.calc-result li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--ink-soft); }
.calc-result li::before { content: "\2192"; position: absolute; left: 0; color: var(--gold); }
.calc-disclaimer { font-size: 12.5px; color: var(--ink-fade); margin-top: 18px; }

/* ---------- scorecard ---------- */
.sc-q { padding: 22px 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); margin-bottom: 14px; }
.sc-q > p { font-weight: 700; color: var(--ink); margin-bottom: 14px; font-size: 16px; }
.sc-scale { display: flex; flex-wrap: wrap; gap: 8px; }
.sc-scale label { cursor: pointer; }
.sc-scale input { position: absolute; opacity: 0; }
.sc-scale .opt {
  display: inline-flex; align-items: center; justify-content: center; min-width: 44px; padding: 9px 12px;
  border: 1px solid var(--line); border-radius: 9px; font-size: 14px; font-weight: 600; color: var(--ink-mute);
  transition: all .15s ease;
}
.sc-scale label:hover .opt { border-color: var(--gold-line); color: var(--ink); }
.sc-scale input:checked + .opt { background: var(--grad); color: #1a1407; border-color: transparent; }
.sc-ends { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-fade); margin-top: 8px; }
.sc-result { background: linear-gradient(180deg, rgba(227,183,101,0.10), rgba(227,183,101,0.02)); border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 30px; position: sticky; top: 92px; }
.sc-score { font-size: 3rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.sc-band { font-size: 1.25rem; font-weight: 800; color: var(--gold); margin-top: 10px; }
.sc-band-desc { color: var(--ink-soft); font-size: 15px; margin-top: 8px; }

/* ---------- insights ---------- */
.cat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.cat-chip { font-size: 13px; font-weight: 600; color: var(--gold); background: var(--gold-soft); border: 1px solid var(--gold-line); border-radius: 999px; padding: 7px 14px; }
.insight-card { display: flex; flex-direction: column; padding: 26px; }
.insight-card .tag { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.insight-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.insight-card p { color: var(--ink-mute); font-size: 15px; margin-bottom: 18px; }
.insight-card .more { margin-top: auto; color: var(--gold); font-weight: 700; font-size: 14.5px; }
.article-meta { color: var(--ink-fade); font-size: 14px; margin-bottom: 26px; }
.article .prose h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.article .prose h2:first-child { margin-top: 0; }

/* ---------- floating WhatsApp button ---------- */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 38px -10px rgba(37,211,102,0.7); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5); animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (max-width: 760px) { .wa-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; } .wa-fab svg { width: 27px; height: 27px; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
