/* IRA Skills — Earn With AI Workshop | Landing Page | Mobile-first 390px */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

/* DESIGN TOKENS */
:root {
  /* Background */
  --bg: #010413;
  --bg-alt: #0E1230;
  --surface: #141830;
  --surface-premium: #0F1428;
  --surface-card: #111527;
  --surface-darker: #0A0D1A;

  /* Accent */
  --lime: #19E3A0;
  --gold: #E7B65C;
  --lime-dark: #10C07F;
  --gold-dark: #C99A3A;

  /* Text */
  --text-primary: #F4F4F8;
  --text-secondary: rgba(244, 244, 248, 0.72);
  --text-muted: rgba(244, 244, 248, 0.50);
  --text-dark: #0E1230;

  /* Glows */
  --glow-lime: rgba(25, 227, 160, 0.45);
  --glow-lime-strong: rgba(25, 227, 160, 0.65);
  --glow-gold: rgba(231, 182, 92, 0.40);
  --glow-gold-strong: rgba(231, 182, 92, 0.55);
  --glow-lime-text: rgba(25, 227, 160, 0.30);

  /* Border */
  --border-lime: rgba(25, 227, 160, 0.35);
  --border-gold: rgba(231, 182, 92, 0.40);
  --border-subtle: rgba(244, 244, 248, 0.08);

  /* Radius */
  --radius-card: 20px;
  --radius-button: 50px;
  --radius-badge: 12px;
  --radius-icon: 14px;
  --radius-sm: 10px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;

  /* Section Padding */
  --section-px: 20px;
  --section-py: 45px;

  /* Typography */
  --font: 'Sora', system-ui, sans-serif;
}

/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 4.10vw;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* UTILITIES */
.text-lime {
  color: var(--lime);
  text-shadow: none;
}

.text-gold {
  color: var(--gold);
  text-shadow: none;
}

.text-white {
  color: var(--text-primary);
}

.text-muted {
  color: var(--text-muted);
}

/* Inline neon highlight spans — minimal shadow for body text */
.highlight-lime {
  color: var(--lime);
  font-weight: 700;
  text-shadow: none;
}

.highlight-gold {
  color: var(--gold);
  font-weight: 700;
  text-shadow: none;
}

.hl-lime {
  color: var(--lime);
  text-shadow: none;
}

.hl-gold {
  color: var(--gold);
  text-shadow: none;
}

.hl {
  color: var(--lime);
  font-style: normal;
  font-weight: 700;
  text-shadow: none;
}

.font-300 {
  font-weight: 300;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

.font-800 {
  font-weight: 800;
}

/* CTA BUTTON — SHARED */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4.62vw 6.15vw;
  border-radius: var(--radius-button);
  background: linear-gradient(90deg, #19E3A0 0%, #E7B65C 100%);
  color: #0B0E1A;
  font-family: var(--font);
  font-size: 4.7vw;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  gap: 1.54vw;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 3vw rgba(25, 227, 160, 0.50),
    0 4px 3vw rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 4vw rgba(25, 227, 160, 0.60),
    0 8px 3vw rgba(0, 0, 0, 0.40);
}

.cta-btn:hover::before {
  opacity: 1;
}

.cta-btn:active {
  transform: translateY(0);
}

/* shimmer on CTA */
.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: shimmer 3s infinite 1s;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  40% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

/* SECTION WRAPPER */
.section {
  padding: var(--section-py) var(--section-px);
  position: relative;
  overflow: hidden;
}

.section--dark {
  background: var(--bg);
}

.section--alt {
  background: var(--bg-alt);
}

.section__container {
  max-width: 480px;
  margin: 0 auto;
}

/* SECTION HEADERS */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  text-align: center;
  margin-bottom: 3.08vw;
}

.section-title {
  font-size: 7.5vw;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 3.59vw;
  font-weight: 400;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
  margin-top: 10px
}

/* Divider accents */
.divider-lime {
  display: block;
  width: 12.31vw;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  margin: 3.59vw auto 0;
}

.divider-gold {
  display: block;
  width: 12.31vw;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 3.59vw auto 0;
}

/* FADE-UP REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(7.18vw);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.reveal-delay-5 {
  transition-delay: 0.40s;
}

.reveal-delay-6 {
  transition-delay: 0.48s;
}

/* SECTION 1 — HERO */
#hero {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

/* Top badge */
.hero__badge {
  display: flex;
  align-items: center;
}

/* Top badge */
.hero__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 5.13vw;
}

.hero__badge-pill-new {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 3vw;
  border: 1px solid var(--gold);
  border-radius: 12.82vw;
  background: transparent;
  white-space: nowrap;
}

.hero__badge-star {
  color: var(--gold);
  width: 3.08vw;
  height: 3.08vw;
  flex-shrink: 0;
}

.hero__badge-text {
  font-size: 2.2vw;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__badge-dot {
  color: var(--gold);
  font-size: 3.08vw;
  font-weight: 800;
  line-height: 1;
}

.hero__badge-friendly {
  font-size: 2.5vw;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Headline */
.hero__headline {
  font-size: 8.2vw;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hero__headline .line-lime {
  color: var(--lime);
  display: inline;
  text-shadow: none;
}

.hero__subtext {
  font-size: 3.59vw;
  font-style: italic;
  font-weight: 400;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3.08vw;
}

.hero__body-text {
  font-size: 3.33vw;
  font-weight: 400;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 5.64vw;
}

/* CTA area */
.hero__cta-wrap {
  margin-bottom: 2.56vw;
}

.hero__price-note {
  font-size: 3.33vw;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 2.56vw;
}

.hero__price-note strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Image area */
.hero__image-area {
  position: relative;
  margin-top: 4.62vw;
  width: 100%;
}

.hero__photo {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.hero__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Split Desktop Layout */
.hero__split-layout {
  display: flex;
  flex-direction: column;
  margin: 6.15vw auto 0;
  max-width: 480px;
}

.hero__col-left {
  width: calc(100% + calc(var(--section-px) * 2));
  margin-left: calc(var(--section-px) * -1);
}

.hero__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__col-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6.15vw;
}

/* Webinar Title Line */
.hero__webinar-title-wrap {
  display: flex;
  align-items: center;
  gap: 4.10vw;
  justify-content: center;
}

.hero__webinar-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 182, 92, 0), rgba(231, 182, 92, 0.4));
}

.hero__webinar-line:last-child {
  background: linear-gradient(270deg, rgba(231, 182, 92, 0), rgba(231, 182, 92, 0.4));
}

