/* ═══════════════════════════════════════════════════════════
   CLOUD TOP G — COHORT 2026 LANDING PAGE
   Design System & Full Styling
   ═══════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Colors */
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-card: #161616;
  --gray-900: #1A1A1A;
  --gray-700: #333333;
  --gray-500: #666666;
  --gray-400: #888888;
  --gray-200: #D4D4D4;
  --gray-100: #EEEEEE;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --stone: #F5F3EF;
  --gold: #C9A227;
  /* Muted luxury watch gold */
  --gold-light: #E2C76E;
  --gold-dark: #A68A30;
  --gold-glow: rgba(201, 162, 39, 0.25);
  --red-urgent: #E74C3C;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 6rem;
  --container-px: 1.5rem;
  --max-width: 780px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}



.pre-heading-ticker {
  background-color: #E74C3C !important;
  color: #FFFFFF !important;
  padding: 8px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.pre-heading-ticker__text {
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ── SECTIONS BASE ─────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.section--light {
  background: var(--off-white);
  color: var(--gray-900);
}

.section--dark {
  background: var(--white);
  color: var(--gray-900);
}

.section--gold {
  background: var(--white);
  color: var(--gray-900);
}

.section--cta {
  background: var(--white);
  color: var(--gray-900);
  padding-bottom: 8rem;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.gold-text {
  color: var(--gold);
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.section--light .section__eyebrow {
  color: var(--gray-500);
}

.section__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 80px);
  line-height: 1.1;
  margin-bottom: 1.75rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section__headline {
    font-size: clamp(36px, 8vw, 42px);
  }
}

.section__headline--white {
  color: var(--gray-900);
}

.section__headline--center {
  text-align: center;
}

.section__body {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: var(--gray-700);
}

.section__body--white {
  color: var(--gray-200);
}

.section__body--accent {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
}

.section__body--center {
  text-align: center;
}

.section__closer {
  font-size: 1.125rem;
  text-align: center;
  margin-top: 2.5rem;
  color: var(--gray-700);
}

.section__closer--bold {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-top: 0.5rem;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-align: center;
  line-height: 1.3;
}

.btn--primary {
  position: relative;
  overflow: hidden;
  background: var(--red-urgent) !important;
  color: var(--white) !important;
  padding: 16px 32px;
  box-shadow: 0 4px 14px rgba(231, 76, 60, 0.25);
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: badge-shimmer 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.btn--primary:hover {
  background: #c0392b !important;
  color: var(--white) !important;
}

.btn--secondary {
  background: var(--white);
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 16px 32px;
}

.btn--secondary:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(230, 26, 26, 0.4);
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(230, 26, 26, 0.1);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
}

.btn--xl {
  padding: 1.375rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 8px;
}

.btn--sticky {
  width: 100%;
  padding: 1.25rem 1rem calc(1.25rem + env(safe-area-inset-bottom, 0px)) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  position: relative;
  overflow: hidden;
  border: none !important;
}

.btn--sticky::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: badge-shimmer 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.btn--sticky__sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Pulse glow animation removed */

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white) !important;
  color: var(--black) !important;
  overflow: hidden;
  padding: 4rem 0 3rem;
}

.hero__glow {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

section.hero .hero__pre-headline {
  display: block;
  font-family: var(--font-body);
  font-size: 1.125rem !important;
  font-weight: 700;
  font-style: italic !important;
  color: #4B5563 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.2rem, 15vw, 5.5rem) !important;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--black) !important;
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.12);
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s 0.15s var(--ease-out) both;
}

.hero__subheadline {
  font-size: clamp(1.125rem, 2.8vw, 1.375rem);
  line-height: 1.6;
  color: var(--gray-500) !important;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s 0.3s var(--ease-out) both;
}

.hero__brandline {
  font-size: 0.9375rem;
  color: var(--gray-500) !important;
  font-style: italic;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.45s var(--ease-out) both;
}

.hero__cta {
  background-color: var(--red-urgent) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(231, 76, 60, 0.4) !important;
}

.hero__cta:hover {
  background-color: #c0392b !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6) !important;
}

.hero__microcopy {
  font-size: 0.8125rem;
  color: var(--gray-500) !important;
  margin-top: 1rem;
  animation: fadeInUp 0.8s 0.75s var(--ease-out) both;
}

/* ═══════════════════════════════════════════════════════════
   PAIN SECTION
   ═══════════════════════════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s var(--ease-out);
}

.pain-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.pain-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pain-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
}

/* ═══════════════════════════════════════════════════════════
   FACTS GRID
   ═══════════════════════════════════════════════════════════ */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 3rem 0 2rem;
}

.fact-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-align: center;
  transition: border-color 0.3s var(--ease-out);
}

.fact-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.fact-card__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.fact-card__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}

/* ── CTA BLOCK ─────────────────────────────────────────────── */
.cta-block {
  text-align: center;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   OFFER CARDS (The 5 Core Systems)
   ═══════════════════════════════════════════════════════════ */
.accelerator-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-100);
}

.accelerator-intro__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.accelerator-intro__sub {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--ease-out);
}

.offer-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.offer-card--wildcard {
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  background: var(--white);
}

.offer-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}

.offer-card__icon {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}

.offer-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 0.25rem;
  display: inline;
}

.offer-card__value {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
  margin-top: 0.375rem;
}

.offer-card__arrow {
  font-size: 1.25rem;
  color: var(--gray-400);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.offer-card.open .offer-card__arrow {
  transform: rotate(180deg);
}

.offer-card__hook {
  font-size: 1rem;
  margin-top: 0.75rem;
  color: var(--gray-900);
}

.offer-card__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-top: 0.5rem;
}

.offer-card__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s var(--ease-out);
  opacity: 0;
}

.offer-card.open .offer-card__details {
  max-height: 800px;
  opacity: 1;
}

.offer-card__details h5 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

.offer-card__details ul {
  list-style: none;
  padding: 0;
}

.offer-card__details li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-700);
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.offer-card__details li::before {
  content: '✅';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 0.5rem;
}

.offer-card__included {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-style: italic;
  margin-top: 0.75rem;
}

.offer-card__free-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.offer-card .btn {
  display: block;
  width: 100%;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   BONUS CARDS
   ═══════════════════════════════════════════════════════════ */
.bonus-story {
  max-width: 640px;
  margin: 0 auto 3rem;
}

.bonus-story p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-200);
  margin-bottom: 1rem;
}

