/* ════════════════════════════════════════════════════════════════
   sections.css — full landing page IA
   ════════════════════════════════════════════════════════════════ */

/* ═══ HERO ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;          /* sits ABOVE the .hero-video to act as the dark veil */
  pointer-events: none;
  background:
    /* center reading-zone darken (so headline + CTAs stay legible over footage) */
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(12, 4, 32, 0.72), rgba(12, 4, 32, 0.55) 70%, rgba(12, 4, 32, 0.55) 100%),
    /* gold warm bleed top-left */
    radial-gradient(ellipse 1200px 800px at 20% 30%, rgba(244, 200, 66, 0.14), transparent 55%),
    /* teal cool bleed right */
    radial-gradient(ellipse 1000px 700px at 85% 50%, rgba(13, 107, 138, 0.14), transparent 60%),
    /* magenta bottom */
    radial-gradient(ellipse 900px 600px at 50% 100%, rgba(192, 38, 211, 0.16), transparent 60%),
    /* solid dark base — fallback only; video sits at z:0 below */
    rgba(12, 4, 32, 0.62);
}
.hero-inner { position: relative; z-index: 3; }
.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  background: rgba(244, 200, 66, 0.06);
  border: 1px solid rgba(244, 200, 66, 0.22);
  border-radius: var(--r-pill);
  backdrop-filter: blur(12px);
  margin-bottom: 48px;
}
.hero-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
  animation: pulse 2s ease-in-out infinite;
}
.hero-pill .label {
  font-family: var(--mono);
  font-size: var(--t-mono-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
}
.hero-pill .divider {
  width: 1px;
  height: 14px;
  background: rgba(244, 200, 66, 0.32);
}
.hero-pill .meta {
  font-family: var(--mono);
  font-size: var(--t-mono-xs);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.hero h1 {
  font-family: var(--display);
  font-size: var(--t-h1);
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: #fff;
  margin-bottom: 48px;
  max-width: 1100px;
}
.hero h1 .l1 { display: block; }
.hero h1 .l2 {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin: 0 auto 48px;
  font-weight: 300;
}
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-trust {
  font-family: var(--mono);
  font-size: var(--t-mono-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust .check { color: var(--gold-bright); font-size: 14px; }
.hero-trust .sep   { color: rgba(255, 255, 255, 0.2); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(244, 200, 66, 0.14);
  border-radius: var(--r-2xl);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.hero-stats::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.hero-stat {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(244, 200, 66, 0.10);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero-stat-num em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ═══ AUTHORITY STRIP (logos / track record) ═══════════════════ */
.authority {
  background: var(--ink-1);
  padding: 60px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.authority-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.authority-label {
  font-family: var(--mono);
  font-size: var(--t-mono-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.authority-logos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.authority-logo {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color var(--d-base);
}
.authority-logo:hover { color: var(--gold-bright); }

/* ═══ PAIN ═══════════════════════════════════════════════════════ */
.pain {
  background: var(--ink-1);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.pain-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 800px at 90% 50%, rgba(157, 23, 77, 0.12), transparent 60%);
  pointer-events: none;
}
.pain-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}
.pain-head .section-label { margin-bottom: 32px; }
.pain-head .section-title { margin-top: 14px; }
.pain-head p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 28px;
  line-height: 1.6;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.pain-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--d-base) var(--ease-drama);
}
.pain-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(185, 28, 60, 0.4) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.6;
}
.pain-card:hover {
  border-color: rgba(244, 200, 66, 0.28);
  transform: translateY(-4px);
}
.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(185, 28, 60, 0.22), rgba(185, 28, 60, 0.05));
  border: 1px solid rgba(185, 28, 60, 0.32);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  font-family: var(--display);
  font-style: italic;
  color: #FCA5A5;
  font-size: 22px;
  font-weight: 500;
}
.pain-card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.pain-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.pain-bottom {
  margin-top: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.pain-bottom-text {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
  color: #fff;
  max-width: 880px;
  margin: 0 auto 40px;
  font-style: italic;
  font-weight: 400;
}
.pain-bottom-text em {
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ═══ OUTCOMES ═══════════════════════════════════════════════════ */
.outcomes {
  background: var(--ink);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.outcomes-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 90px;
  position: relative;
  z-index: 2;
}
.outcomes-head .section-label { margin-bottom: 32px; }
.outcomes-head p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 28px;
  line-height: 1.65;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.outcome {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(244, 200, 66, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(244, 200, 66, 0.14);
  border-radius: var(--r-xl);
  transition: all var(--d-base) var(--ease-drama);
}
.outcome:hover {
  border-color: rgba(244, 200, 66, 0.4);
  background: linear-gradient(135deg, rgba(244, 200, 66, 0.08), rgba(255, 255, 255, 0.02));
  transform: translateY(-3px);
}
.outcome-num {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
}
.outcome h4 {
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.outcome p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ═══ TIMELINE (12-week SVG path) ═══════════════════════════════ */
.timeline {
  background: var(--ink-1);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.timeline-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.timeline-head .section-label { margin-bottom: 28px; }
.timeline-svg-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}
.timeline-svg {
  width: 100%;
  height: 200px;
  display: block;
}
.timeline-svg .path-bg {
  fill: none;
  stroke: rgba(244, 200, 66, 0.15);
  stroke-width: 2;
}
.timeline-svg .path-fg {
  fill: none;
  stroke: url(#tl-gradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 1.6s var(--ease-drama);
  filter: drop-shadow(0 0 12px rgba(244, 200, 66, 0.5));
}
.timeline-svg.in .path-fg { stroke-dashoffset: 0; }
.timeline-pins {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.timeline-pin {
  text-align: center;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-md);
  transition: all var(--d-base) var(--ease-drama);
}
.timeline-pin:hover {
  border-color: var(--gold-bright);
  transform: translateY(-3px);
}
.timeline-pin-week {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.timeline-pin-label {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

/* ═══ CURRICULUM BENTO ═══════════════════════════════════════════ */
.topics {
  background: var(--ink);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.topics-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 90px;
  position: relative;
  z-index: 2;
}
.topics-head .section-label { margin-bottom: 32px; }
.topics-head p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 28px;
  line-height: 1.65;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.bento-item {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005));
  border: 1px solid rgba(244, 200, 66, 0.16);
  border-radius: var(--r-2xl);
  padding: 32px;
  overflow: hidden;
  transition: all var(--d-slow) var(--ease-drama);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
}
.bento-item::before {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(244, 200, 66, 0.18), transparent 60%);
  filter: blur(40px);
  opacity: 0.4;
  transition: opacity var(--d-base);
}
.bento-item:hover {
  border-color: rgba(244, 200, 66, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7),
              0 0 60px -20px rgba(244, 200, 66, 0.25);
}
.bento-item:hover::before { opacity: 1; }
.bento-item.large { grid-column: span 2; grid-row: span 2; }
.bento-item.wide  { grid-column: span 2; }
.bento-item.tall  { grid-row: span 2; }

.bento-week {
  position: absolute;
  top: 32px; right: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 6px 12px;
  background: rgba(244, 200, 66, 0.08);
  border: 1px solid rgba(244, 200, 66, 0.22);
  border-radius: var(--r-pill);
}
.bento-item h3 {
  font-family: var(--display);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.bento-item.large h3 { font-size: 56px; }
.bento-item.wide h3  { font-size: 40px; }
.bento-item.tall h3  { font-size: 34px; }
.bento-item:not(.large):not(.wide):not(.tall) h3 { font-size: 30px; }
.bento-item h3 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bento-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.bento-item.large p { font-size: 16px; }

.bento-cta {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.bento-cta p {
  font-family: var(--display);
  font-size: 26px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* ═══ HANDS-ON ═══════════════════════════════════════════════════ */
.handson {
  background: var(--ink-1);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.handson-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 600px at 30% 30%, rgba(244, 200, 66, 0.06), transparent 55%);
}
.handson-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.handson-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ink-3), var(--ink));
  border-radius: var(--r-2xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 200, 66, 0.2);
}
.handson-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 200, 66, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 200, 66, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 30% 70%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 70%, black 30%, transparent 80%);
}
.handson-visual::after {
  content: "";
  position: absolute;
  top: -30%; left: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(244, 200, 66, 0.28), transparent 60%);
  filter: blur(60px);
}
.handson-visual-tag {
  position: absolute;
  top: 24px; left: 24px;
  padding: 8px 16px;
  background: rgba(244, 200, 66, 0.12);
  border: 1px solid rgba(244, 200, 66, 0.32);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.handson-visual-text {
  position: absolute;
  bottom: 36px; left: 36px; right: 36px;
  z-index: 2;
}
.handson-visual-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.handson-visual-title {
  font-family: var(--display);
  font-size: 42px;
  color: #fff;
  line-height: 1.05;
  font-weight: 400;
  font-style: italic;
}

.handson-text .section-label { margin-bottom: 28px; }
.handson-text .section-title { margin-bottom: 28px; }
.handson-text > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 36px;
}
.handson-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.handson-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-md);
  transition: all var(--d-base) var(--ease-drama);
}
.handson-feature:hover {
  border-color: rgba(244, 200, 66, 0.28);
  background: rgba(244, 200, 66, 0.04);
}
.handson-feature .num {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.handson-feature h4 {
  font-family: var(--display);
  font-size: 21px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.2;
}
.handson-feature p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

/* ═══ EMAIL CAMPAIGN BONUS ═══════════════════════════════════════ */
.bonus {
  background: var(--ink);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.bonus-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 30%, rgba(45, 212, 162, 0.12), transparent 60%),
    radial-gradient(ellipse 600px 500px at 20% 70%, rgba(244, 200, 66, 0.08), transparent 60%);
}
.bonus-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--ink-2) 60%, var(--ink) 100%);
  border: 1.5px solid rgba(45, 212, 162, 0.32);
  border-radius: var(--r-2xl);
  padding: 60px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 162, 0.22), transparent 60%);
  filter: blur(40px);
}
.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(45, 212, 162, 0.12);
  border: 1px solid rgba(45, 212, 162, 0.4);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-glow);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.bonus-tag .gem {
  width: 14px; height: 14px;
  background: var(--emerald-glow);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.bonus-card h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 60px);
  color: #fff;
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.bonus-card h3 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--emerald-glow) 0%, #10704F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bonus-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.bonus-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}
.bonus-feature .check {
  color: var(--emerald-glow);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.bonus-visual {
  aspect-ratio: 1/1.05;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
  border: 1px solid rgba(45, 212, 162, 0.28);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  padding: 28px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.bonus-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(45, 212, 162, 0.18);
  margin-bottom: 18px;
}
.bonus-visual-header .from {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--emerald-glow);
  letter-spacing: 0.1em;
}
.bonus-visual-header .day {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 10px;
  background: rgba(45, 212, 162, 0.08);
  border-radius: var(--r-pill);
}
.bonus-visual-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.bonus-visual-row:last-child { border-bottom: none; }
.bonus-visual-row .num-bullet {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(45, 212, 162, 0.14);
  border: 1px solid rgba(45, 212, 162, 0.32);
  color: var(--emerald-glow);
  font-family: var(--mono);
  font-size: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.bonus-visual-row .subject {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

/* ═══ DELIVERY MODES (Remote vs Hybrid) ═══════════════════════ */
.delivery {
  background: var(--ink-1);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.delivery-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}
.delivery-head .section-label { margin-bottom: 32px; }
.delivery-head p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 28px;
  line-height: 1.65;
}
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.delivery-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(244, 200, 66, 0.18);
  border-radius: var(--r-2xl);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: all var(--d-base) var(--ease-drama);
}
.delivery-card:hover {
  border-color: rgba(244, 200, 66, 0.4);
  transform: translateY(-4px);
}
.delivery-card.recommended {
  background: linear-gradient(135deg, rgba(244, 200, 66, 0.08), rgba(244, 200, 66, 0.02));
  border-color: rgba(244, 200, 66, 0.4);
}
.delivery-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-weight: 500;
}
.delivery-tag.standard {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.delivery-tag.premium {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  border: 1px solid var(--gold-bright);
  font-weight: 700;
}
.delivery-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 28px;
}
.delivery-card h3 {
  font-family: var(--display);
  font-size: 36px;
  color: #fff;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
}
.delivery-card .subtitle {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 24px;
}
.delivery-card > p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 28px;
}
.delivery-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 200, 66, 0.14);
}
.delivery-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}
.delivery-list li .dot {
  color: var(--gold-bright);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ═══ VALUE STACK ═══════════════════════════════════════════════ */
.stack {
  background: var(--ink);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.stack-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 20%, rgba(244, 200, 66, 0.12), transparent 60%),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(107, 34, 176, 0.10), transparent 60%);
}
.stack-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}
.stack-head .section-label { margin-bottom: 32px; }
.stack-head p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 28px;
  line-height: 1.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.stack-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005));
  border: 1px solid rgba(244, 200, 66, 0.14);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all var(--d-base) var(--ease-drama);
  position: relative;
  overflow: hidden;
}
.stack-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 3px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  opacity: 0;
  transition: opacity var(--d-fast);
}
.stack-item:hover {
  border-color: rgba(244, 200, 66, 0.4);
  background: linear-gradient(135deg, rgba(244, 200, 66, 0.05), rgba(255, 255, 255, 0.01));
  transform: translateX(4px);
}
.stack-item:hover::before { opacity: 1; }
.stack-num {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(244, 200, 66, 0.2), rgba(168, 128, 15, 0.1));
  border: 1px solid rgba(244, 200, 66, 0.28);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold-bright);
  font-weight: 500;
}
.stack-text h4 {
  font-family: var(--display);
  font-size: 21px;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 4px;
}
.stack-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.stack-value {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold-bright);
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  background: rgba(244, 200, 66, 0.08);
  border: 1px solid rgba(244, 200, 66, 0.22);
  border-radius: var(--r-sm);
}