.hero__webinar-text {
  font-size: 4.10vw;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Details grid */
.hero__details {
  width: 100%;
}

.hero__details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f4f5f8;
  border-radius: 4.10vw;
  box-shadow: 0 4px 7.69vw rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.hero__detail-cell {
  display: flex;
  align-items: center;
  gap: 3.59vw;
  padding: 4.62vw 5.13vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.hero__detail-cell:nth-child(2n) {
  border-right: none;
}

.hero__detail-cell:nth-child(3),
.hero__detail-cell:nth-child(4) {
  border-bottom: none;
}

.hero__detail-icon {
  width: 7.18vw;
  height: 7.18vw;
  color: var(--lime);
  flex-shrink: 0;
}

.hero__detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__detail-value {
  font-size: 3.85vw;
  font-weight: 800;
  color: #111d3a;
  line-height: 1.2;
}

.hero__detail-sub {
  font-size: 3.59vw;
  font-weight: 400;
  color: #334155;
  line-height: 1.2;
}

/* Overriding right column inner spacings */
.hero__col-right .hero__countdown-wrap {
  padding: 0;
  max-width: 100%;
  margin: 0;
}

.hero__col-right .hero__cta-wrap {
  margin-top: 8px;
}

@media (min-width: 900px) {
  .hero__inner {
    max-width: 1100px;
  }

  .hero__split-layout {
    flex-direction: row;
    align-items: center;
    max-width: 1100px;
    gap: 48px;
  }

  .hero__col-left {
    flex: 1.1;
    width: 100%;
    margin-left: 0;
  }

  .hero__photo img {
    border-radius: 12px;
  }

  .hero__col-right {
    flex: 0.9;
  }
}

/* Countdown */
.hero__countdown-wrap {
  max-width: 480px;
  margin: 4.10vw auto 0;
}

.hero__countdown {
  background: rgba(20, 24, 48, 0.90);
  border: 1px solid var(--border-subtle);
  border-radius: 4.10vw;
  padding: 5.13vw;
  text-align: center;
}

.hero__countdown-label {
  font-size: 3.08vw;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 3.08vw;
  letter-spacing: 0.05em;
}

.hero__countdown-timer {
  display: flex;
  justify-content: center;
  gap: 3.08vw;
  align-items: center;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-num {
  font-size: 10.26vw;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  text-shadow: none;
  letter-spacing: -0.02em;
}

.countdown-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.countdown-sep {
  font-size: 9.23vw;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  padding-bottom: 4.62vw;
  opacity: 0.7;
}

/* SECTION 2 — WHAT CAN AI DO FOR YOU */
#ai-do {
  background: var(--bg);
}

.ai-do__header {
  margin-bottom: 7.18vw;
}

.ai-do__cards {
  display: flex;
  flex-direction: column;
  gap: 3.59vw;
  margin-bottom: 7.18vw;
}

.ai-do__card {
  display: flex;
  align-items: flex-start;
  gap: 4.10vw;
  background: #07091a;
  border-radius: var(--radius-card);
  padding: 5.13vw 4.62vw;
  border: 1.5px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-do__card:hover {
  transform: translateY(-2px);
}

.ai-do__card--lime {
  border-color: rgba(25, 227, 160, 0.55);
  box-shadow:
    0 0 22px rgba(25, 227, 160, 0.28),
    inset 0 0 40px rgba(25, 227, 160, 0.06);
}

.ai-do__card--gold {
  border-color: rgba(231, 182, 92, 0.55);
  box-shadow:
    0 0 22px rgba(231, 182, 92, 0.28),
    inset 0 0 40px rgba(231, 182, 92, 0.06);
}

.ai-do__icon-box {
  flex-shrink: 0;
  width: 17.44vw;
  height: 17.44vw;
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-do__icon-box--lime {
  background: #050a14;
  border: 1.5px solid rgba(25, 227, 160, 0.55);
  box-shadow: 0 0 14px rgba(25, 227, 160, 0.30);
}

.ai-do__icon-box--gold {
  background: #0e0a04;
  border: 1.5px solid rgba(231, 182, 92, 0.55);
  box-shadow: 0 0 14px rgba(231, 182, 92, 0.30);
}

.ai-do__icon-box svg {
  width: 9.74vw;
  height: 9.74vw;
}

.ai-do__card-content {}

.ai-do__card-title {
  font-size: 4.62vw;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.54vw;
}



.ai-do__card-desc {
  font-size: 3.33vw;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* SECTION 3 — FOR YOU IF */
#for-you {
  background: var(--bg);
}

.for-you__header {
  margin-bottom: 7.18vw;
}

.for-you__card {
  background: var(--surface-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-lime);
  box-shadow:
    0 0 10.26vw rgba(25, 227, 160, 0.14),
    0 -4px 7.69vw rgba(25, 227, 160, 0.20) inset,
    0 0 0 1px rgba(25, 227, 160, 0.08) inset;
  overflow: hidden;
  margin-bottom: 5.13vw;
  position: relative;
}

/* Top glow leak */
.for-you__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  border-radius: 2px;
  opacity: 0.8;
}

.for-you__list,
.disqualifier__list {
  padding: 20px 16px;
}

.for-you__item {
  display: flex;
  align-items: flex-start;
  gap: 3.59vw;
  padding: 4.62vw 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.for-you__item:last-child {
  border-bottom: none;
}

.check-icon {
  flex-shrink: 0;
  width: 9.23vw;
  height: 9.23vw;
  border-radius: 8px;
  background: linear-gradient(135deg, #19E3A0 0%, #10C07F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 3vw rgba(25, 227, 160, 0.35);
}

.check-icon svg {
  width: 4.62vw;
  height: 4.62vw;
  color: #0B0E1A;
}

.for-you__item-text {
  font-size: 3.85vw;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.4;
}

/* Bottom note */
.for-you__note {
  font-size: 3.59vw;
  font-style: italic;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 6.15vw;
}

/* SECTION 4 — PLEASE DON'T REGISTER IF (DISQUALIFIER) */
#disqualifier {
  background: var(--bg-alt);
}

.disqualifier__header {
  margin-bottom: 7.18vw;
}

.disqualifier__title .text-gold {
  text-shadow: 0 0 6.15vw rgba(231, 182, 92, 0.45);
}

.disqualifier__card {
  background: var(--surface-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-gold);
  box-shadow:
    0 0 10.26vw rgba(231, 182, 92, 0.12),
    0 -4px 7.69vw rgba(231, 182, 92, 0.15) inset;
  overflow: hidden;
  margin-bottom: 6.15vw;
  position: relative;
}

.disqualifier__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0.8;
}

.disqualifier__item {
  display: flex;
  align-items: flex-start;
  gap: 3.59vw;
  padding: 4.62vw 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.disqualifier__item:last-child {
  border-bottom: none;
}

.x-icon {
  flex-shrink: 0;
  width: 10.26vw;
  height: 10.26vw;
  border-radius: 2.56vw;
  background: linear-gradient(135deg, #E7B65C 0%, #C99A3A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 3vw rgba(231, 182, 92, 0.35);
}

.x-icon svg {
  width: 5.13vw;
  height: 5.13vw;
  color: #0B0E1A;
}

.disqualifier__item-text {
  font-size: 3.85vw;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.4;
}

.disqualifier__note {
  font-size: 3.59vw;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 6.15vw;
}

/* SECTION 5 — DAY BY DAY CURRICULUM */
#curriculum {
  background: var(--bg);
}

.curriculum__header {
  margin-bottom: 7.18vw;
}

.curriculum__cards {
  display: flex;
  flex-direction: column;
  gap: 4.10vw;
  margin-bottom: 6.15vw;
}

.day-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.day-card--lime {
  background: var(--surface-card);
  border: 1px solid rgba(25, 227, 160, 0.28);
  box-shadow: 0 0 14px rgba(25, 227, 160, 0.15), inset 0 0 24px rgba(25, 227, 160, 0.05);
}

.day-card--gold {
  background: var(--surface-card);
  border: 1px solid rgba(231, 182, 92, 0.28);
  box-shadow: 0 0 14px rgba(231, 182, 92, 0.15), inset 0 0 24px rgba(231, 182, 92, 0.05);
}

.day-card__header {
  background-color: #08112a;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 5.13vw 5.13vw 4.10vw;
  gap: 3.08vw;
  position: relative;
}

.day-card__header-left {}

.day-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 3.08vw;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 2.56vw;
}

.day-badge--lime {
  background: var(--lime);
  color: #0B0E1A;
}

.day-badge--gold {
  background: var(--gold);
  color: #0B0E1A;
}

.day-card__title {
  font-size: 4.87vw;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  width: 90%;
}

.day-card__icon-area {
  flex-shrink: 0;
  width: 17vw;
  height: 17vw;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  position: static;
}

.day-card__icon-area svg {
  width: 14.36vw;
  height: 14.36vw;
}

.day-card__body {
  padding: 5.13vw 5.13vw;
}

.day-card__desc {
  font-size: 3.33vw;
  color: var(--text-secondary);
  margin-bottom: 3.08vw;
  line-height: 1.55;
}

.day-card__checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.day-check {
  display: flex;
  align-items: flex-start;
  gap: 2.56vw;
  font-size: 3.33vw;
  color: var(--text-secondary);
  line-height: 1.45;
}

.day-check-icon {
  flex-shrink: 0;
  width: 4.10vw;
  height: 4.10vw;
  margin-top: 1px;
  filter: drop-shadow(0 0 6px rgba(25, 227, 160, 0.5));
}

.day-check-icon rect {
  fill: var(--lime) !important;
}

.day-check-icon path {
  stroke: #0B0E1A !important;
}

/* Tool tags */
.day-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3.59vw;
}

.day-tag {
  padding: 5px 3.08vw;
  border-radius: 1.54vw;
  font-size: 3.08vw;
  font-weight: 600;
  border: 1px solid rgba(231, 182, 92, 0.40);
  color: var(--text-secondary);
  background: rgba(231, 182, 92, 0.06);
}

/* Quote block */
.day-card__quote {
  margin-top: 3.59vw;
  padding: 2.56vw 3.59vw;
  border-left: 2px solid var(--lime);
  background: rgba(25, 227, 160, 0.06);
  border-radius: 0 8px 8px 0;
  font-size: 3.33vw;
  font-style: italic;
  color: var(--text-secondary);
}

.curriculum__note {
  font-size: 3.33vw;
  font-style: italic;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 6.15vw;
}

/* SECTION 6 — MARKET OPPORTUNITY (WHAT PEOPLE ARE BUYING) */
#market {
  background: var(--bg-alt);
}

.market__header {
  margin-bottom: 7.18vw;
}

.market__header .section-subtitle {
  font-style: italic;
}

.market__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.08vw;
  margin-bottom: 5.13vw;
}