.bonus-story blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  font-size: 1.0625rem;
  color: var(--white);
  margin: 1.5rem 0;
  font-style: italic;
}

.bonus-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s var(--ease-out);
}

.bonus-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
}

.bonus-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}

.bonus-card__number {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.bonus-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.bonus-card__value {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
  margin-top: 0.25rem;
}

.bonus-card__arrow {
  font-size: 1.25rem;
  color: var(--gray-400);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.bonus-card.open .bonus-card__arrow {
  transform: rotate(180deg);
}

.bonus-card__hook {
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  color: var(--gray-200);
}

.bonus-card__body {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-top: 0.5rem;
}

.bonus-card__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s var(--ease-out);
  opacity: 0;
}

.bonus-card.open .bonus-card__details {
  max-height: 600px;
  opacity: 1;
}

.bonus-card__details ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.bonus-card__details li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-200);
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.bonus-card__details li::before {
  content: '✅';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  top: 0.4rem;
}

.bonus-card__free-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.bonus-card .btn {
  display: block;
  width: 100%;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   VALUE STACK TABLE
   ═══════════════════════════════════════════════════════════ */
.value-table {
  max-width: 600px;
  margin: 2.5rem auto 0;
}

.value-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
  color: var(--gray-200);
}

.value-table__price {
  font-weight: 700;
  color: var(--gray-200);
  font-family: var(--font-body);
  white-space: nowrap;
  margin-left: 1rem;
  text-decoration: line-through;
  opacity: 0.6;
}

.value-table__row--total {
  border-bottom: 2px solid rgba(201, 168, 76, 0.3);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.value-table__row--total span {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.value-table__row--total .value-table__price {
  text-decoration: line-through;
  opacity: 0.7;
  color: var(--red-urgent);
  font-size: 1.125rem;
}

.value-table__row--you-pay {
  border-bottom: none;
  padding-top: 1rem;
}

.value-table__row--you-pay span {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--white);
}

.value-table__price--gold {
  color: var(--gold) !important;
  font-size: 1.75rem !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  opacity: 1 !important;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-final {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-final__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-200);
  margin-bottom: 1rem;
}

.cta-final__body--highlight {
  font-size: 1.25rem;
  color: var(--white);
}

.cta-final__body--small {
  font-size: 0.9375rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
}

.cta-final__btn {
  margin-bottom: 1.5rem;
}

.cta-final__urgency {
  margin-top: 1rem;
}

.cta-final__urgency p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

/* ── Warning Block ─────────────────────────────────────────── */
.warning-block {
  max-width: 640px;
  margin: 4rem auto 0;
  padding: 2rem;
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: 12px;
  background: rgba(231, 76, 60, 0.04);
}

.warning-block h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.warning-block p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-200);
  margin-bottom: 0.75rem;
}

/* ── P.S. Block ────────────────────────────────────────────── */
.ps-block {
  max-width: 640px;
  margin: 3rem auto 0;
  text-align: center;
}

.ps-block p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  background: transparent;
  padding: 0;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  border-radius: 0;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (600px+)
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .offer-card,
  .bonus-card {
    padding: 2rem;
  }

  .offer-card .btn,
  .bonus-card .btn {
    display: inline-flex;
    width: auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP (900px+)
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  :root {
    --section-py: 7rem;
    --max-width: 820px;
  }

  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sticky-cta {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   HIDE HELPERS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 599px) {
  .hide-mobile {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   EXIT-INTENT / TIMED POPUP
   ═══════════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  padding: 1.25rem;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-out);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(201, 168, 76, 0.08);
}

.popup-overlay.active .popup {
  transform: scale(1) translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   HERO URGENCY BANNER
   ═══════════════════════════════════════════════════════════ */
.urgency-banner {
  display: inline-block;
  background: rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 10px;
  padding: 0.75rem 1.5rem 0.875rem;
  margin-top: 1rem;
  max-width: 480px;
  width: 100%;
}

.urgency-banner__text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black) !important;
  margin-bottom: 0.5rem;
}

.battery-meter {
  display: flex;
  gap: 3px;
  justify-content: center;
}

.battery-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 18px;
  height: 16px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: bold;
}

.battery-block.filled {
  background: #ddd;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.battery-block.remaining {
  background: var(--white);
  box-shadow: 0 0 4px rgba(46, 204, 113, 0.4);
  color: #fff;
}

.battery-block.blink {
  animation: batteryBlink 1s ease-in-out infinite;
}

@keyframes batteryBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.15;
  }
}

/* Progress bar — urgency drain (shared keyframes) */
.popup__progress {
  width: 85%;
  max-width: 400px;
  height: 24px;
  background-color: #d1cfcf;
  border: 4px solid #d1cfcf;
  border-radius: 100px;
  margin: 0 auto 1.5rem auto;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

.popup__progress-bar {
  height: 100%;
  background-color: #ff6600;
  border-radius: 100px 0 0 100px;
  transform: skewX(-30deg);
  transform-origin: bottom left;
  margin-left: -20px;
  animation: fillBar 14s linear infinite;
}

.popup-overlay:not(.active) .popup__progress-bar {
  animation: none;
  width: 50%;
}

@keyframes fillBar {
  0% {
    width: 50%;
  }

  100% {
    width: 95%;
    /* Stops just shy of the rounded corner */
  }
}

.popup__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #666;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 0.25rem;
}

.popup__close:hover {
  color: var(--black);
}

.popup__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.25rem, 4.5vw, 2.4rem);
  /* Reduced to fit on one line */
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  /* Forces it to stay on single line */
  color: var(--black);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.popup__body {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0.75rem;
}

.popup__body--small {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.popup__cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1rem;
  background: #ff6600;
  /* Bright orange to match reference */
  color: #ffffff;
  border: none;
  font-style: italic;
  font-size: 1.25rem;
  padding: 16px 36px;
  box-shadow: 0 8px 24px rgba(230, 75, 55, 0.35);
}

.popup__cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: badge-shimmer 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.popup__cta:hover {
  background: #e65c00;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

.popup__microcopy {
  font-size: 0.75rem;
  color: #777;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1B — REFERENCES / TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.references-section {
  background-color: #F7F7F7;
  padding: 4rem 1.5rem 5rem;
}

.references-container {
  max-width: 1100px;
  margin: 0 auto;
}

.references-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 2rem;
}