.stack-total {
  background: linear-gradient(135deg, var(--ink-3), var(--ink));
  border: 1px solid rgba(244, 200, 66, 0.32);
  border-radius: var(--r-2xl);
  padding: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.stack-total::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.stack-total::after {
  content: "";
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(244, 200, 66, 0.22), transparent 60%);
  filter: blur(40px);
}
.stack-total-inner { position: relative; z-index: 2; }
.stack-total-label {
  font-family: var(--mono);
  font-size: var(--t-mono-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.stack-strike {
  font-family: var(--display);
  font-size: 40px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  text-decoration-color: var(--burgundy-glow);
  text-decoration-thickness: 3px;
  margin-bottom: 14px;
  font-weight: 300;
}
.stack-total-value {
  font-family: var(--display);
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stack-total-value em { font-style: italic; font-weight: 300; }
.stack-total-sub {
  font-family: var(--display);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 36px;
}
.stack-total-cta {
  margin: 28px 0 32px;
  display: flex;
  justify-content: center;
}
.stack-financing {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: rgba(244, 200, 66, 0.08);
  border: 1px solid rgba(244, 200, 66, 0.28);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* ═══ WARRANTY ═══════════════════════════════════════════════════ */
.warranty {
  background: var(--ink-1);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.warranty-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 30%, rgba(244, 200, 66, 0.08), transparent 60%),
    radial-gradient(ellipse 600px 500px at 20% 70%, rgba(45, 212, 162, 0.10), transparent 60%);
}
.warranty-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}
.warranty-head .section-label { margin-bottom: 32px; }
.warranty-head p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 28px;
  line-height: 1.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.warranty-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(244, 200, 66, 0.2);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--d-slow) var(--ease-drama);
}
.warranty-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(244, 200, 66, 0.18), transparent 60%);
  filter: blur(40px);
  opacity: 0.5;
  transition: opacity var(--d-base);
}
.warranty-card:hover {
  border-color: rgba(244, 200, 66, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6),
              0 0 60px -20px rgba(244, 200, 66, 0.25);
}
.warranty-card:hover::before { opacity: 1; }