.market-card {
  background: linear-gradient(160deg, #141830 0%, #0d1228 100%);
  border-radius: 4.10vw;
  padding: 5.13vw 3.59vw 4.62vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.59vw;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.market-card:hover {
  transform: translateY(-3px);
}

.market-card--lime {
  border: 1.5px solid rgba(25, 227, 160, 0.28);
  box-shadow: 0 0 14px rgba(25, 227, 160, 0.10);
}

.market-card--gold {
  border: 1.5px solid rgba(231, 182, 92, 0.28);
  box-shadow: 0 0 14px rgba(231, 182, 92, 0.10);
}

.market-card__icon {
  width: 15.38vw;
  height: 15.38vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.59vw;
}


.market-card__icon img,
.market-card__icon svg {
  width: 9.23vw;
  height: 9.23vw;
}

.market-card--lime .market-card__icon img {
  animation: iconGlowPulse 3s ease-in-out infinite;
}

.market-card--gold .market-card__icon img {
  animation: iconGoldPulse 3s ease-in-out infinite;
}

.market-card__label {
  font-size: 3.59vw;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.market__footer-note {
  background: rgba(25, 227, 160, 0.06);
  border: 1px solid rgba(25, 227, 160, 0.20);
  border-radius: 3.08vw;
  padding: 4.10vw;
  font-size: 3.59vw;
  font-style: italic;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 6.15vw;
}

/* SECTION 7 — TESTIMONIALS (WHY 55,000+ RATE THIS) */
#testimonials {
  background: var(--bg);
}

.testimonials__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 3.08vw;
}

.testimonials__eyebrow span {
  color: var(--text-muted);
}

.testimonials__header {
  margin-bottom: 6.15vw;
}

.testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 3.08vw;
  margin-bottom: 6.15vw;
}

.testi-card {
  background: var(--surface-card);
  border-radius: 4.10vw;
  padding: 4.10vw;
  border: 1px solid rgba(25, 227, 160, 0.18);
  transition: border-color 0.25s;
}

.testi-card:nth-child(even) {
  border-color: rgba(231, 182, 92, 0.22);
}

.testi-card:hover {
  border-color: rgba(25, 227, 160, 0.40);
}

.testi-card:nth-child(even):hover {
  border-color: rgba(231, 182, 92, 0.45);
}

.testi-card__top {
  display: flex;
  align-items: center;
  gap: 2.56vw;
  margin-bottom: 2.56vw;
}

.testi-card__platform {
  width: 8.21vw;
  height: 8.21vw;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.59vw;
  font-weight: 800;
  flex-shrink: 0;
}

.platform-google {
  background: #fff;
  font-size: 4.62vw;
}

.platform-star {
  background: #00B67A;
  color: white;
  font-size: 4.10vw;
}

.testi-card__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 4.10vw;
}

.testi-card__quote {
  font-size: 3.33vw;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3.08vw;
  font-style: italic;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 2.56vw;
}