.reference-card {
  width: calc(33.333% - 1.35rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reference-card__img-wrap {
  position: relative;
  width: 170px;
  height: 170px;
  margin-bottom: 1.5rem;
}

.reference-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.verified-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.verified-badge svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.reference-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.reference-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.375rem;
  color: var(--red-urgent);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
  letter-spacing: -0.02em;
}

.reference-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .reference-card {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .reference-card {
    width: 100%;
  }

  .references-grid {
    gap: 3.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1C — THE PROBLEM PATTERN (EDITORIAL REDESIGN)
   ═══════════════════════════════════════════════════════════ */
.problem-pattern {
  background-color: var(--white);
  color: var(--black);
  padding: 8rem 0;
}

.problem-pattern__container {
  max-width: 900px;
  margin: 0 auto;
}

.problem-pattern__header {
  text-align: center;
  margin-bottom: 4rem;
}

.problem-pattern__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.problem-pattern__accent-line {
  width: 60px;
  height: 3px;
  background-color: var(--gold);
  margin: 0 auto 1.5rem;
}

.problem-pattern__subheading {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray-700);
}

.problem-pattern__editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-bottom: 5rem;
  text-align: left;
}

@media (max-width: 768px) {
  .problem-pattern__editorial {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


.problem-column__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.problem-column__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
}

.problem-column__text:last-child {
  margin-bottom: 0;
}

.problem-pattern__conclusion {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--black);
  border-top: 1px solid var(--gray-200);
  padding-top: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.problem-pattern__conclusion p {
  margin-bottom: 1rem;
}

.problem-pattern__conclusion .highlight-text {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--red-urgent);
}

.problem-pattern__conclusion .highlight-text {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.375rem;
}

@media (max-width: 768px) {
  .problem-pattern__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1D — THE SYSTEM
   ═══════════════════════════════════════════════════════════ */
.the-system {
  background: var(--stone);
  color: var(--black);
  padding: 7rem 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.the-system__container {
  max-width: 800px;
  margin: 0 auto;
}

.system-header {
  text-align: center;
  margin-bottom: 4rem;
}

.system-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.system-subheading {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--black);
}

.system-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.system-paragraph {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--black);
  max-width: 700px;
  margin: 0 auto;
}

.system-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

.system-pillar {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.system-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pillar-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.system-break {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.system-break::before {
  content: '';
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 1.5rem;
}

.system-break__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.system-progression {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.progression-item {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.progression-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-right: 1.5rem;
  opacity: 0.8;
}

.progression-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
}

.system-milestones {
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 4rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 3rem;
}

.system-milestones p {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.system-milestones p:last-child {
  margin-bottom: 0;
}

.system-transition {
  text-align: center;
  background: var(--black);
  color: var(--white);
  padding: 5rem 3rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.system-transition p {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .system-pillars {
    grid-template-columns: 1fr;
  }

  .system-progression {
    grid-template-columns: 1fr;
  }

  .system-break {
    flex-direction: column;
    text-align: center;
  }

  .system-break__title {
    margin-right: 0;
    margin-bottom: 1rem;
    white-space: normal;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
  }

  .system-break__line {
    width: 100%;
  }

  .system-milestones {
    padding: 2rem 1rem;
  }

  .system-transition {
    padding: 3rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1E — WHY STUDENTS FINISH
   ═══════════════════════════════════════════════════════════ */
.why-finish {
  background-color: var(--gray-50);
  padding: 8rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.why-finish__container {
  max-width: 900px;
  margin: 0 auto;
}

.why-finish__header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-finish__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.why-finish__subheading {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

.why-finish__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

.finish-card {
  background: var(--white);
  border: none;
  border-radius: 16px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.finish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.finish-card__num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 200;
  line-height: 1;
  color: var(--gray-300);
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
  position: relative;
}

.finish-card__num::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.finish-card__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.finish-card__body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--black);
}

.why-finish__transition {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--black);
  background: transparent;
  padding: 2rem 0;
}

.why-finish__transition p {
  margin-bottom: 0.5rem;
}

.why-finish__transition p:last-child {
  margin-bottom: 0;
}

.why-finish__transition .highlight-bold {
  font-weight: 800;
  color: var(--black);
  font-size: 1.375rem;
}

@media (max-width: 768px) {
  .why-finish__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1F — WHAT YOU GET INSIDE
   ═══════════════════════════════════════════════════════════ */
.what-you-get {
  background-color: #0a0a0a;
  color: var(--white);
  padding: 11rem 1.5rem 10rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.what-you-get__container {
  max-width: 1000px;
  margin: 0 auto;
}

.what-you-get__header {
  text-align: center;
  margin-bottom: 4rem;
}

.what-you-get__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.what-you-get__subheading {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 600;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Core System Card */
.core-system-card {
  background: #1C1C1C;
  /* Deep soft dark gray, updated for higher visibility */
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 6rem 5rem;
  margin: 0 auto 5rem auto;
  max-width: 1050px;
}

.core-system-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.core-icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.core-system-card__header h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.core-system-card__subtitle {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.core-system-card__desc {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.core-system-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.core-system-card__list li {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--gray-200);
  display: flex;
  align-items: center;
}

.core-system-card__footer {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-200);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  margin: 0;
}

/* Systems Grid */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.get-card {
  background: #1C1C1C;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.get-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.get-card--full {
  grid-column: 1 / -1;
  /* spans full width */
}

.get-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.get-card__icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.get-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.system-value {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--gold);
}

.get-card__subtitle {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.get-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
  /* pushes footer down */
}

.get-card__list li {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--gray-400);
  margin-bottom: 0;
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Ultra-thin separator */
}

.get-card__list li:last-child {
  border-bottom: none;
}

.get-card__list .check-icon {
  margin-right: 0.75rem;
  margin-top: 0.15rem;
  font-size: 0.875rem;
  color: var(--gold);
}

.get-card__footer {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 600;
  color: var(--gray-400);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

@media (max-width: 768px) {
  .core-system-card {
    padding: 2rem 1.5rem;
  }

  .systems-grid {
    grid-template-columns: 1fr;
  }

  .get-card {
    padding: 2rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1G — THE TOTAL VALUE
   ═══════════════════════════════════════════════════════════ */
.total-value-section {
  background: var(--white);
  color: var(--black);
  padding: 11rem 1.5rem 13rem 1.5rem;
  /* Massive vertical breathing room */
  position: relative;
  z-index: 2;
}

.total-value__container {
  max-width: 800px;
  margin: 0 auto;
}

.total-value__box {
  background: #FCFCFC;
  /* Crisp, clinical off-white */
  border: 1px solid rgba(0, 0, 0, 0.04);
  /* Institutional paper edge */
  border-radius: 4px;
  /* Sharper edges, less bubbly */
  padding: 5rem 4rem;
  box-shadow: none;
  /* Removed heavy card feel */
  position: relative;
}

.total-value__box::after {
  content: '';
  position: absolute;
  top: calc(100% + 4rem);
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 16rem;
  /* Extends a bit further down */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 50%, transparent 50%);
  background-size: 1.5px 8px;
  background-repeat: repeat-y;
  z-index: 10;
  animation: march-down 0.8s linear infinite;
}

@keyframes march-down {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 8px;
    /* Matches the background-size height to create a seamless loop */
  }
}

@media (max-width: 768px) {
  .total-value__box::after {
    height: 16rem;
    top: calc(100% + 4rem);
  }
}

.total-value__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.total-value__subheading {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 4rem;
}

.value-breakdown-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}

.value-breakdown-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  /* Tightened from 1.25rem to build pressure */
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

.value-breakdown-list li:last-child {
  border-bottom: none;
}

.vf-item {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  /* Thin text for items */
  color: var(--gray-500);
}

.vf-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  /* Medium weight for individual prices */
  color: var(--black);
}

.total-sum {
  text-align: center;
  padding: 3.5rem 0 0 0;
  border-top: 3px solid var(--gold);
  /* Controlled gold line snapped to 3px */
  border-bottom: none;
  margin-bottom: 3rem;
  margin-top: 1.5rem;
  background: transparent;
}

.total-sum__label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-500);
  /* Removed heavy black */
  margin-bottom: 0;
  /* Compressed stack to fuse with total number */
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.total-sum__number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  /* Boldest element */
  color: var(--gold);
  /* Controlled gold */
  line-height: 1;
  margin: 0;
  letter-spacing: -0.03em;
}

.total-value__conclusion {
  text-align: center;
}

.total-value__conclusion p {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.pivot-statement {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: var(--black) !important;
  margin-bottom: 2rem !important;
}

.highlight-gold-text {
  font-family: var(--font-display) !important;
  font-size: 2rem !important;
  /* Increased for ownership moment */
  font-weight: 900 !important;
  /* Max weight */
  color: var(--gold) !important;
  letter-spacing: 0.02em !important;
  /* Subtle branded tracking */
  margin: 1rem 0 !important;
  display: block;
}

.no-bs-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.no-bs-list li {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.highlight-bottom {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: var(--black) !important;
  margin-top: 1.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
  /* Matched to ledger dash */
}

@media (max-width: 600px) {
  .total-value__box {
    padding: 3rem 1.5rem;
  }

  .value-breakdown-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .vf-price {
    align-self: flex-start;
  }

  .no-bs-list {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1G-2 — THE EMOTIONAL HINGE
   ═══════════════════════════════════════════════════════════ */
.emotional-hinge-section {
  background-color: var(--white);
  padding: 10rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.emotional-hinge__container {
  max-width: 800px;
  margin: 0 auto;
}

.emotional-hinge__text {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-500);
  margin-top: 0;
  margin-bottom: 15rem;
  position: relative;
}


.emotional-hinge__text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 13rem;
  /* Reduced gap before the next text */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 50%, transparent 50%);
  background-size: 1.5px 8px;
  background-repeat: repeat-y;
  margin-top: 2rem;
  animation: march-down 0.8s linear infinite;
}

.emotional-hinge__text strong {
  color: var(--gray-700);
  font-weight: 600;
}

.emotional-hinge__text--justified {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 6rem;
}

.emotional-hinge__spacer {
  height: 8rem;
  position: relative;
  margin-bottom: 2rem;
}

.emotional-hinge__spacer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 6rem;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 50%, transparent 50%);
  background-size: 1.5px 8px;
  background-repeat: repeat-y;
  animation: march-down 0.8s linear infinite;
}

.emotional-hinge__pivot {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--gold-dark);
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1H — THE INVESTMENT
   ═══════════════════════════════════════════════════════════ */
.investment-section {
  background-color: #0f0f0f;
  padding: 8rem 1.5rem;
  color: var(--white);
}

.investment__container {
  max-width: 650px;
  margin: 0 auto;
}

.investment__header {
  text-align: center;
  margin-bottom: 4rem;
}

.investment__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 2rem;
}

.investment__standalone-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.investment__context {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-400);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  display: none;
  /* Hidden, merged dynamically in previous designs */
}

.investment__transition {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  margin-top: 7rem;
  margin-bottom: 5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.investment__transition-divider {
  color: var(--gold-dark);
  font-weight: 300;
  opacity: 0.5;
}

/* Main Pricing Block */
.investment__pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.price-card {
  padding: 3rem 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  text-align: center;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.price-card--primary {
  background: var(--white);
  color: var(--black);
  padding: 4rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.price-card--primary:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.15);
}

.price-card__badge {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translate(-50%, 0);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  background: linear-gradient(135deg, var(--white) 0%, #FDF9EA 100%);
  padding: 0.35rem 1.35rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.15);
}

.price-card--primary .price-card__title {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-bottom: 1rem;
  display: none;
  /* Not in screenshot */
}

.price-card--primary .price-card__amount {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8.5vw, 4.75rem);
  font-weight: 900;
  color: #cda84f;
  line-height: 1;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  letter-spacing: -0.04em;
}

.price-card__term {
  font-size: 0.35em;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: none;
  display: block;
  margin-top: 0.25rem;
}

.price-card__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gray-500);
  margin-top: 1rem;
  margin-bottom: 0;
}