.warranty-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.warranty-shield {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 12px 30px -10px rgba(244, 200, 66, 0.5);
}
.warranty-shield::before {
  content: "";
  position: absolute; inset: 3px;
  border-radius: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.warranty-shield span {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.warranty-num {
  font-family: var(--mono);
  font-size: var(--t-mono-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 6px 14px;
  background: rgba(244, 200, 66, 0.08);
  border: 1px solid rgba(244, 200, 66, 0.22);
  border-radius: var(--r-pill);
}
.warranty-card h3 {
  font-family: var(--display);
  font-size: 28px;
  color: #fff;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.warranty-card h3 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.warranty-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

.warranty-foot {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.warranty-foot p {
  font-family: var(--display);
  font-size: 26px;
  font-style: italic;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 30px;
}
.warranty-foot p em {
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ═══ TESTIMONIALS ═══════════════════════════════════════════════ */
.testimonials {
  background: var(--ink);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 1000px 600px at 50% 50%, rgba(244, 200, 66, 0.06), transparent 60%);
}
.testimonials-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}
.testimonials-head .section-label { margin-bottom: 32px; }
.testimonials-head p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 28px;
  line-height: 1.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-featured {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.testimonial-hero {
  background: linear-gradient(135deg, rgba(244, 200, 66, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(244, 200, 66, 0.28);
  border-radius: var(--r-2xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.testimonial-hero::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244, 200, 66, 0.18), transparent 60%);
  filter: blur(40px);
}
.testimonial-hero-grid {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.quote-mark {
  font-family: var(--display);
  font-size: 130px;
  font-style: italic;
  line-height: 0.7;
  color: var(--gold-bright);
  opacity: 0.6;
}
.testimonial-hero-quote {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  color: #fff;
  font-weight: 400;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.testimonial-hero-quote em {
  font-style: italic;
  color: var(--gold-bright);
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid rgba(244, 200, 66, 0.18);
}
.testimonial-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}
.testimonial-attr-name {
  font-family: var(--display);
  font-size: 19px;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}
.testimonial-attr-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 4px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(244, 200, 66, 0.16);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  transition: all var(--d-base) var(--ease-drama);
  overflow: hidden;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0;
  transition: opacity var(--d-fast);
}
.testimonial-card:hover {
  border-color: rgba(244, 200, 66, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.5);
}
.testimonial-card:hover::before { opacity: 1; }
.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial-rating .star {
  color: var(--gold-bright);
  font-size: 15px;
}
.testimonial-card-quote {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 400;
}
.testimonial-card-quote strong {
  color: var(--gold-bright);
  font-weight: 600;
}
.testimonial-card-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 200, 66, 0.12);
}
.testimonial-card-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-card-name {
  font-family: var(--display);
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}
.testimonial-card-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

/* ═══ COACHES ═══════════════════════════════════════════════════ */
.coaches {
  background: var(--ink-1);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.coaches-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 50% 30%, rgba(244, 200, 66, 0.06), transparent 60%);
}
.coaches-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 90px;
  position: relative;
  z-index: 2;
}
.coaches-head .section-label { margin-bottom: 32px; }
.coaches-head p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 28px;
  line-height: 1.65;
}
.coaches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.coach {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(244, 200, 66, 0.2);
  border-radius: var(--r-2xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all var(--d-slow) var(--ease-drama);
}
.coach::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244, 200, 66, 0.14), transparent 60%);
  filter: blur(40px);
  opacity: 0.6;
  transition: opacity var(--d-base);
}
.coach:hover {
  border-color: rgba(244, 200, 66, 0.4);
  transform: translateY(-4px);
}
.coach:hover::before { opacity: 1; }
.coach-portrait {
  aspect-ratio: 1/1;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--ink-3), var(--ink));
  position: relative;
  margin-bottom: 32px;
  overflow: hidden;
  border: 1px solid rgba(244, 200, 66, 0.22);
}
.coach-portrait::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244, 200, 66, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 200, 66, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}
.coach-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--ink) 100%);
}
.coach-initials {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 160px;
  font-weight: 300;
  z-index: 2;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.coach-tag {
  position: absolute;
  top: 24px; left: 24px;
  padding: 8px 16px;
  background: rgba(5, 8, 19, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 200, 66, 0.32);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
  z-index: 3;
}
.coach h3 {
  font-family: var(--display);
  font-size: 44px;
  color: #fff;
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.coach-role {
  font-family: var(--mono);
  font-size: var(--t-mono-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 24px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.coach-bio {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.coach-creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 200, 66, 0.16);
  position: relative;
  z-index: 2;
}
.coach-creds li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.coach-creds .bullet {
  color: var(--gold-bright);
  font-size: 11px;
  margin-top: 4px;
}

/* ═══ GUEST SPEAKER ═════════════════════════════════════════════ */
.guest {
  background: var(--ink);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.guest-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 500px at 70% 50%, rgba(192, 38, 211, 0.20), transparent 60%);
}
.guest-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.guest-text .section-label { margin-bottom: 28px; }
.guest-text h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 60px);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.guest-text h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.guest-text > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 32px;
}
.guest-speaker {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(244, 200, 66, 0.22);
  border-radius: var(--r-xl);
  padding: 32px;
}
.guest-speaker-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}
.guest-speaker-avatar {
  width: 60px; height: 60px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
}
.guest-speaker h4 {
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  line-height: 1.1;
}
.guest-speaker .role {
  font-family: var(--mono);
  font-size: var(--t-mono-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 5px;
}
.guest-speaker p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.guest-visual {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--ink-3), var(--ink));
  border: 1px solid rgba(244, 200, 66, 0.22);
  border-radius: var(--r-2xl);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 50px;
  text-align: center;
}
.guest-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244, 200, 66, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 200, 66, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
}
.guest-visual::after {
  content: "";
  position: absolute;
  top: -30%; left: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(244, 200, 66, 0.22), transparent 60%);
  filter: blur(60px);
}
.guest-visual-inner { position: relative; z-index: 2; }
.guest-visual-num {
  font-family: var(--display);
  font-size: 150px;
  font-style: italic;
  line-height: 0.85;
  font-weight: 300;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.guest-visual h3 {
  font-family: var(--display);
  font-size: 28px;
  color: #fff;
  line-height: 1.15;
  font-weight: 400;
}
.guest-visual .week {
  font-family: var(--mono);
  font-size: var(--t-mono-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 18px;
}

/* ═══ FAQ ═══════════════════════════════════════════════════════ */
.faq {
  background: var(--ink);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.faq-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 80% 50%, rgba(244, 200, 66, 0.06), transparent 60%);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.faq-head { position: sticky; top: 120px; }
.faq-head .section-label { margin-bottom: 28px; }
.faq-head p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 24px;
  line-height: 1.65;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(244, 200, 66, 0.16);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  cursor: pointer;
  transition: all var(--d-base) var(--ease-drama);
}
.faq-item:hover {
  border-color: rgba(244, 200, 66, 0.36);
  background: linear-gradient(135deg, rgba(244, 200, 66, 0.04), rgba(255, 255, 255, 0.01));
}
.faq-item.open { border-color: rgba(244, 200, 66, 0.4); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--display);
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(244, 200, 66, 0.12);
  border: 1px solid rgba(244, 200, 66, 0.32);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--gold-bright);
  flex-shrink: 0;
  transition: all var(--d-base);
}
.faq-item.open .faq-toggle {
  background: var(--gold-bright);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  margin-top: 18px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 92%;
}
.faq-item.open .faq-a {
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ═══ FINAL CTA (Dan Kennedy / Henry style) ════════════════════ */
.final {
  background: var(--ink-1);
  padding: 160px 0 200px;
  position: relative;
  overflow: hidden;
}
.final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 50% 50%, rgba(244, 200, 66, 0.18), transparent 60%),
    radial-gradient(ellipse 700px 500px at 20% 80%, rgba(13, 107, 138, 0.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(192, 38, 211, 0.14), transparent 60%);
}
.final-content {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.final-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: rgba(185, 28, 60, 0.10);
  border: 1px solid rgba(185, 28, 60, 0.4);
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy-glow);
  margin-bottom: 36px;
  backdrop-filter: blur(12px);
}
.final-banner .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--burgundy-glow);
  box-shadow: 0 0 12px var(--burgundy-glow);
  animation: pulse 1.4s ease-in-out infinite;
}
.final h2 {
  font-family: var(--display);
  font-size: clamp(54px, 9vw, 124px);
  line-height: 0.9;
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: -0.04em;
  color: #fff;
}
.final h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 50px;
  font-weight: 300;
}
.final-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.final-cta .small {
  font-family: var(--mono);
  font-size: var(--t-mono-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.final-cta .small strong {
  color: var(--gold-bright);
  font-weight: 600;
}

/* ═══ COUNTDOWN (cohort closes) ═════════════════════════════════ */
.countdown {
  display: inline-flex;
  gap: 14px;
  margin: 30px auto;
  flex-wrap: wrap;
  justify-content: center;
}
.cd-cell {
  min-width: 90px;
  padding: 18px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(244, 200, 66, 0.22);
  border-radius: var(--r-md);
  text-align: center;
  backdrop-filter: blur(10px);
}
.cd-num {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 6px;
}

/* ═══ FOOTER ═══════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(244, 200, 66, 0.16);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(244, 200, 66, 0.12);
}
.footer-brand-block .brand-name { font-size: 22px; }
.footer-brand-block p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 340px;
}
.footer h5 {
  font-family: var(--mono);
  font-size: var(--t-mono-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-list a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--d-fast);
}
.footer-list a:hover { color: var(--gold-bright); }
.footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.footer-bottom-r { display: flex; gap: 24px; }
.footer-disclaimer {
  margin-top: 24px;
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 100%;
}

/* ═══ LEGAL PAGES (privacy / terms) ═════════════════════════════ */
.legal {
  padding: 160px 0 100px;
  background: var(--ink);
  position: relative;
}
.legal-content {
  max-width: 880px;
  margin: 0 auto;
}
.legal h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 32px;
}
.legal h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.legal-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 60px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink-line);
}
.legal h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin-top: 48px;
  margin-bottom: 18px;
  line-height: 1.2;
}
.legal h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal p, .legal li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal ul, .legal ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.legal li { margin-bottom: 8px; }
.legal a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: rgba(244, 200, 66, 0.3);
  text-underline-offset: 4px;
  transition: color var(--d-fast);
}
.legal a:hover { color: var(--gold-glow); }
.legal strong { color: #fff; font-weight: 600; }

.legal-toc {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-bottom: 60px;
}
.legal-toc h3 { margin-top: 0; }
.legal-toc ul { list-style: none; padding: 0; }
.legal-toc li { margin-bottom: 8px; padding-left: 0; }
.legal-toc a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.legal-toc a:hover { color: var(--gold-bright); }

/* ═══ THANK YOU PAGE ═══════════════════════════════════════════ */
.thank {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.thank-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 50% 50%, rgba(45, 212, 162, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 30% 70%, rgba(244, 200, 66, 0.12), transparent 60%);
}
.thank-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 32px;
}
.thank-check {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-glow), var(--emerald));
  display: grid;
  place-items: center;
  margin: 0 auto 40px;
  font-size: 44px;
  color: var(--ink);
  box-shadow: 0 12px 40px -12px rgba(45, 212, 162, 0.6);
}
.thank h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}
.thank h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.thank > p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 40px;
}
.thank-next {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 40px 0 50px;
  text-align: left;
}
.thank-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.thank-step .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin-bottom: 10px;
  font-weight: 500;
}
.thank-step h4 {
  font-family: var(--display);
  font-size: 19px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.2;
}
.thank-step p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