.testi-card__avatar {
  width: 10.26vw;
  height: 10.26vw;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  border: 2px solid rgba(25, 227, 160, 0.35);
}

.testi-card__avatar--gold {
  border-color: rgba(231, 182, 92, 0.35);
}

.testi-card__name {
  font-size: 3.33vw;
  font-weight: 700;
  color: var(--text-primary);
}

.testi-card__city {
  font-size: 3.08vw;
  color: var(--text-muted);
}

.testimonials__footer {
  text-align: center;
  font-size: 3.33vw;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6.15vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonials__footer span {
  color: var(--text-muted);
}

/* SECTION 8 — MENTOR */
#mentor {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.mentor__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--lime);
  text-align: center;
  margin-bottom: 2.56vw;
}

.mentor__headline {
  font-size: 7.69vw;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 4px;
}

.mentor__name {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 7.69vw rgba(231, 182, 92, 0.50);
}

.mentor__subtitle {
  font-size: 3.59vw;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.54vw;
}

.mentor__photo-wrap {
  position: relative;
  margin: 5.13vw -5.13vw 0;
}

.mentor__circuit-dots {
  display: none;
}

.mentor__photo-img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  /* fade into background at bottom */
  mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
}

.mentor__badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.56vw;
  margin-top: -5vw;
  margin-bottom: 5.13vw;
}

.mentor-badge {
  display: flex;
  align-items: center;
  gap: 2.2vw;
  background: rgba(20, 24, 48, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 2.4vw;
  padding-left: 3vw;
  backdrop-filter: blur(8px);
}

.mentor-badge__icon {
  flex-shrink: 0;
  width: 4vw;
  height: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.mentor-badge__text {}

.mentor-badge__val {
  font-size: 2.6vw;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  line-height: 1.2;
}

.mentor-badge__lbl {
  font-size: 2.56vw;
  color: var(--text-muted);
  display: block;
}

.mentor__cred-card {
  background: rgba(15, 20, 40, 0.90);
  border: 1px solid var(--border-lime);
  border-radius: 4.10vw;
  padding: 5.13vw;
  margin-bottom: 6.15vw;
}

.mentor__cred-list {
  display: flex;
  flex-direction: column;
  gap: 3.59vw;
}

.mentor-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 3.08vw;
  font-size: 3.59vw;
  color: var(--text-primary);
  line-height: 1.4;
}

.mentor-cred-item .check-icon {
  width: 7.18vw;
  height: 7.18vw;
  border-radius: 1.54vw;
}

.mentor-cred-item .check-icon svg {
  width: 3.59vw;
  height: 3.59vw;
}

.mentor-cred-item strong {
  color: var(--lime);
}

.mentor__tagline {
  font-size: 3.08vw;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 6.15vw;
}

/* SECTION 9 — BONUS VALUE STACK */
#bonus {
  background: var(--bg);
}

.bonus__header {
  margin-bottom: 7.18vw;
}

/* The gold certificate card */
.bonus__certificate {
  border: 2px solid var(--gold);
  border-radius: 5.64vw;
  background: var(--surface-card);
  box-shadow:
    0 0 12.82vw rgba(231, 182, 92, 0.25),
    0 0 30.77vw rgba(231, 182, 92, 0.10),
    inset 0 0 15.38vw rgba(231, 182, 92, 0.04);
  position: relative;
  margin-bottom: 5.13vw;
  overflow: hidden;
}

.bonus__ribbon-wrap {
  position: relative;
  text-align: center;
  padding: 0;
  margin-top: 5vw;
  margin-bottom: 2vw;
  width: 80%;
  margin: 6vw auto;
  margin-top: 8vw;
}

.bonus__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 3.08vw;
  background: linear-gradient(135deg, #D4A017 0%, #E7B65C 40%, #C99A3A 100%);
  color: #1a0f00;
  font-size: 3.59vw;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3.08vw 7.18vw;
  border-radius: 1.54vw;
  box-shadow: 0 4px 5.13vw rgba(231, 182, 92, 0.40);
  position: relative;
}

.bonus__ribbon::before,
.bonus__ribbon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  width: 0;
  height: 0;
  border-style: solid;
}

.bonus__ribbon::before {
  left: 0;
  border-width: 8px 0 0 3.08vw;
  border-color: transparent transparent transparent #9A7020;
}

.bonus__ribbon::after {
  right: 0;
  border-width: 8px 3.08vw 0 0;
  border-color: transparent #9A7020 transparent transparent;
}

/* Laurels */
.bonus__laurel {
  position: absolute;
  top: 3.59vw;
  font-size: 8.21vw;
  opacity: 0.75;
  color: var(--gold);
  line-height: 1;
}

.bonus__laurel--left {
  left: 3.59vw;
  transform: scaleX(-1);
}

.bonus__laurel--right {
  right: 3.59vw;
}

/* Bonus rows */
.bonus__rows {
  padding: 0 5.13vw;
}

.bonus__row {
  display: flex;
  align-items: center;
  gap: 3.59vw;
  padding: 4.10vw 0;
  border-bottom: 1.5px dashed rgba(231, 182, 92, 0.25);
}

.bonus__row:last-child {
  border-bottom: none;
}

.bonus__gift-icon {
  flex-shrink: 0;
  font-size: 5.64vw;
  color: var(--gold);
  width: 7.18vw;
  text-align: center;
}

.bonus__gift-icon svg {
  width: 6.15vw;
  height: 6.15vw;
  color: var(--gold);
}

.bonus__row-label {
  flex: 1;
  font-size: 3.59vw;
  color: var(--text-secondary);
  line-height: 1.4;
}

.bonus__row-label strong {
  color: var(--text-primary);
  font-weight: 700;
}

.bonus__row-price {
  flex-shrink: 0;
  padding: 5px 3.08vw;
  border-radius: 12.82vw;
  border: 1px solid var(--border-gold);
  background: rgba(231, 182, 92, 0.08);
  font-size: 3.33vw;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* Total reveal */
.bonus__total {
  margin: 0 0 0;
  padding: 5.13vw;
  background: var(--surface-darker);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Gold separator line */
.bonus__separator {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
  margin: 0;
}

.bonus__total-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  margin-bottom: 2px;
}

.bonus__total-label {
  font-size: 3.08vw;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bonus__total-strikethrough {
  font-size: 4.10vw;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--gold);
}

.bonus__price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.56vw;
}