.price-card--secondary {
  background: #161616;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 2.25rem 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.price-card--secondary .price-card__title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.price-card--secondary .price-card__amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #cda84f;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card--secondary .price-card__sub-detail {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  display: block;
}

.price-card--secondary .price-card__desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  margin-top: 0;
}

.price-card--secondary .price-card__benefit {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--white);
  line-height: 1.5;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.price-card__guarantee {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
}

.price-card__guarantee li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--black) !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-card__guarantee .check-icon {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
}

.investment-urgency {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  border: 1px solid rgba(220, 38, 38, 0.3);
  /* Slightly more visible border */
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.08);
  /* Brighter red-tinted background so text pops */
}

.investment-urgency__headline {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: #e53e3e;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.scarcity-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #e53e3e;
}

.investment-urgency__headline strong {
  font-size: 1.15em;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.investment-urgency__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--white);
}

@media (max-width: 768px) {
  .investment__pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1I — IS IT RIGHT FOR YOU
   ═══════════════════════════════════════════════════════════ */
.right-for-you {
  background-color: var(--black);
  color: var(--white);
  padding: 6rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.right-for-you__container {
  max-width: 1000px;
  margin: 0 auto;
}

.right-for-you__header {
  text-align: center;
  margin-bottom: 4rem;
}

.right-for-you__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.fit-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.fit-card--positive {
  border-top: 4px solid var(--gold);
}

.fit-card--negative {
  border-top: 4px solid var(--red-urgent);
}

.fit-card__headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.fit-card__intro {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.fit-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.fit-card__list li {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--gray-300);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.fit-icon {
  margin-right: 0.75rem;
  font-size: 1rem;
  margin-top: 0.2rem;
}

.fit-icon--pos {
  color: var(--green, #10b981);
  /* Use a standard green if not defined in vars */
  font-weight: bold;
}

.fit-icon--neg {
  color: var(--red-urgent);
  font-weight: bold;
}

.fit-card__conclusion {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.right-for-you__transition {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--gray-500);
  font-style: italic;
}

@media (max-width: 768px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1J — READY TO APPLY (FINAL CTA)
   ═══════════════════════════════════════════════════════════ */
.final-cta {
  background: #f4f4f4;
  /* Soft grey off-white to make the card pop */
  padding: 8rem 1.5rem 10rem 1.5rem;
  /* Increased padding for open space */
  position: relative;
  overflow: hidden;
}

/* Subtle background accent removed to open space further */
.final-cta::before {
  display: none;
}

.final-cta__container {
  max-width: 800px;
  /* Slightly wider to accommodate badges */
  margin: 0 auto;
}

.final-cta__content {
  text-align: center;
  background: #ffffff;
  /* Pure white inner card to pop against the off-white section bg */
  border-radius: 16px;
  padding: 3rem 3rem;
  border: 1px solid #eeeeee;
  /* Light subtle border */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  /* Slightly softer airy shadow */
  max-width: 620px;
  margin: 0 auto;
}

.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #111111;
  /* Dark text for contrast */
  margin-bottom: 3rem;
  /* Breathing room below headline */
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Gold Accent Line under Headline */
.final-cta__headline::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.final-cta__selective-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  /* Added font-weight for better visibility */
  color: #444444;
  /* Dark gray for readability */
  margin-bottom: 3rem;
  line-height: 1.6;
}

.final-cta__selective-text p {
  margin-bottom: 0.25rem;
}

.final-cta__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  margin-bottom: 4rem;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  /* Crisp white inner cards */
  border: 1px solid #ededed;
  padding: 1rem 1.75rem;
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  text-align: left;
}

.timeline-step .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.timeline-step .step-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: #111111;
  /* Dark text */
}

.timeline-connector {
  color: var(--gold);
  font-size: 1rem;
  /* Smaller */
  font-weight: 800;
  /* Bolder to hold weight */
  padding: 0.5rem 0;
  opacity: 1;
  /* Full opacity so it's visible on white */
}

.final-cta__urgency {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: #333333;
  /* Darker grey */
  margin-bottom: 5.75rem;
  /* ~92px, added 28px of breathing room before the button */
  line-height: 1.6;
}

.final-cta__urgency p {
  margin-bottom: 0.25rem;
}

.urgency-highlight {
  color: var(--red-urgent);
  font-weight: 800;
}

.final-cta__microcopy {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  /* Slightly larger */
  color: #888888;
  /* Softer medium grey */
  font-style: italic;
  font-weight: 500;
}

.cta-pulse-btn {
  position: relative;
  box-shadow:
    0 8px 25px rgba(255, 60, 40, 0.35),
    /* Toned down central magnet glow for white bg */
    0 0 40px rgba(255, 60, 40, 0.15);
  /* Softer magnet aura */
}

@media (max-width: 600px) {
  .final-cta__headline {
    font-size: 2.25rem;
  }

  .cta-step {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1L — FINAL CTA SECTION (BOTTOM)
   ═══════════════════════════════════════════════════════════ */
.final-cta-bottom {
  background: var(--black-alt, #151515);
  color: var(--white);
  padding: 6rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.final-cta-bottom__container {
  max-width: 800px;
  margin: 0 auto;
}

.cohort-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cohort-status__dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 12px var(--gold);
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

.cohort-status__text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gray-300);
  text-transform: uppercase;
}

.final-cta-bottom__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.final-cta-bottom__body {
  margin-bottom: 2.5rem;
}

.final-cta-bottom__body .highlight-fact {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.final-cta-bottom__urgency {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.final-cta-bottom__urgency-micro {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.final-cta-bottom .btn {
  margin-bottom: 3rem;
  width: 100%;
  max-width: 500px;
}

.final-cta-bottom__meta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  text-transform: uppercase;
}

.final-cta-bottom__meta-row .meta-divider {
  color: var(--gold);
  opacity: 0.5;
  font-weight: 300;
}

.final-cta-bottom__support {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .final-cta-bottom__body .highlight-fact {
    display: block;
    margin: 1rem 0;
  }

  .final-cta-bottom__meta-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .final-cta-bottom__meta-row .meta-divider {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1K — BONUS SECTION
   ═══════════════════════════════════════════════════════════ */
.bonus-section {
  background: var(--black-alt, #151515);
  color: var(--white);
  padding: 6rem 1.5rem 8rem 1.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-section__container {
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-header {
  text-align: center;
  margin-bottom: 4rem;
}

.bonus-eyebrow {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.bonus-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.bonus-intro {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.bonus-subintro {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--gray-300);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.bonus-subheadline {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  text-align: center;
  margin-bottom: 3rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.bonus-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--white);
}

.bonus-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.bonus-card__val {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.bonus-list li {
  margin-bottom: 2rem;
  /* Increased spacing between separate items */
  color: var(--gray-300);
  line-height: 1.6;
}

.bonus-list li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.bonus-card__summary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.bonus-total {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}

.bonus-total__breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-total__breakdown p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--gray-300);
}

.bonus-total__breakdown strong {
  color: var(--white);
  font-size: 1.25rem;
}

.bonus-total__label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-total__amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.bonus-total__included {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-total__included strong {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .bonus-total {
    padding: 2rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--off-white);
  position: relative;
}

.testimonials__aggregate-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto 5rem auto;
  padding: 2.5rem 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.proof-stat__value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.proof-stat__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  font-weight: 700;
}

@media (max-width: 768px) {
  .testimonials__aggregate-proof {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2.5rem 0;
    margin-bottom: 4rem;
  }
}

.testimonials__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.testimonials__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.testimonials__subheading {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  color: var(--gold);
  font-weight: 600;
}

/* FEATURED TRANSFORMATION */
.featured-proof {
  background: transparent;
  border: none;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 8rem;
  align-items: center;
  margin: 0 auto 6rem auto;
  max-width: 1300px;
}

.featured-proof__media {
  display: flex;
  justify-content: center;
}

.featured-proof__image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gray-100);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.featured-proof__content {
  display: flex;
  flex-direction: column;
}

.testimonial-card__role {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold);
  background: var(--black-card);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  line-height: 1.4;
}

.featured-proof__quote {
  font-family: var(--font-display);
  font-size: 2.15rem;
  line-height: 1.35;
  color: var(--black);
  font-weight: 900;
  margin-bottom: 2.5rem;
  position: relative;
  letter-spacing: -0.01em;
}

.featured-proof__quote::before {
  content: '”';
  position: absolute;
  top: -1.5rem;
  left: -2rem;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--black);
  opacity: 0.04;
  line-height: 1;
}

.featured-proof__story {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(0, 0, 0, 0.08);
}

.story-stage {
  display: flex;
  flex-direction: column;
}

.story-stage__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.story-stage p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--gray-700);
  margin: 0;
}

.story-stage strong {
  color: var(--black);
  font-weight: 700;
}

.featured-proof__signature {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--black);
  margin: 0;
}

.featured-proof__signature span {
  font-weight: 700;
  color: var(--gray-700);
}

/* SECONDARY PROOF GRID */
.secondary-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.secondary-card {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.secondary-card__hero-result {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.secondary-card__quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-700);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.secondary-card__context {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.secondary-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.secondary-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gray-100);
}

.secondary-card__author-info {
  display: flex;
  flex-direction: column;
}

.secondary-card__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.secondary-card__trust-anchor {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

@media (max-width: 900px) {
  .featured-proof {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }

  .featured-proof__quote::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .featured-proof__story {
    text-align: left;
    margin: 0 auto 2.5rem auto;
    max-width: 400px;
  }

  .testimonial-card__role {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .secondary-proof-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.testimonials__cta {
  text-align: center;
  margin-top: 7.5rem;
}

.testimonials__cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.testimonials__cta-subtext {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--red-urgent);
  font-weight: 600;
  margin-bottom: 2rem;
}

.testimonials__cta-meta {
  margin-top: 1.5rem;
}

.testimonials__cta-meta p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-500);
}

.testimonials__cta-meta strong {
  color: var(--black);
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════ */
.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-intro__heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.faq-intro__sub {
  font-size: 1rem;
  color: var(--gray-500);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: 2.25rem 0;
  border-bottom: 1px solid #eaeaea;
}

.faq-item:first-child {
  border-top: 1px solid #eaeaea;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 1rem 1rem;
  margin-left: -1rem;
  /* Offset padding so text aligns with the grid */
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 0;
  gap: 1rem;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.faq-question-text {
  flex-grow: 1;
}

.faq-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-item__num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gold);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding-left: 2.5rem;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.faq-item__answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 1rem;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   SITE FOOTER / DISCLAIMER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: var(--gray-400);
  font-size: 0.8125rem;
  padding: 4rem 1.5rem 6rem;
  /* Extra padding at bottom for sticky CTA */
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__logo {
  height: 48px;
  width: auto;
  margin: 0 auto 1.5rem;
  opacity: 1;
  transition: all 0.3s var(--ease-out);
}

.site-footer__logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.site-footer p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.site-footer a {
  color: var(--gray-200);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer .footer-links {
  margin: 0.5rem 0 2rem;
}

.site-footer .footer-links a {
  margin: 0 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   RIGHT FOR YOU SECTION (PSYCHOLOGICAL FILTER)
   ═══════════════════════════════════════════════════════════ */
.right-for-you {
  background: var(--black);
  padding: 6rem 0;
  position: relative;
}

.right-for-you__header {
  text-align: center;
  margin-bottom: 5rem;
}

.right-for-you__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.right-for-you__headline {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

.fit-card {
  border-radius: 12px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .fit-card {
    padding: 2.5rem 1.5rem;
  }
}

.fit-card__headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.fit-card__intro {
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.fit-card__list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.fit-card__list li {
  display: flex;
  align-items: flex-start;
  font-size: 1.175rem;
  /* Upgraded for scannability */
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .fit-card__list li {
    font-size: 1.125rem;
  }
}

.fit-icon {
  flex-shrink: 0;
  margin-right: 1rem;
  font-weight: 900;
  font-size: 1.35rem;
  /* Increased by ~8% */
  margin-top: -0.1rem;
}

.fit-card__conclusion {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: auto;
}

/* 🟢 LEFT CARD — “This Is For You If…” */
.fit-card--positive {
  background: #141414;
  /* Slightly elevated from true black */
  border: 1px solid rgba(255, 215, 0, 0.15);
  /* Subtle gold edge */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 215, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fit-card--positive:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.fit-card--positive .fit-card__intro {
  color: rgba(255, 255, 255, 0.95);
}

.fit-card--positive .fit-card__list li {
  color: rgba(255, 255, 255, 0.9);
}

.fit-icon--pos {
  color: #10B981;
  /* Trust/Go green */
}

.fit-card--positive .fit-card__conclusion {
  color: var(--white);
  border-color: rgba(255, 215, 0, 0.2);
}

/* 🔴 RIGHT CARD — “This Is NOT For You If…” */
.fit-card--negative {
  background: #050505;
  /* Darker, more severe background */
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: none;
  /* Intentionally grounded */
}

.fit-card--negative .fit-card__headline {
  color: rgba(255, 255, 255, 0.85);
  /* Slightly muted headline */
}

.fit-card--negative .fit-card__list li {
  color: rgba(255, 255, 255, 0.65);
  /* Opacity drop for severity */
}

.fit-icon--neg {
  color: #EF4444;
  /* Stop/Warning red */
}

.fit-card--negative .fit-card__conclusion {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.05);
}

.right-for-you__authority {
  text-align: center;
  margin-top: 1rem;
}

.right-for-you__authority p {
  color: var(--gray-200);
  /* Much brighter gray for readability on black */
  font-size: 1rem;
  /* Slightly larger */
  font-weight: 500;
  /* Bolder weight */
  line-height: 1.6;
  font-style: italic;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1K — BONUS SECTION INTRO (ADVANTAGE PREAMBLE)
   ═══════════════════════════════════════════════════════════ */
.advantage-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem auto 4rem;
  text-align: left;
  max-width: 1000px;
}

@media (min-width: 768px) {
  .advantage-intro-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
  }
}

.advantage-manifesto {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--gold);
  padding: 3rem 2.5rem;
  border-radius: 0 16px 16px 0;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-manifesto::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: 1.65rem;
  /* Increased for impact */
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  /* White for the quote text makes it pop against gold icons */
  line-height: 1.4;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.manifesto-author {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gold);
  /* Author in gold to anchor the quote */
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.advantage-promise {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 520px;
}

.promise-headline {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  margin-top: 0;
}

.promise-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin: 0;
}

.promise-text strong {
  color: var(--white);
}

/* 🏆 VALUE BADGES & DOSSIER CARDS */
.value-badge {
  display: inline-block;
  background: rgba(212, 169, 79, 0.12);
  color: #d4a94f;
  border: 1px solid rgba(212, 169, 79, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  box-shadow: 0 0 12px rgba(224, 169, 109, 0.3);
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: badge-shimmer 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes badge-shimmer {
  0% {
    left: -150%;
  }

  25% {
    left: 250%;
  }

  100% {
    left: 250%;
  }
}

.value-badge:hover {
  box-shadow: 0 0 20px rgba(224, 169, 109, 0.6);
  border-color: rgba(224, 169, 109, 0.5);
}

.bonus-header {
  text-align: center;
  margin-bottom: 4rem;
}

.bonus-eyebrow {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.bonus-headline {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
}

.bonus-subheadline {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  margin: 6rem 0 3rem;
}

/* 🎁 BONUS SECTION LAYOUT & CARDS */
.bonus-section {
  padding: 6rem 1.5rem;
  background: radial-gradient(circle at center, rgba(212, 169, 79, 0.06), transparent 60%), #050505;
  color: var(--white);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 5rem;
}

@media (min-width: 768px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bonus-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 3px solid var(--gold);
  /* Re-applied for dossier effect */
  padding: 3.5rem 2.5rem;
  /* Increased white space for premium feel */
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 169, 79, 0.3);
  border-top-color: var(--gold);
  /* Keep the top line solid gold */
}

.bonus-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.bonus-list li {
  margin-bottom: 2rem;
  /* Increased spacing between separate items */
  color: var(--gray-300);
  line-height: 1.6;
}

.bonus-list li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.bonus-list__desc {
  font-size: 0.95rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  margin-left: 0.5rem;
  /* Gentle indent from the heading */
}

.bonus-card__summary {
  font-size: 0.95rem;
  color: var(--gold);
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

/* 💰 ULTIMATE PRICE ANCHOR */
.bonus-total {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
  /* Decisive breathing room */
  background: rgba(212, 169, 79, 0.04);
  /* Very subtle ambient gold wash */
  border: 1px solid rgba(212, 169, 79, 0.15);
  border-top: 3px solid var(--gold);
  /* Gentle gold structural border */
  border-radius: 20px;
  text-align: center;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(212, 169, 79, 0.05);
  /* Soft outer gold glow */
}

.bonus-total__breakdown {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.bonus-total__breakdown p {
  color: var(--gray-300);
  font-size: 1.125rem;
}

.bonus-total__breakdown strong {
  color: var(--white);
}

.bonus-total__label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.bonus-total__amount {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  /* Intense, massive anchor */
  font-weight: 800;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.bonus-total__included {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.bonus-total__included strong {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════ */
/* SECTION GUARANTEE — THE COMMITMENT GUARANTEE                 */
/* ═══════════════════════════════════════════════════════════ */
.guarantee-section {
  padding: 120px 24px;
  background-color: #F6F7F8;
  margin: 32px 0;
}

.guarantee__container {
  max-width: 820px;
  margin: 0 auto;
}

.guarantee-block {
  background-color: transparent;
  padding: 0;
  text-align: left;
}

.guarantee-block__header {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 3.5rem;
}

.guarantee-block__headline {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.guarantee-block__note-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.guarantee-block__intro {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 24px;
}

.guarantee-block__body-text {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.7;
}

.guarantee-block__body-text p {
  margin-bottom: 24px;
}

.guarantee-block__body-text p:last-child {
  margin-bottom: 0;
}

.guarantee-block__divider {
  border: 0;
  height: 1px;
  background: var(--gray-200);
  margin: 3.5rem 0;
}

.guarantee-block__promises {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: left;
}

.promise-item__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.875rem;
}

.promise-item__desc {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
}

.promise-item__desc strong {
  color: var(--black);
  font-weight: 700;
  display: block;
  margin-top: 1rem;
}

.guarantee-block__footer {
  text-align: left;
}

.guarantee-block__short {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.guarantee-block__summary {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.guarantee-block__summary strong {
  font-weight: 800;
  color: var(--black);
}

.guarantee-block__btn {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0;
}

.guarantee-block__microcopy {
  font-family: var(--font-body);
  font-size: 13px;
  color: #777;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .guarantee-section {
    padding: 80px 24px;
  }

  .guarantee-block__headline {
    font-size: 28px;
  }

  .guarantee-block__intro {
    font-size: 16px;
  }

  .guarantee-block__body-text {
    font-size: 16px;
  }

  .promise-item__title {
    font-size: 1.15rem;
  }

  .guarantee-block__summary {
    font-size: 16px;

  }

  .guarantee-block__divider {
    margin: 2.5rem 0;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* FINAL CTA ENHANCEMENTS & STATUS INDICATOR                   */
/* ═══════════════════════════════════════════════════════════ */
.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.official-meta-row {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.7;
  padding-top: 10px;
}

/* ═══════════════════════════════════════════════════════════ */
/* MOBILE OPTIMIZATION (Complete Polish Pass)                   */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* 1. Layout & Container Width */
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  /* Remove Double Horizontal Padding from custom sections */
  .the-system,
  .why-finish,
  .what-you-get,
  .total-value-section,
  .emotional-hinge-section {
    padding-left: 0;
    padding-right: 0;
  }

  .what-you-get {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  /* 2. Typography */
  .section__headline {
    font-size: clamp(32px, 8vw, 40px);
    line-height: 1.15;
    margin-bottom: 1.25rem;
  }

  .section__body {
    font-size: 1.0625rem;
    line-height: 1.6;
  }

  /* Hero */
  .hero {
    padding: 5rem 0 3rem;
  }

  .hero__headline {
    font-size: clamp(2.25rem, 8vw, 2.75rem) !important;
  }

  .hero__subheadline {
    font-size: 1.0625rem;
    padding: 0;
  }

  /* 3. Cards & Components */
  /* References */
  .references-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reference-card {
    padding: 1.5rem;
  }

  /* Problem Pattern */
  .problem-pattern__editorial {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Pillars & Systems */
  .system-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .system-progression {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-finish__grid,
  .systems-grid,
  .bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Finish Cards */
  .finish-card {
    padding: 2.5rem 1.5rem;
  }

  /* Get/Offer/System Cards */
  .core-system-card,
  .get-card,
  .offer-card {
    padding: 2rem 1.25rem;
  }

  .get-card__title,
  .offer-card__title {
    font-size: 1.125rem;
  }

  /* Bonus Cards */
  .bonus-section {
    padding: 4rem 1rem;
  }

  .bonus-card {
    padding: 2rem 1.25rem;
  }

  /* Total Value Box & Pricing */
  .total-value__box {
    padding: 2rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  }

  .total-sum__number {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .highlight-gold-text {
    font-size: 1.5rem !important;
  }

  .pivot-statement {
    font-size: 1.25rem !important;
  }

  .bonus-card__title {
    font-size: 1.25rem;
  }

  .bonus-total {
    padding: 3rem 1.5rem;
  }

  .bonus-total__amount {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .bonus-total__breakdown {
    flex-direction: column;
    gap: 1rem;
  }

  /* Right For You Section */
  .fit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fit-card {
    padding: 2rem 1.5rem;
  }

  /* FAQ */
  .faq-intro {
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 1.25rem 0;
    margin-left: 0;
  }

  .faq-question-text {
    font-size: 1.0625rem;
  }

  .faq-item__answer .faq-answer__inner {
    padding: 0 0 1.25rem 0;
  }

  /* Guarantee Section */
  .guarantee-section {
    padding: 60px 20px;
  }

  .guarantee-block__headline {
    font-size: 28px;
  }

  /* Testimonials */
  .secondary-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-proof {
    flex-direction: column;
    padding: 2rem 1.25rem;
  }

  .featured-proof__quote {
    font-size: 1.35rem;
    /* Reduced from 2.15rem */
  }

  .secondary-card {
    padding: 1.5rem 0rem;
    /* Reduced horizontal padding to allow more width */
    text-align: left;
    /* Align text left so it reads like a personal statement */
  }

  .secondary-card__author {
    justify-content: flex-start;
    flex-direction: row;
    /* Keep profile picture next to name */
    text-align: left;
    gap: 1rem;
    padding-top: 1rem;
    margin-top: 0;
  }

  /* Investment Section */
  .investment__pricing-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .price-card {
    padding: 2.5rem 1.25rem;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .price-card--primary {
    padding: 3rem 1.25rem;
  }

  .price-card--primary .price-card__amount {
    font-size: clamp(3.25rem, 12vw, 4rem);
  }

  .price-card--secondary {
    width: 85% !important;
    max-width: 260px !important;
    padding: 2.25rem 1.25rem !important;
    margin: 0 auto !important;
    border: 1px dashed rgba(255, 255, 255, 0.25) !important;
    background: #161616 !important;
    border-radius: 12px !important;
  }

  .investment__transition {
    margin-top: 4rem;
    margin-bottom: 3rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .investment__transition-divider {
    display: none;
  }

  .investment-urgency {
    padding: 2rem 1.25rem;
  }

  /* Final CTA Section (Ready to Apply) */
  .final-cta {
    padding: 5rem 0 6rem 0;
  }

  .final-cta__content {
    padding: 2.5rem 1.25rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* 4. CTA Buttons */
  .btn {
    min-height: 48px;
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }

  .btn--lg,
  .btn--xl {
    padding: 14px 24px;
    font-size: 1.0625rem;
  }

  /* Final CTAs */
  .final-cta-bottom__headline {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .final-cta-bottom__urgency {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .final-cta-bottom__meta-row,
  .official-meta-row {
    flex-direction: column;
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .final-cta-bottom__meta-row .meta-divider,
  .official-meta-row .meta-divider {
    display: none;
  }

  /* Timeline Steps inside CTA */
  .final-cta__steps {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-step {
    padding: 1rem 1rem;
    gap: 1rem;
  }

  .timeline-connector {
    transform: rotate(0deg);
  }

  /* Bonus Section Header Polish */
  .advantage-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }

  .bonus-header {
    margin-bottom: 3rem;
  }

  .advantage-manifesto {
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 12px 12px 0;
  }

  .value-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .manifesto-quote {
    font-size: 1.35rem;
    line-height: 1.5;
  }

  .bonus-total__label {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP REDIRECT OVERLAY
   ═══════════════════════════════════════════════════════════ */
.whatsapp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.whatsapp-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-overlay__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.whatsapp-overlay__spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.whatsapp-overlay__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-text {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}