/* ═══ RESPONSIVE ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 32px 16px; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(244, 200, 66, 0.08); padding-bottom: 20px; }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; padding-bottom: 0; padding-top: 20px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid, .delivery-grid, .stack-grid, .warranty-grid, .testimonials-grid, .coaches-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .bento-item.large { grid-column: span 2; grid-row: span 1; }
  .bento-item.large h3 { font-size: 38px; }
  .bento-item.wide { grid-column: span 2; }
  .handson-grid, .guest-grid, .faq-grid, .bonus-card { grid-template-columns: 1fr; gap: 60px; }
  .faq-head { position: static; }
  .testimonial-hero { padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline-pins { grid-template-columns: repeat(2, 1fr); }
  .thank-next { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 140px 0 80px; }
  .hero-stat-num { font-size: 38px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .hero-cta .magnetic { width: 100%; justify-content: center; }
  .pain, .outcomes, .topics, .handson, .stack, .warranty, .testimonials, .coaches, .guest, .faq, .final, .delivery, .bonus, .timeline { padding: 90px 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-item.large, .bento-item.wide, .bento-item.tall { grid-column: span 1; grid-row: span 1; }
  .bento-item h3, .bento-item.large h3, .bento-item.wide h3, .bento-item.tall h3 { font-size: 30px; }
  .stack-total { padding: 40px 28px; }
  .stack-total-value { font-size: 60px; }
  .stack-strike { font-size: 28px; }
  .warranty-card, .coach { padding: 32px 24px; }
  .testimonial-hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .quote-mark { font-size: 80px; }
  .testimonial-hero { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .bonus-card { padding: 36px 28px; }
  .delivery-card { padding: 36px 28px; }
  .countdown { gap: 8px; }
  .cd-cell { min-width: 70px; padding: 14px 10px; }
  .cd-num { font-size: 32px; }
  .authority-inner { flex-direction: column; align-items: flex-start; }
  .authority-logos { gap: 24px; }
  .authority-logo { font-size: 16px; }
}