.bonus__today-label {
  font-size: 3.08vw;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bonus__price-big {
  font-size: 64px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  text-shadow:
    0 0 6.15vw rgba(25, 227, 160, 0.80),
    0 0 15.38vw rgba(25, 227, 160, 0.40),
    0 0 30.77vw rgba(25, 227, 160, 0.20);
  letter-spacing: -0.02em;
}

.bonus__footnote {
  font-size: 3.33vw;
  font-style: italic;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 6.15vw;
  line-height: 1.6;
}

/* SECTION 10 — FINAL CTA */
#final-cta {
  background-color: var(--bg);
  background-image: url('../assests/Mobile-Background.webp');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

/* Ambient floating icons */
.final-cta__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ambient-icon {
  position: absolute;
  opacity: 0.06;
  animation: ambientFloat 8s ease-in-out infinite;
}

.ambient-icon:nth-child(1) {
  top: 8%;
  left: 5%;
  font-size: 15.38vw;
  animation-delay: 0s;
}

.ambient-icon:nth-child(2) {
  top: 15%;
  right: 6%;
  font-size: 12.31vw;
  animation-delay: -2s;
}

.ambient-icon:nth-child(3) {
  top: 40%;
  left: 3%;
  font-size: 13.33vw;
  animation-delay: -4s;
}

.ambient-icon:nth-child(4) {
  top: 55%;
  right: 4%;
  font-size: 44px;
  animation-delay: -1.5s;
}

.ambient-icon:nth-child(5) {
  top: 72%;
  left: 8%;
  font-size: 10.26vw;
  animation-delay: -3s;
}

@keyframes ambientFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-12px) rotate(5deg);
  }

  66% {
    transform: translateY(6px) rotate(-3deg);
  }
}

.final-cta__inner {
  position: relative;
  z-index: 2;
}

.final-cta__headline {
  font-size: 7.21vw;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 2.56vw;
  color: var(--text-primary);
}

.final-cta__headline .hl-lime {
  color: var(--lime);
  text-shadow: 0 0 6.15vw rgba(25, 227, 160, 0.50);
}

.final-cta__headline .hl-gold {
  color: var(--gold);
  text-shadow: 0 0 6.15vw rgba(231, 182, 92, 0.40);
}

.final-cta__pre-headline {
  font-size: 5vw;
  font-style: italic;
  font-weight: 300;
  color: #ccc;
  text-align: center;
  margin-bottom: 3vw;
}

.final-cta__sub {
  font-size: 3.85vw;
  color: #fff;
  text-align: center;
  margin-bottom: 3.08vw;
}

.final-cta__body {
  font-size: 3.59vw;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.7;
}

.earn-with-ai {
  color: var(--gold);
  font-size: 8vw;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(231, 182, 92, 0.6);
  display: block;
  margin-top: 1vw;
}

.cta-btn--gradient {
  background: linear-gradient(90deg, #19e3a0 0%, #e7b65c 100%);
  color: #000 !important;
  font-weight: 800;
  border: none;
  text-shadow: none;
}

/* Divider */
.final-cta__divider {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(25, 227, 160, 0.9), transparent);
  margin: 14vw 0;
  position: relative;
  box-shadow: 0 0 15px rgba(25, 227, 160, 0.6);
}

.final-cta__divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px 8px rgba(25, 227, 160, 0.9);
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(25, 227, 160, 0.80);
  }

  50% {
    box-shadow: 0 0 18px rgba(25, 227, 160, 1.0), 0 0 30px rgba(25, 227, 160, 0.50);
  }
}

.final-cta__cta-note {
  font-size: 3.33vw;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 3.08vw;
  line-height: 1.6;
}

.final-cta__cta-note strong {
  color: var(--lime);
}

.final-cta__security {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2vw;
  margin-top: 7.18vw;
  font-size: 3.08vw;
  color: var(--text-muted);
}

.final-cta__security-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.final-cta__security svg {
  width: 3.59vw;
  height: 3.59vw;
  color: var(--lime);
}

/* Glowing CTA override */
#final-cta .cta-btn {
  box-shadow:
    0 0 3vw rgba(25, 227, 160, 0.55),
    0 8px 3vw rgba(0, 0, 0, 0.40);
  font-size: 3.55vw;
  padding: 5.13vw 6.15vw;
}

#final-cta .cta-btn:hover {
  box-shadow:
    0 0 4vw rgba(25, 227, 160, 0.70),
    0 8px 3vw rgba(0, 0, 0, 0.50);
}

/* FOOTER */
#footer {
  background: var(--bg);
  padding: 7.18vw var(--section-px) 9.23vw;
  border-top: 1px solid var(--border-subtle);
}

.footer__inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.footer__copy {
  font-size: 3.08vw;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer__copy a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* GLOW PULSE ON ICONS */
@keyframes iconGlowPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(25, 227, 160, 0.50));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(25, 227, 160, 0.90));
  }
}

@keyframes iconGoldPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(231, 182, 92, 0.50));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(231, 182, 92, 0.90));
  }
}

.ai-do__card--lime .ai-do__icon-box svg {
  animation: iconGlowPulse 3s ease-in-out infinite;
}

.ai-do__card--gold .ai-do__icon-box svg {
  animation: iconGoldPulse 3s ease-in-out infinite;
}

.day-card--lime .day-card__icon-area img {
  animation: iconGlowPulse 3s ease-in-out infinite;
}

.day-card--gold .day-card__icon-area img {
  animation: iconGoldPulse 3s ease-in-out infinite;
}

/* Desktop Overrides for Mobile VW scaling */
@media (min-width: 768px) {


  html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }

  /* UTILITIES */
  .text-lime {
    color: var(--lime);
    text-shadow: none;
  }

  .text-gold {
    color: var(--gold);
    text-shadow: none;
  }

  /* Inline neon highlight spans — no shadow on body text at desktop either */
  .highlight-lime {
    color: var(--lime);
    font-weight: 700;
    text-shadow: none;
  }

  .highlight-gold {
    color: var(--gold);
    font-weight: 700;
    text-shadow: none;
  }

  .hl-lime {
    color: var(--lime);
    text-shadow: none;
  }

  .hl-gold {
    color: var(--gold);
    text-shadow: none;
  }

  .hl {
    color: var(--lime);
    font-style: normal;
    font-weight: 700;
    text-shadow: none;
  }

  /* CTA BUTTON — SHARED */
  .cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 550px;
    margin: auto;
    padding: 18px 24px;
    border-radius: var(--radius-button);
    background: linear-gradient(90deg, #19E3A0 0%, #E7B65C 100%);
    color: #0B0E1A;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-align: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    box-shadow:
      0 0 28px rgba(25, 227, 160, 0.55),
      0 0 60px rgba(25, 227, 160, 0.20),
      0 4px 16px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
  }

  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow:
      0 0 40px rgba(25, 227, 160, 0.70),
      0 0 80px rgba(25, 227, 160, 0.25),
      0 8px 24px rgba(0, 0, 0, 0.40);
  }

  /* SECTION HEADERS */
  .section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    text-align: center;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    color: var(--text-primary);
  }

  .section-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
  }

  /* Divider accents */
  .divider-lime {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--lime);
    border-radius: 2px;
    margin: 14px auto 0;
  }

  .divider-gold {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 14px auto 0;
  }

  /* FADE-UP REVEAL ANIMATION */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  /* Top badge */
  .hero__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero__badge-pill-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    background: transparent;
  }

  .hero__badge-star {
    color: var(--gold);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .hero__badge-dot {
    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
  }

  /* Headline */
  .hero__headline {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.12;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 4px;
  }

  .hero__headline .line-lime {
    color: var(--lime);
    display: inline-block;
    text-shadow:
      0 0 20px rgba(25, 227, 160, 0.6),
      0 0 60px rgba(25, 227, 160, 0.25);
  }

  .hero__subtext {
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 12px;
  }

  .hero__body-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  /* CTA area */
  .hero__cta-wrap {
    margin-bottom: 10px;
  }

  .hero__price-note {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 10px;
  }

  /* Image area */
  .hero__image-area {
    position: relative;
    margin-top: 18px;
    width: 100%;
  }

  /* Split Desktop Layout */
  .hero__split-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 24px auto 0;
    max-width: 480px;
  }

  .hero__col-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Webinar Title Line */
  .hero__webinar-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
  }

  .hero__webinar-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
  }

  .hero__details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f4f5f8;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }

  .hero__detail-cell {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }

  .hero__detail-icon {
    width: 28px;
    height: 28px;
    color: var(--lime);
    flex-shrink: 0;
  }

  .hero__detail-value {
    font-size: 15px;
    font-weight: 800;
    color: #111d3a;
    line-height: 1.2;
  }

  .hero__detail-sub {
    font-size: 14px;
    font-weight: 400;
    color: #334155;
    line-height: 1.2;
  }

  /* Countdown */
  .hero__countdown-wrap {
    max-width: 480px;
    margin: 16px auto 0;
  }

  .hero__countdown {
    background: rgba(20, 24, 48, 0.90);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
  }

  .hero__countdown-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
  }

  .hero__countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
  }

  .countdown-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--lime);
    line-height: 1;
    text-shadow:
      0 0 16px rgba(25, 227, 160, 0.70),
      0 0 40px rgba(25, 227, 160, 0.35);
    letter-spacing: -0.02em;
  }

  .countdown-sep {
    font-size: 36px;
    font-weight: 800;
    color: var(--lime);
    line-height: 1;
    padding-bottom: 18px;
    opacity: 0.7;
  }

  .ai-do__header {
    margin-bottom: 28px;
  }

  .ai-do__cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }

  .ai-do__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--surface-card);
    border-radius: var(--radius-card);
    padding: 20px 18px;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .ai-do__card--lime {
    border-color: rgba(25, 227, 160, 0.25);
    box-shadow: 0 0 24px rgba(25, 227, 160, 0.10), inset 0 0 40px rgba(25, 227, 160, 0.04);
  }

  .ai-do__card--gold {
    border-color: rgba(231, 182, 92, 0.25);
    box-shadow: 0 0 24px rgba(231, 182, 92, 0.12), inset 0 0 40px rgba(231, 182, 92, 0.04);
  }

  .ai-do__icon-box {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: var(--radius-icon);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ai-do__icon-box--lime {
    background: rgba(25, 227, 160, 0.10);
    border: 1.5px solid rgba(25, 227, 160, 0.35);
    box-shadow: 0 0 16px rgba(25, 227, 160, 0.20);
  }

  .ai-do__icon-box--gold {
    background: rgba(231, 182, 92, 0.10);
    border: 1.5px solid rgba(231, 182, 92, 0.35);
    box-shadow: 0 0 16px rgba(231, 182, 92, 0.20);
  }

  .ai-do__icon-box svg {
    width: 38px;
    height: 38px;
  }

  .ai-do__card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
  }



  .ai-do__card-desc {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.55;
  }

  .for-you__header {
    margin-bottom: 28px;
  }

  .for-you__card {
    background: var(--surface-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-lime);
    box-shadow:
      0 0 40px rgba(25, 227, 160, 0.14),
      0 -4px 30px rgba(25, 227, 160, 0.20) inset,
      0 0 0 1px rgba(25, 227, 160, 0.08) inset;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
  }

  .for-you__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .check-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #19E3A0 0%, #10C07F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px rgba(25, 227, 160, 0.50);
  }

  .check-icon svg {
    width: 18px;
    height: 18px;
    color: #0B0E1A;
  }

  .for-you__item-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.4;
  }

  /* Bottom note */
  .for-you__note {
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .disqualifier__header {
    margin-bottom: 28px;
  }

  .disqualifier__title .text-gold {
    text-shadow: 0 0 24px rgba(231, 182, 92, 0.45);
  }

  .disqualifier__card {
    background: var(--surface-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-gold);
    box-shadow:
      0 0 40px rgba(231, 182, 92, 0.12),
      0 -4px 30px rgba(231, 182, 92, 0.15) inset;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
  }

  .disqualifier__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  }

  .x-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #E7B65C 0%, #C99A3A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px rgba(231, 182, 92, 0.50);
  }

  .x-icon svg {
    width: 20px;
    height: 20px;
    color: #0B0E1A;
  }

  .disqualifier__item-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.4;
  }

  .disqualifier__note {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .curriculum__header {
    margin-bottom: 28px;
  }

  .curriculum__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .day-card--lime {
    background: var(--surface-card);
    border: 1px solid rgba(25, 227, 160, 0.25);
    box-shadow: 0 0 28px rgba(25, 227, 160, 0.08);
  }

  .day-card--gold {
    background: var(--surface-card);
    border: 1px solid rgba(231, 182, 92, 0.25);
    box-shadow: 0 0 28px rgba(231, 182, 92, 0.10);
  }

  .day-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 20px 16px;
    gap: 12px;
  }

  .day-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }

  .day-card__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
  }

  .day-card__icon-area {
    flex-shrink: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
  }

  .day-card__icon-area svg {
    width: 56px;
    height: 56px;
  }

  .day-card__body {
    padding: 20px 20px;
  }

  .day-card__desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.55;
  }

  .day-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.45;
  }

  .day-check-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 1px;
  }

  /* Tool tags */
  .day-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }

  .day-tag {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(231, 182, 92, 0.40);
    color: var(--text-secondary);
    background: rgba(231, 182, 92, 0.06);
  }

  /* Quote block */
  .day-card__quote {
    margin-top: 14px;
    padding: 10px 14px;
    border-left: 2px solid var(--lime);
    background: rgba(25, 227, 160, 0.06);
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    font-style: italic;
    color: var(--text-secondary);
  }

  .curriculum__note {
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .market__header {
    margin-bottom: 28px;
  }

  .section-subtitle {
    margin-top: 10px;
    font-style: italic;
  }

  .market__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .market-card {
    background: var(--surface-card);
    border-radius: 16px;
    padding: 20px 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .market-card--lime {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--lime);
    box-shadow: -4px 0 20px rgba(25, 227, 160, 0.15);
  }

  .market-card--gold {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--gold);
    box-shadow: -4px 0 20px rgba(231, 182, 92, 0.15);
  }

  .market-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .market-card__icon img,
  .market-card__icon svg {
    width: 52px;
    height: 52px;
  }

  .market-card__label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
  }

  .market__footer-note {
    max-width: max-content;
    background: rgba(25, 227, 160, 0.06);
    border: 1px solid rgba(25, 227, 160, 0.20);
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    margin: auto;
    margin-bottom: 24px;
  }

  .testimonials__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 12px;
  }

  .testimonials__header {
    margin-bottom: 24px;
  }

  .testimonials__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .testi-card {
    background: var(--surface-card);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(25, 227, 160, 0.18);
    transition: border-color 0.25s;
  }

  .testi-card__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .testi-card__platform {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
  }

  .platform-google {
    background: #fff;
    font-size: 18px;
  }

  .platform-star {
    background: #00B67A;
    color: white;
    font-size: 16px;
  }

  .testi-card__stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    font-size: 16px;
  }

  .testi-card__quote {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
  }

  .testi-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .testi-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--surface), #1a2040);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--lime);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(25, 227, 160, 0.25);
  }

  .testi-card__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
  }

  .testi-card__city {
    font-size: 12px;
    color: var(--text-muted);
  }

  .testimonials__footer {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .mentor__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--lime);
    text-align: center;
    margin-bottom: 10px;
  }

  .mentor__headline {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 4px;
  }

  .mentor__name {
    display: block;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(231, 182, 92, 0.50);
  }

  .mentor__subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 6px;
  }

  .mentor__photo-wrap {
    position: relative;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mentor__circuit-dots {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .mentor__photo-img {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 2px solid rgba(25, 227, 160, 0.30);
    box-shadow: 0 0 50px rgba(25, 227, 160, 0.12), 0 0 100px rgba(231, 182, 92, 0.08);
    mask-image: none;
    -webkit-mask-image: none;
  }

  .mentor__badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0;
  }

  .mentor-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 24, 48, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 14px 24px;
    backdrop-filter: blur(8px);
  }

  .mentor-badge__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
  }

  .mentor-badge__val {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    display: inline-block;
    line-height: 1.2;
  }

  .mentor-badge__lbl {
    font-size: 14px;
    color: var(--text-muted);
    display: inline-block;
  }

  .mentor__cred-card {
    background: rgba(15, 20, 40, 0.90);
    border: 1px solid var(--border-lime);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 0;
  }

  .mentor__cred-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mentor-cred-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.4;
  }

  .mentor-cred-item .check-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  .mentor-cred-item .check-icon svg {
    width: 14px;
    height: 14px;
  }

  .mentor__tagline {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0;
  }

  .bonus__header {
    margin-bottom: 28px;
  }

  /* The gold certificate card */
  .bonus__certificate {
    border: 2px solid var(--gold);
    border-radius: 22px;
    background: #050811;
    max-width: 650px;
    box-shadow:
      0 0 50px rgba(231, 182, 92, 0.25),
      0 0 120px rgba(231, 182, 92, 0.10),
      inset 0 0 60px rgba(231, 182, 92, 0.04);
    position: relative;
    margin: auto;
    margin-bottom: 20px;
  }

  .bonus__ribbon-wrap {
    position: relative;
    text-align: center;
    padding: 0;
    max-width: 450px;
    margin: 40px auto;
  }

  .bonus__ribbon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #D4A017 0%, #E7B65C 40%, #C99A3A 100%);
    color: #1a0f00;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(231, 182, 92, 0.40);
    position: relative;
  }

  .bonus__ribbon::before {
    left: 0;
    border-width: 8px 0 0 12px;
    border-color: transparent transparent transparent #9A7020;
  }

  .bonus__ribbon::after {
    right: 0;
    border-width: 8px 12px 0 0;
    border-color: transparent #9A7020 transparent transparent;
  }

  /* Laurels */
  .bonus__laurel {
    position: absolute;
    top: 14px;
    font-size: 32px;
    opacity: 0.75;
    color: var(--gold);
    line-height: 1;
  }

  .bonus__laurel--left {
    left: 14px;
    transform: scaleX(-1);
  }

  .bonus__laurel--right {
    right: 14px;
  }

  /* Bonus rows */
  .bonus__rows {
    padding: 0 20px;
  }

  .bonus__row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1.5px dashed rgba(231, 182, 92, 0.25);
  }

  .bonus__gift-icon {
    flex-shrink: 0;
    font-size: 22px;
    color: var(--gold);
    width: 28px;
    text-align: center;
  }

  .bonus__gift-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
  }

  .bonus__row-label {
    flex: 1;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
  }

  .bonus__row-price {
    flex-shrink: 0;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid var(--border-gold);
    background: rgba(231, 182, 92, 0.08);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
  }

  /* Total reveal */
  .bonus__total {
    margin: 0 0 0;
    padding: 24px;
    background: var(--surface-darker);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bonus__total-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 4px;
  }

  .bonus__total-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .bonus__total-strikethrough {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: var(--gold);
  }

  .bonus__price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .bonus__today-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .bonus__price-big {
    font-size: 64px;
    font-weight: 800;
    color: var(--lime);
    line-height: 1;
    text-shadow:
      0 0 24px rgba(25, 227, 160, 0.80),
      0 0 60px rgba(25, 227, 160, 0.40),
      0 0 120px rgba(25, 227, 160, 0.20);
    letter-spacing: -0.02em;
  }

  .bonus__footnote {
    font-size: 16px;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .ambient-icon:nth-child(1) {
    top: 8%;
    left: 5%;
    font-size: 60px;
    animation-delay: 0s;
  }

  .ambient-icon:nth-child(2) {
    top: 15%;
    right: 6%;
    font-size: 48px;
    animation-delay: -2s;
  }

  .ambient-icon:nth-child(3) {
    top: 40%;
    left: 3%;
    font-size: 52px;
    animation-delay: -4s;
  }

  .ambient-icon:nth-child(5) {
    top: 72%;
    left: 8%;
    font-size: 40px;
    animation-delay: -3s;
  }

  .final-cta__pre-headline {
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    color: #ccc;
    text-align: center;
    margin-bottom: 16px;
  }

  .final-cta__headline {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 10px;
    color: var(--text-primary);
  }

  .final-cta__headline .hl-lime {
    color: var(--lime);
    text-shadow: 0 0 24px rgba(25, 227, 160, 0.50);
  }

  .final-cta__headline .hl-gold {
    color: var(--gold);
    text-shadow: 0 0 24px rgba(231, 182, 92, 0.40);
  }

  .final-cta__sub {
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
  }

  .final-cta__body {
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.7;
  }

  .earn-with-ai {
    color: var(--gold);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(231, 182, 92, 0.6);
    display: block;
    margin-top: 10px;
  }

  /* Divider */
  .final-cta__divider {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(25, 227, 160, 0.9), transparent);
    margin: 40px 0;
    position: relative;
    box-shadow: 0 0 15px rgba(25, 227, 160, 0.6);
  }

  .final-cta__divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 24px 10px rgba(25, 227, 160, 0.9);
  }

  .final-cta__cta-note {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
  }

  .final-cta__security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
    font-size: 16px;
    color: var(--text-muted);
  }

  .final-cta__security svg {
    width: 14px;
    height: 14px;
    color: var(--lime);
  }

  /* Glowing CTA override */
  #final-cta .cta-btn {
    box-shadow:
      0 0 50px rgba(25, 227, 160, 0.70),
      0 0 100px rgba(25, 227, 160, 0.30),
      0 0 160px rgba(25, 227, 160, 0.15),
      0 8px 24px rgba(0, 0, 0, 0.40);
    font-size: 18px;
    padding: 20px 24px;
  }

  #final-cta .cta-btn:hover {
    box-shadow:
      0 0 70px rgba(25, 227, 160, 0.85),
      0 0 140px rgba(25, 227, 160, 0.40),
      0 0 220px rgba(25, 227, 160, 0.20),
      0 12px 32px rgba(0, 0, 0, 0.50);
  }

  /* FOOTER */
  #footer {
    background: var(--bg);
    padding: 28px var(--section-px) 36px;
    border-top: 1px solid var(--border-subtle);
  }

  .footer__copy {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
  }
}

/* DESKTOP RESPONSIVE */
@media (min-width: 600px) {
  :root {
    --section-px: 20px;
    --section-py: 60px;
  }

  .hero__headline {
    font-size: 42px;
  }

  .section-title {
    font-size: 44px;
  }

  #final-cta {
    background-image: url(/assests/Background.webp);
    background-size: cover;
    background-position: center;
  }

  .final-cta__headline {
    font-size: 40px;
  }

  .cta-btn {
    font-size: 19px;
    padding: 20px 32px;
  }

  .market__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .section__container {
    max-width: 540px;
  }

  .hero__badge-text {
    font-size: 12px;
  }

  .hero__badge-friendly {
    font-size: 14px;
  }

  .hero__inner {
    max-width: 1140px;
  }

  .hero__countdown-wrap {
    max-width: 1100px;
    margin-top: 40px;
  }

  .hero__details {
    max-width: 540px;
  }
}

/* Responsive Visibility Utilities */
.hide-on-mobile {
  display: none !important;
}

@media (min-width: 900px) {
  .section__container {
    max-width: 1140px;
  }

  .hide-on-mobile {
    display: block !important;
  }

  .hide-on-desktop {
    display: none !important;
  }

  /* Hero Split Layout Force Desktop View */
  .hero__split-layout {
    flex-direction: row !important;
    align-items: center !important;
    max-width: 1100px !important;
    gap: 48px !important;
    margin-top: 48px !important;
  }

  .hero__col-left {
    flex: 1.1 !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .hero__col-right {
    flex: 0.9 !important;
  }

  /* Desktop Heading & Subheading adjustments */
  .hero__headline {
    font-size: 62px !important;
  }

  .hero__body-text {
    max-width: 850px;
    margin-inline: auto;
  }

  /* Pointers 2x2 Grid (AI Do, For You, Disqualifier) */
  .ai-do__cards,
  .for-you__list,
  .disqualifier__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Enhance list items in grid view */
  .for-you__item,
  .disqualifier__item {
    border-bottom: none !important;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Day Wise Data 3 Column */
  .curriculum__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .day-card {
    height: 100%;
  }

  /* Testimonials 3 Column (Centered Odd Row Hack) */
  .testimonials__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .testi-card {
    grid-column: span 2;
    height: 100%;
  }

  /* Center the last row (7th and 8th items) */
  .testi-card:nth-child(7) {
    grid-column: 2 / span 2;
  }

  /* Mentor Split Layout */
  .mentor__split-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .mentor__col-left {
    flex: 1;
  }

  .mentor__col-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Reset the photo wrap negative margins on desktop for the split layout */
  .mentor__photo-wrap {
    margin: 0 !important;
    border-radius: 16px;
  }

  .mentor__badges-grid {
    margin-top: 0 !important;
  }

  /* Market Grid 3 Column (Centered Odd Row Hack) */
  .market__grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    align-items: stretch;
  }

  .market-card {
    grid-column: span 2;
    height: 100%;
  }

  /* Center the last row (7th and 8th items) */
  .market-card:nth-child(7) {
    grid-column: 2 / span 2;
  }
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 4, 19, 0.85); /* var(--bg) with opacity */
  backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  width: 90%;
  max-width: 480px;
  padding: 40px 30px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), 0 0 20px var(--glow-lime);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.is-open .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 2px solid var(--lime);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  padding: 0;
}

.modal__close:hover {
  background: var(--lime);
  color: var(--bg);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--glow-lime-strong);
}

.modal__title {
  color: var(--text-primary);
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 16px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(25, 227, 160, 0.05);
  box-shadow: 0 0 15px var(--glow-lime);
}

.modal__submit {
  width: 100%;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--lime) 0%, var(--gold) 100%);
  color: #000 !important;
  border-radius: var(--radius-button);
  padding: 20px;
  font-size: 18px;
  font-weight: 800;
  text-shadow: none;
  border: none;
  box-shadow: 0 0 20px var(--glow-lime);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal__submit:hover {
  box-shadow: 0 0 30px var(--glow-lime-strong);
  transform: scale(1.02);
}

/* ===== Form validation + phone prefix ===== */
.phone-input {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.phone-input__prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.phone-input input {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
}

/* Inline validation errors */
.field-error {
  display: none;
  margin-top: 6px;
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.form-group.has-error .field-error {
  display: block;
}

.form-group.has-error input {
  border-color: #ff6b6b;
}

.form-group.has-error .phone-input__prefix,
.form-group.has-error .phone-input input {
  border-color: #ff6b6b;
}

.form-group.has-error input:focus {
  box-shadow: 0 0 12px rgba(255, 107, 107, 0.25);
}

.modal__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.modal__submit.is-loading {
  position: relative;
  color: transparent !important;
  text-shadow: none;
}

.modal__submit.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2.5px solid rgba(0, 0, 0, 0.35);
  border-top-color: #000;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}

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

.form-submit-error {
  margin: 4px 0 0;
  color: #ff6b6b;
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
}
