/* =============================================
   10X QUANTUM LEAP – PREMIUM LANDING PAGE CSS
   Dark Green × Glassmorphism × Luxury SaaS
   ============================================= */

/* ─── IMPORTS & TOKENS ─── */
:root {
  --primary: #0F6B35;
  --lime: #9FE52C;
  --fresh: #6FD23D;
  --forest: #0A4A27;
  --shadow: #08361D;
  --white: #FFFFFF;
  --soft-white: #F3F5F4;
  --text-muted: rgba(255,255,255,0.55);
  --text-dim: rgba(255,255,255,0.75);
  --glass-bg: rgba(15, 107, 53, 0.12);
  --glass-border: rgba(159, 229, 44, 0.15);
  --glass-strong: rgba(15, 107, 53, 0.25);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lime: 0 0 40px rgba(159,229,44,0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Lexend Deca', 'Be Vietnam Pro', sans-serif;
  --font-body: 'Be Vietnam Pro', sans-serif;
  --font-sub: 'Be Vietnam Pro', sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--shadow);
  color: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1;
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--shadow); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

/* ─── CONTAINER ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION BACKGROUNDS ─── */
.section-dark { background: var(--shadow); }
.section-forest { background: var(--forest); }

/* ─── TYPOGRAPHY UTILITIES ─── */
.text-lime { color: var(--lime); }
.text-muted { color: var(--text-muted); }
del.text-muted { color: var(--text-muted); font-size: 0.9em; }

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--lime);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.65;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--lime) 0%, var(--fresh) 100%);
  color: var(--shadow) !important;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(159,229,44,0.35);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(159,229,44,0.55);
  filter: brightness(1.08);
}
.btn-xl { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }

.btn-nav {
  background: linear-gradient(135deg, var(--lime), var(--fresh));
  color: var(--shadow) !important;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(159,229,44,0.3);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(159,229,44,0.5);
}

/* Pulse animation */
.pulse-btn {
  animation: pulseCta 2.5s ease-in-out infinite;
}
@keyframes pulseCta {
  0%, 100% { box-shadow: 0 4px 20px rgba(159,229,44,0.35); }
  50% { box-shadow: 0 6px 40px rgba(159,229,44,0.65), 0 0 60px rgba(159,229,44,0.2); }
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--lime) 0%, var(--fresh) 100%);
  color: var(--shadow);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.2rem 2rem;
  border-radius: 100px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(159,229,44,0.4);
  cursor: pointer;
  margin-top: 1.5rem;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(159,229,44,0.6);
}

.cta-center { text-align: center; margin-top: 3rem; }

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.floating-cta.visible {
  opacity: 1;
  pointer-events: all;
}
.btn-floating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--lime) 0%, var(--fresh) 100%);
  color: var(--shadow) !important;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 40px rgba(159,229,44,0.3);
  white-space: nowrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STICKY NAV
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(8, 54, 29, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.75rem 0;
  transition: var(--transition);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-tagline-wrap {
  flex: 1;
  text-align: center;
}
.nav-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo-img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(159,229,44,0.5);
  display: block;
  flex-shrink: 0;
}
.footer-logo-img {
  height: 110px;
  width: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(159,229,44,0.4);
  display: block;
  margin-bottom: 1rem;
}
.logo-10x {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--lime);
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-ql {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 90px;
  line-height: 1.2;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 1: HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--shadow) 0%, var(--forest) 50%, #0D5A30 100%);
  padding: 120px 0 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 50%, rgba(159,229,44,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(15,107,53,0.3) 0%, transparent 60%);
  pointer-events: none;
}

/* Particle canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
  opacity: 0.15;
}
.hero-particles::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--lime), transparent);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-particles::after {
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--fresh), transparent);
  bottom: 50px; left: -50px;
  animation-delay: -4s;
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Pre-headline */
/* Hero Logo */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-top: -2.5rem;
  margin-bottom: 2rem;
}
.hero-logo-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.pre-headline-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.badge-pulse {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--lime);
  border-radius: 50%;
  animation: badgePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(159,229,44,0.5); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(159,229,44,0); }
}
.pre-headline {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
}

/* Hero Brand Title – Primary Large */
.hero-brand-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3), 0 0 30px rgba(159,229,44,0.2);
}

/* Hero Sub-Headline – Secondary Smaller */
.hero-sub-headline {
  font-family: var(--font-head);
  font-size: clamp(0.85rem, 1.6vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-bottom: 2.2rem;
  text-transform: uppercase;
}

/* Hero Headline (legacy) */
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.big-promise {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--lime);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--soft-white);
}
.big-promise strong { color: var(--lime); }
.big-promise em { color: var(--fresh); font-style: normal; }

.hero-sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-sub strong { color: var(--white); }

/* Hero CTA Group */
.hero-cta-group { margin-bottom: 1.5rem; }
.cta-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.spots-count { color: var(--lime); font-weight: 700; }

/* Hero Tagline */
.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  display: inline-block;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: var(--glass-bg);
}

/* Promise Pills */
.promise-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.promise-pills span {
  font-size: 0.78rem;
  color: var(--lime);
  font-weight: 600;
  background: rgba(159,229,44,0.08);
  border: 1px solid rgba(159,229,44,0.2);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
}

/* Hero Pain Block */
.hero-pain {
  margin-bottom: 2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(200,50,50,0.06);
  border: 1px solid rgba(200,50,50,0.15);
  border-left: 3px solid rgba(255,100,100,0.4);
  border-radius: var(--radius-md);
}
.pain-intro {
  font-size: 0.92rem;
  color: rgba(255,200,200,0.8);
  margin-bottom: 0.7rem;
  font-style: italic;
}
.pain-mini-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
}
.pain-mini-list span {
  font-size: 0.88rem;
  color: rgba(255,200,200,0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pain-mini-list span::before {
  content: "✕";
  color: #ff4444;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pain-answer {
  font-size: 0.95rem;
  color: var(--soft-white);
}
.pain-answer strong { color: var(--lime); }

/* AI Tools Grid */
.ai-tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  max-width: 360px;
}
.tool-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--soft-white);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.tool-badge:hover { border-color: var(--lime); color: var(--lime); }
.tool-badge-lime {
  background: rgba(159,229,44,0.1);
  border-color: rgba(159,229,44,0.3);
  color: var(--lime);
}

/* Quick Benefits */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.benefit-pill {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  color: var(--soft-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  transition: var(--transition);
}
.benefit-pill:hover {
  background: var(--glass-strong);
  border-color: var(--lime);
  color: var(--lime);
}

/* Countdown */
.countdown-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  display: inline-block;
}
.countdown-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cd-unit {
  text-align: center;
  min-width: 54px;
}
.cd-unit span {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cd-unit small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.cd-sep {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 1rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  width: 100%;
  flex-shrink: 0;
}
.hero-img {
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 60px rgba(159,229,44,0.1);
  border: 1px solid var(--glass-border);
}
.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(159,229,44,0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

/* YouTube Video in Hero */
.hero-video-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 60px rgba(159,229,44,0.15);
  border: 2px solid rgba(159,229,44,0.4);
  background: #000;
}
.hero-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Floating Cards */
.float-card {
  position: absolute;
  background: rgba(8, 54, 29, 0.9);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-card);
  animation: floatCard 4s ease-in-out infinite;
}
.float-card-1 { top: 10%; right: -30px; animation-delay: 0s; }
.float-card-2 { bottom: 30%; left: -30px; animation-delay: -1.5s; }
.float-card-3 { bottom: 8%; right: 10%; animation-delay: -3s; }

/* Hero video + side cards layout */
.hero-video-cards {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1rem;
}
/* Video column */
.hero-video-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.fc-icon { font-size: 1.4rem; }
.fc-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--lime);
}
.fc-text small {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Social Proof Bar */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  padding: 1.5rem 2.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.social-proof-bar--inline {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  gap: 0.6rem;
  border-radius: var(--radius-md);
}
.social-proof-bar--inline .sp-num { font-size: 1.3rem; }
.social-proof-bar--inline .sp-label { font-size: 0.62rem; letter-spacing: 0.04em; }
.social-proof-bar--inline .sp-divider { height: 28px; }
.sp-item { text-align: center; }
.sp-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sp-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.sp-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 2: PAIN
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pain-section { padding: 6rem 0; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.pain-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}
.pain-card:hover {
  border-color: rgba(159,229,44,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(159,229,44,0.08);
}
.pain-card:hover::before { opacity: 1; }

/* Illustration image */
.pain-illus-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(10, 74, 39, 0.6);
  flex-shrink: 0;
}
.pain-illus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.pain-card:hover .pain-illus {
  transform: scale(1.05);
}

/* Text body below image */
.pain-card-body {
  padding: 1.4rem 1.6rem 1.8rem;
  flex: 1;
}
.pain-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}
.pain-card-body p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
}


.pain-emotional {
  background: linear-gradient(135deg, rgba(15,107,53,0.3), rgba(10,74,39,0.5));
  border: 1px solid rgba(159,229,44,0.2);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(20px);
}
.emotional-text {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}
.emotional-highlight {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.emotional-highlight strong { color: var(--lime); }
.emotional-sub {
  color: var(--text-dim);
  margin-bottom: 2rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 3: BELIEFS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.belief-section { padding: 6rem 0; }

.belief-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.belief-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.belief-wrong, .belief-right {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}
.belief-wrong {
  background: rgba(200, 50, 50, 0.08);
  border: 1px solid rgba(200, 50, 50, 0.2);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.belief-wrong-content {
  flex: 1;
  min-width: 0;
}
.belief-avatar-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.belief-right {
  background: rgba(159, 229, 44, 0.07);
  border: 1px solid rgba(159, 229, 44, 0.2);
}
.belief-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}
.tag-wrong {
  background: rgba(200, 50, 50, 0.2);
  color: #ff8080;
}
.tag-right {
  background: rgba(159, 229, 44, 0.2);
  color: var(--lime);
}
.belief-wrong p, .belief-right p {
  font-size: 0.92rem;
  line-height: 1.6;
}
.belief-wrong p { color: rgba(255,180,180,0.85); font-style: italic; }
.belief-right p { color: var(--soft-white); }
.belief-arrow {
  font-size: 1.8rem;
  color: var(--lime);
  font-weight: 300;
  opacity: 0.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 4: OPPORTUNITY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.opportunity-section { padding: 6rem 0; }

/* Core Promise Box */
.core-promise-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(159,229,44,0.06), rgba(15,107,53,0.15));
  border: 1px solid rgba(159,229,44,0.25);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 860px;
  margin: 0 auto 3rem;
}
.cpb-icon { font-size: 2.5rem; flex-shrink: 0; }
.cpb-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  text-align: left;
}
.cpb-content p {
  font-size: 0.95rem;
  color: var(--soft-white);
  line-height: 1.75;
  margin-bottom: 0.8rem;
  text-align: left;
}
.cpb-content p:last-child { margin-bottom: 0; }
.cpb-content strong { color: var(--lime); }

/* AI Application Areas */
.ai-application-areas { margin-bottom: 3rem; }
.areas-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--white);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.area-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  transition: var(--transition);
}
.area-card:hover {
  border-color: rgba(159,229,44,0.3);
  transform: translateY(-3px);
}
.area-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.area-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 0.7rem;
}
.area-card ul { display: flex; flex-direction: column; gap: 0.35rem; list-style: none; }
.area-card li {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.area-card li::before {
  content: '•';
  color: var(--lime);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  flex-shrink: 0;
}

.opportunity-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.opp-lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-style: italic;
}
.opp-text p {
  font-size: 1rem;
  color: var(--soft-white);
  line-height: 1.7;
}
.opp-text strong { color: var(--lime); }

/* AI OS Diagram */
.ai-os-diagram {
  position: relative;
  margin-bottom: 4rem;
}
.ai-core-center {
  text-align: center;
  margin-bottom: 2rem;
}
.core-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, var(--primary), var(--forest));
  border: 2px solid var(--lime);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2.5rem;
  box-shadow: var(--shadow-lime);
}
.core-icon { font-size: 2.5rem; }
.core-badge strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--lime);
  letter-spacing: 0.05em;
}
.core-badge small {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.ai-pillar {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.ai-pillar::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%; right: 0;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--lime);
  transform: translateX(-50%);
  opacity: 0.6;
}
.ai-pillar:hover {
  border-color: rgba(159,229,44,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.pillar-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.ai-pillar h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 0.4rem;
}
.ai-pillar p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Why New Mechanism */
.why-new-mechanism {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  backdrop-filter: blur(10px);
}
.why-new-mechanism h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--white);
}
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.mechanism-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.m-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.mechanism-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 0.4rem;
}
.mechanism-item p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Tool Stack in Magnet */
.tool-stack {
  margin-top: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}
.tool-stack-title {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.tool-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.tool-icon-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--soft-white);
  background: var(--glass-strong);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
}
.tool-resources-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tool-res {
  font-size: 0.72rem;
  color: var(--lime);
  background: rgba(159,229,44,0.08);
  border: 1px solid rgba(159,229,44,0.15);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  font-weight: 600;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 5: LEAD MAGNET
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.magnet-section { padding: 6rem 0; }

.magnet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.magnet-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.magnet-img {
  border-radius: var(--radius-xl);
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
}
.magnet-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: linear-gradient(135deg, var(--lime), var(--fresh));
  color: var(--shadow);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(159,229,44,0.4);
}

.magnet-headline {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 1rem 0 1.8rem;
}

.event-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.event-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.8rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.event-detail-item:last-child {
  grid-column: 1 / -1;
}
.ed-icon { font-size: 1.3rem; flex-shrink: 0; }
.ed-info { display: flex; flex-direction: column; }
.ed-info strong { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.ed-info span { font-size: 0.88rem; color: var(--white); font-weight: 500; }

.spots-warning {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  margin-bottom: 1.5rem;
}
.sw-icon { font-size: 1.2rem; }
.spots-warning p { font-size: 0.88rem; color: #ffcc80; }
.spots-warning strong { color: #ffaa00; }

.magnet-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 6: WHAT YOU GET
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.get-section { padding: 6rem 0; }

/* Compact Get Grid */
.get-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.get-card-compact {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.get-card-compact:hover {
  border-color: rgba(159,229,44,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(159,229,44,0.08);
}
.get-card-featured-compact {
  border-color: var(--lime) !important;
  background: rgba(159,229,44,0.05);
  position: relative;
  overflow: visible;
  margin-top: 14px;
}

/* Illustration wrap */
.gcc-illus-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(10, 74, 39, 0.6);
  flex-shrink: 0;
}
.gcc-illus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.get-card-compact:hover .gcc-illus {
  transform: scale(1.05);
}

/* Number badge on top-right of image */
.gcc-num-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.85);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.03em;
}

/* Text body */
.gcc-body {
  padding: 1.2rem 1.4rem 1.5rem;
  flex: 1;
}
.gcc-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.gcc-body p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.65;
}


/* Weekly Content Breakdown */
.weekly-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 2rem;
}
.weekly-content h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.weekly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.wc-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: rgba(15,107,53,0.2);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--soft-white);
  font-weight: 500;
}
.wc-icon {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 6px rgba(159,229,44,0.6);
  flex-shrink: 0;
}

.get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.get-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.get-card:hover {
  border-color: rgba(159,229,44,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.get-card-featured {
  border-color: var(--lime) !important;
  background: rgba(159,229,44,0.06);
  box-shadow: 0 0 30px rgba(159,229,44,0.1);
}
.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lime), var(--fresh));
  color: var(--shadow);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.get-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.get-badge {
  display: inline-block;
  background: rgba(159,229,44,0.1);
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.7rem;
  letter-spacing: 0.06em;
}
.get-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.get-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.get-list li {
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 0.2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
}

.get-total {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(159,229,44,0.08), rgba(15,107,53,0.2));
  border: 1px solid rgba(159,229,44,0.2);
  border-radius: var(--radius-xl);
}
.get-total p { font-size: 1rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.total-price {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white) !important;
  margin-bottom: 1.5rem !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 7: AGENDA / TIMELINE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.agenda-section { padding: 6rem 0; }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  opacity: 0.4;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 28px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}
.tl-time {
  text-align: right;
  padding-top: 1rem;
}
.tl-hour {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--lime);
  letter-spacing: 0.05em;
}
.tl-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid rgba(159,229,44,0.4);
  flex-shrink: 0;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.tl-dot.active {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(159,229,44,0.5);
}
.timeline-item:hover .tl-dot {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(159,229,44,0.4);
}
.tl-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  transition: var(--transition);
}
.timeline-item:hover .tl-content {
  border-color: rgba(159,229,44,0.3);
}
.tl-tag {
  display: inline-block;
  background: rgba(159,229,44,0.1);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}
.tl-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.tl-content p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.tl-duration {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: var(--lime);
  font-weight: 600;
  background: rgba(159,229,44,0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 8: QUICK WINS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wins-section { padding: 6rem 0; }

.wins-journey {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.win-milestone {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.win-milestone:hover {
  border-color: rgba(159,229,44,0.3);
  transform: translateY(-3px);
}
.wm-4 { border-color: rgba(111,210,61,0.2); }
.wm-12 { border-color: rgba(159,229,44,0.3); }
.wm-52 {
  border-color: var(--lime);
  background: rgba(159,229,44,0.06);
}
.wm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.wm-time {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.wm-tag {
  background: rgba(159,229,44,0.1);
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.wm-item {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 0.35rem 0 0.35rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
  position: relative;
}
.wm-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 6px rgba(159,229,44,0.6);
}
.wm-item strong {
  color: var(--lime);
  font-weight: 700;
}
.wm-item:last-child { border-bottom: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 9 + 10: FOR WHO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.who-headline-sm {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0.8rem 0 1.4rem;
}
.who-demographic {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.demo-title {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.demo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.demo-tags span {
  font-size: 0.75rem;
  color: var(--soft-white);
  background: rgba(15,107,53,0.3);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
}

/* Risk Reversal */
.risk-reversal {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: rgba(159,229,44,0.05);
  border: 1px solid rgba(159,229,44,0.15);
  border-radius: var(--radius-md);
}
.rr-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 0.8rem;
}
.rr-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.rr-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--soft-white);
}
.rr-item::before {
  content: '✓';
  color: var(--lime);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  flex-shrink: 0;
}
.for-section { padding: 6rem 0; }

.two-col-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* ── New For-Who layout ── */
/* Block 1: full-width avatar grid */
.who-block-yes {
  margin-bottom: 2.5rem;
}
.who-block-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.who-block-header .section-tag { margin-bottom: 0; }
.who-block-header .who-headline-sm { margin: 0; }

/* Block 2: 2-column row below */
.who-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.who-no-col { }
.who-rr-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
}
.risk-reversal-big {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.risk-reversal-big .rr-list {
  grid-template-columns: 1fr 1fr;
}

.who-col { }
.who-headline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.8rem 0 1.5rem;
}
.who-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Card grid variant */
.who-list-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  flex-direction: unset;
}
.who-card {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1rem 0.6rem 0.85rem;
  gap: 0.6rem;
  cursor: default;
}
.wi-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(159,229,44,0.35);
  overflow: hidden;
}
.who-card p {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.45;
  margin: 0;
}
.who-card:hover {
  border-color: rgba(159,229,44,0.4) !important;
  background: rgba(159,229,44,0.1) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(159,229,44,0.1);
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid;
  transition: var(--transition);
}
.who-yes {
  background: rgba(159,229,44,0.05);
  border-color: rgba(159,229,44,0.15);
}
.who-yes:hover { background: rgba(159,229,44,0.09); border-color: rgba(159,229,44,0.3); }
.who-no {
  background: rgba(200,50,50,0.05);
  border-color: rgba(200,50,50,0.12);
}
.wi-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.15rem; }
.who-no .wi-icon::before {
  content: "✕";
  color: #ff4444;
  font-size: 0.9rem;
  font-weight: 700;
}
.who-item p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.5; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 11: AUTHORITY – TWO TRAINERS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.authority-section { padding: 6rem 0; }

/* Two Trainers Layout */
.two-trainers {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.trainer-card {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: var(--transition);
}
.trainer-card:hover { border-color: rgba(159,229,44,0.25); }
.trainer-card-left { grid-template-columns: 300px 1fr; }
.trainer-card-right { grid-template-columns: 1fr auto; }
.trainer-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
}
.trainer-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border: 2px solid var(--glass-border);
}
.trainer-photo-glow {
  position: absolute;
  inset: -8px;
  background: radial-gradient(ellipse at center, rgba(159,229,44,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.trainer-role-tag {
  display: inline-block;
  background: var(--glass-bg);
  border: 1px solid var(--lime);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}
.trainer-role-tag-right {
  background: rgba(159,229,44,0.1);
}
.trainer-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.trainer-title {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.trainer-bio { margin-bottom: 1.2rem; }
.trainer-bio p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.trainer-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.th-item {
  font-size: 0.84rem;
  color: var(--soft-white);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.th-item::before {
  content: '•';
  color: var(--lime);
  font-size: 1.1rem;
  line-height: 1.2;
  flex-shrink: 0;
  font-weight: 700;
}
.trainer-proof-box {
  background: rgba(159,229,44,0.06);
  border: 1px solid rgba(159,229,44,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  min-width: 280px;
}
.proof-title {
  font-size: 0.72rem;
  color: var(--lime);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.proof-items { display: flex; flex-direction: column; gap: 0.5rem; }
.proof-item {
  font-size: 0.82rem;
  color: var(--soft-white);
  line-height: 1.5;
}
.trainer-info-right { }

/* ── Lương Trainer Special Card ───────────── */
.trainer-card-luong {
  grid-template-columns: 320px 1fr;
  background: linear-gradient(135deg, rgba(10,74,39,0.6), rgba(15,107,53,0.3));
  border-color: rgba(159,229,44,0.2);
  overflow: hidden;
  position: relative;
}
.trainer-card-luong::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse at top right, rgba(159,229,44,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.luong-photo-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 340px;
}
.luong-photo-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.luong-photo-glow-bg {
  position: absolute;
  bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 220px; height: 220px;
  background: radial-gradient(ellipse at bottom, rgba(159,229,44,0.15) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.luong-photo {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.5));
  position: relative;
  z-index: 2;
}
.luong-badge-1 {
  position: absolute;
  top: 16px; left: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--soft-white);
  white-space: nowrap;
  z-index: 3;
}
.luong-badge-2 {
  position: absolute;
  bottom: 20px; right: 0;
  background: linear-gradient(135deg, var(--lime), var(--fresh));
  color: var(--shadow);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(159,229,44,0.35);
}

/* ── Tony Hoàng Card ───────────────────────── */
.trainer-card-tony {
  grid-template-columns: 1fr 320px;
  background: linear-gradient(135deg, rgba(15,107,53,0.25), rgba(8,54,29,0.5));
  border-color: rgba(159,229,44,0.15);
  overflow: hidden;
  position: relative;
}
.trainer-card-tony::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse at top left, rgba(159,229,44,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.tony-photo-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 340px;
}
.tony-photo-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.tony-photo-glow-bg {
  position: absolute;
  bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 220px; height: 220px;
  background: radial-gradient(ellipse at bottom, rgba(159,229,44,0.15) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
/* Full-size photo with green bg – same size as Lương Trainer column */
.tony-photo-full {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border: 2px solid rgba(159,229,44,0.15);
  position: relative;
  z-index: 2;
}
.tony-photo {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  border: 2px solid rgba(159,229,44,0.2);
  position: relative;
  z-index: 2;
}
.tony-badge-1 {
  position: absolute;
  top: 12px; right: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--soft-white);
  white-space: nowrap;
  z-index: 3;
}
.tony-badge-2 {
  position: absolute;
  bottom: 12px; left: 0;
  background: linear-gradient(135deg, var(--lime), var(--fresh));
  color: var(--shadow);
  border-radius: 100px;
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(159,229,44,0.35);
}
.trainer-info-tony { }
.tony-proof-box {
  margin-top: 1.2rem;
  background: rgba(159,229,44,0.05);
  border: 1px solid rgba(159,229,44,0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  min-width: unset;
}

/* Fix: ensure Lương Trainer text column never touches photo */
.trainer-info-luong {
  padding-left: 0.5rem;
  border-left: 1px solid var(--glass-border);
}

.trainer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.trainer-tags span {
  font-size: 0.75rem;
  color: var(--soft-white);
  background: rgba(159,229,44,0.07);
  border: 1px solid rgba(159,229,44,0.15);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
}

.authority-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: start;
}

.auth-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.auth-photo {
  border-radius: var(--radius-xl);
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 2px solid rgba(159,229,44,0.2);
}
.auth-photo-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(ellipse at center, rgba(159,229,44,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.auth-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.auth-badge-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--soft-white);
  text-align: center;
}

.authority-name h3 {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--lime);
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}
.auth-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.authority-bio {
  margin-bottom: 1.5rem;
}
.authority-bio p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.authority-bio strong { color: var(--lime); }

.authority-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
.as-item { text-align: center; }
.as-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--lime);
  line-height: 1;
}
.as-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

.authority-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.cred-item {
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 0.5rem 0.8rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 12: CASE STUDIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cases-section { padding: 6rem 0; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.case-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.case-card:hover {
  border-color: rgba(159,229,44,0.3);
  transform: translateY(-4px);
}
.case-featured {
  border-color: var(--lime);
  background: rgba(159,229,44,0.06);
}
.featured-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lime), var(--fresh));
  color: var(--shadow);
  font-size: 0.68rem;
  font-weight: 900;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.case-header {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.2rem;
}
.case-avatar-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--glass-border);
}
.ca-placeholder {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid var(--glass-border);
}
.ca-2 { background: linear-gradient(135deg, #0F6B35, #9FE52C); color: var(--shadow); }
.ca-3 { background: linear-gradient(135deg, #0A4A27, #6FD23D); color: var(--white); }
.case-identity h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.case-identity p { font-size: 0.75rem; color: var(--text-muted); }
.case-result { text-align: right; }
.cr-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--lime);
  line-height: 1;
}
.case-result small { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; }
.case-story { margin-bottom: 1rem; }
.case-before, .case-after {
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.case-before { color: rgba(255,200,200,0.7); }
.case-after { color: var(--soft-white); }
.case-after strong { color: var(--lime); }
.case-quote {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 0.8rem;
  border-left: 2px solid var(--lime);
  background: var(--glass-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.cases-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-style: italic;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 13: FAQ
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-section { padding: 6rem 0; }

.faq-list {
  max-width: 800px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(159,229,44,0.25); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  background: transparent;
  transition: var(--transition);
}
.faq-q:hover { color: var(--lime); }
.faq-q[aria-expanded="true"] { color: var(--lime); }
.faq-arrow {
  font-size: 0.75rem;
  color: var(--lime);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a.open { max-height: 400px; }
.faq-a p {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
}
.faq-cta > p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.faq-cta a.text-lime:hover { text-decoration: underline; }

/* Belief Hero Card */
.belief-hero-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(200,50,50,0.06), rgba(159,229,44,0.05));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}
.bhc-wrong, .bhc-right { padding: 1.5rem; border-radius: var(--radius-md); }
.bhc-wrong {
  background: rgba(200,50,50,0.08);
  border: 1px solid rgba(200,50,50,0.2);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.bhc-wrong-content {
  flex: 1;
  min-width: 0;
}
.bhc-right {
  background: rgba(159,229,44,0.07);
  border: 1px solid rgba(159,229,44,0.2);
}
.bhc-wrong h3, .bhc-right h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.bhc-wrong h3 { color: rgba(255,180,180,0.9); font-style: italic; margin-top: 0.4rem; }
.bhc-right h3 { color: var(--white); }
.bhc-right p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; }
.bhc-right strong { color: var(--lime); }
.bhc-arrow {
  font-size: 2rem;
  color: var(--lime);
  opacity: 0.7;
  text-align: center;
}

/* After Opt-in Flow */
.after-optin-flow {
  text-align: center;
  padding: 1rem;
}
.aof-title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--lime);
  margin-bottom: 2rem;
}
.aof-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  max-width: 480px;
  margin: 0 auto;
}
.aof-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  width: 100%;
  text-align: left;
}
.aof-step-final {
  border-color: var(--lime);
  background: rgba(159,229,44,0.06);
}
.aofs-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.aofs-text strong { display: block; font-size: 0.92rem; color: var(--white); margin-bottom: 0.2rem; }
.aofs-text p { font-size: 0.8rem; color: var(--text-muted); }
.aof-arrow { font-size: 1.2rem; color: var(--lime); opacity: 0.5; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 14: FORM
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.form-section { padding: 6rem 0; }

.form-inner {
  max-width: 800px;
  margin: 0 auto;
}

.form-header { text-align: center; margin-bottom: 3rem; }
.form-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.5;
  margin: 0.8rem 0 1.2rem;
}
.form-sub {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  text-align: center;
}
.form-sub strong { color: var(--white); }

.form-urgency {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0;
}
.fu-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.fu-item span { font-size: 1rem; }
.fu-item strong { color: var(--white); }
.urgency-spot {
  border-color: rgba(255,140,0,0.3);
  color: #ffcc80;
}

/* Form Wrapper */
.form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(159,229,44,0.3);
  backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.3);
}

.opt-form { }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group-full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  background: #ffffff;
  border: 1.5px solid rgba(159,229,44,0.4);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  color: #0A3018;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%230F6B35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: #ffffff;
  color: #0A3018;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(159,229,44,0.25);
}
.form-group input::placeholder { color: rgba(0,0,0,0.35); }
.form-group input:invalid:not(:placeholder-shown) {
  border-color: rgba(200,50,50,0.5);
}

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.form-agree input[type="checkbox"] {
  width: 18px; height: 18px;
  border-radius: 4px;
  accent-color: var(--lime);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.form-agree label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--glass-border);
}
.ft-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 2rem;
}
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--lime);
  margin-bottom: 1rem;
}
.form-success p {
  color: var(--text-dim);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 15: FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer-section {
  background: var(--shadow);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-tagline-brand {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--lime);
  color: var(--shadow);
  border-color: var(--lime);
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li, .footer-col ul li {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.footer-col a {
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--lime); }
.footer-col p { font-size: 0.85rem; color: var(--text-dim); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--lime); }

.footer-disclaimer {
  padding: 1.2rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-disclaimer p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS & SCROLL REVEAL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE – TABLET (≤1024px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .hero-video-cards {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }
  .hero-video-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 340px;
  }
  .hero-logo-wrap {
    width: 100%;
    max-width: 240px;
    margin-bottom: 2rem;
  }
  .hero-logo-img {
    width: 100%;
    mix-blend-mode: multiply;
  }
  /* Đảm bảo wrap cũng căn giữa */
  .hero-img-wrap {
    width: 100%;
    max-width: 320px;
    min-height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-video-wrap {
    width: 100%;
    max-width: 320px;
    height: 568px;
    margin: 0 auto;
  }
  /* Badges sát liền phía dưới video, không có khoảng hở */
  .ai-tools-grid {
    margin-top: 10px;
    max-width: 320px;
    width: 100%;
    justify-content: center;
  }
  .hero-float-col { display: none; }

  /* Sections */
  .ai-pillars { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }

  /* Trainer Cards */
  .trainer-card-left { grid-template-columns: 240px 1fr; }
  .trainer-card-luong { grid-template-columns: 260px 1fr; }
  .trainer-card-tony { grid-template-columns: 1fr 260px; }
  .trainer-card-right { grid-template-columns: 1fr; }
  .trainer-proof-box { min-width: unset; }

  /* Authority */
  .authority-inner { grid-template-columns: 280px 1fr; gap: 2rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE – MOBILE (≤768px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  /* ── Global ── */
  .container { padding: 0 16px; }
  html { font-size: 15px; }

  /* ── Nav ── */
  .nav-tagline-wrap { display: none; }
  .nav-inner { padding: 0 16px; gap: 0.6rem; }

  /* ── Hero ── */
  .hero-section { padding: 100px 0 60px; min-height: auto; }
  .hero-content { text-align: center; align-items: center; display: flex; flex-direction: column; }
  .pre-headline-wrap { justify-content: center; }
  .pre-headline { font-size: 0.6rem; letter-spacing: 0.06em; }
  .hero-logo-wrap { justify-content: center; margin-top: 0; margin-bottom: 0.8rem; }
  .hero-logo-img { width: 110px; height: 110px; }
  .hero-brand-title { white-space: normal !important; text-align: center; }
  .hero-sub-headline { white-space: normal !important; text-align: center; }
  .hero-headline { font-size: 2.4rem; text-align: center; }
  .hero-cta-group { align-items: center; }
  .countdown { gap: 0.3rem; }
  .cd-unit { min-width: 44px; }
  .cd-unit span { font-size: 1.8rem; }
  .countdown-wrap { display: block; width: 100%; text-align: center; }
  .big-promise { font-size: 0.78rem !important; text-align: center !important; border-left: 1px solid var(--glass-border) !important; }
  .promise-pills { justify-content: center !important; }

  /* ── Social Proof Bar ── */
  .social-proof-bar { gap: 1rem; padding: 1.2rem; flex-wrap: wrap; }
  .sp-divider { display: none; }
  .sp-num { font-size: 1.6rem; }

  /* ── Pain Section – mobile: 1 col, ảnh trái + chữ phải ── */
  .pain-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .pain-card { flex-direction: row; align-items: stretch; }
  .pain-illus-wrap {
    width: 110px;
    min-width: 110px;
    aspect-ratio: auto;
    flex-shrink: 0;
    align-self: stretch;
  }
  .pain-illus { height: 100%; object-fit: cover; }
  .pain-card-body { padding: 0.85rem 1rem; }
  .pain-card-body h3 { font-size: 0.88rem; margin-bottom: 0.3rem; }
  .pain-card-body p { font-size: 0.78rem; line-height: 1.55; }
  .pain-emotional { padding: 2rem 1.5rem; }
  .emotional-highlight { font-size: 1.3rem; }

  /* ── Belief Section ── */
  .belief-item { grid-template-columns: 1fr; }
  .belief-arrow { display: none; }
  .belief-hero-card { grid-template-columns: 1fr; }
  .bhc-arrow { display: none; }
  .belief-wrong, .bhc-wrong { flex-direction: row; }
  .belief-avatar-wrap, .ca-placeholder { width: 88px; height: 88px; }

  /* ── Opportunity / AI Pillars ── */
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .ai-pillars { grid-template-columns: 1fr 1fr; }
  .core-promise-box { flex-direction: column; text-align: left !important; }
  .cpb-content p { font-size: 0.82rem; line-height: 1.65; text-align: left !important; }
  .cpb-tag { text-align: left !important; }
  .cpb-content { text-align: left !important; }
  .mechanism-grid { grid-template-columns: 1fr; }

  /* ── Lead Magnet ── */
  .magnet-inner { grid-template-columns: 1fr; }
  .magnet-img-wrap { max-width: 420px; margin: 0 auto; }

  /* ── What You Get – mobile: 1 col, ảnh trái + chữ phải ── */
  .get-grid { grid-template-columns: 1fr; }
  .get-grid-compact { grid-template-columns: 1fr; gap: 0.75rem; }
  .get-card-compact { flex-direction: row; align-items: stretch; }
  .gcc-illus-wrap {
    width: 110px;
    min-width: 110px;
    aspect-ratio: auto;
    flex-shrink: 0;
    align-self: stretch;
  }
  .gcc-illus { height: 100%; object-fit: cover; }
  .gcc-num-badge { font-size: 1rem; top: 0.4rem; right: 0.4rem; }
  .gcc-body { padding: 0.85rem 1rem; }
  .gcc-body h3 { font-size: 0.88rem; margin-bottom: 0.3rem; }
  .gcc-body p { font-size: 0.78rem; line-height: 1.55; }
  .weekly-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Agenda / Timeline ── */
  .timeline { padding-left: 0; }
  .timeline::before { left: 70px; }
  .timeline-item { grid-template-columns: 70px 20px 1fr; gap: 0.8rem; }

  /* ── Quick Wins ── */
  .wins-journey { grid-template-columns: 1fr; }

  /* ── For Who ── */
  .two-col-who { grid-template-columns: 1fr; }
  .who-list-cards { grid-template-columns: repeat(3, 1fr); }
  .who-bottom-row { grid-template-columns: 1fr; }
  .who-block-header { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .rr-list { grid-template-columns: 1fr 1fr; }
  .risk-reversal-big .rr-list { grid-template-columns: 1fr 1fr; }


  /* ── Authority / Trainer ── */
  .trainer-card { padding: 1.5rem; gap: 1.5rem; }
  .trainer-card-left { grid-template-columns: 1fr; }
  .trainer-card-luong { grid-template-columns: 1fr; }
  .luong-photo-col { min-height: 260px; }
  .luong-photo { max-width: 220px; }
  .luong-badge-1, .luong-badge-2 { font-size: 0.65rem; padding: 0.3rem 0.7rem; }
  .trainer-card-tony { grid-template-columns: 1fr; }
  .trainer-card-tony .tony-photo-col { order: -1; min-height: 260px; }
  .tony-photo-full { max-width: 220px; }
  .tony-photo { max-width: 180px; }
  .tony-badge-1, .tony-badge-2 { font-size: 0.65rem; padding: 0.3rem 0.7rem; }
  .trainer-info-luong {
    border-left: none;
    border-top: 1px solid var(--glass-border);
    padding-left: 0;
    padding-top: 1.2rem;
  }
  .trainer-card-right { grid-template-columns: 1fr; }
  .authority-inner { grid-template-columns: 1fr; }
  .authority-stats { grid-template-columns: repeat(2, 1fr); }
  .authority-credentials { grid-template-columns: 1fr; }
  .as-item strong { font-size: 1.5rem; }

  /* ── Cases ── */
  .cases-grid { grid-template-columns: 1fr; }

  /* ── Form ── */
  .form-row { grid-template-columns: 1fr; }
  .form-urgency { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; justify-items: center; }
  .fu-item { width: 100%; justify-content: center; }
  .form-wrap { padding: 1.5rem; }
  .form-headline { font-size: clamp(1.8rem, 6vw, 2.4rem); line-height: 1.65; }
  .form-sub { font-size: 0.72rem; text-align: center; }
  .btn-submit { font-size: 0.95rem; }

  /* ── Footer ── */
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem 1rem;
  }
  .footer-inner > *:first-child { grid-column: 1 / -1; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-tagline { max-width: 100%; text-align: center; }
  .footer-tagline-brand { text-align: center; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE – SMALL MOBILE (≤480px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 480px) {
  /* ── Global ── */
  .container { padding: 0 14px; }
  html { font-size: 14px; }

  /* ── Nav ── */
  .nav-inner { padding: 0 12px; gap: 0.5rem; }
  .btn-nav { padding: 0.5rem 0.9rem; font-size: 0.7rem; }
  .nav-logo-img { height: 40px; width: 40px; }

  /* ── Hero ── */
  .hero-section { padding: 88px 0 50px; }
  .hero-headline { font-size: 2.2rem; }
  .section-headline { font-size: clamp(1.5rem, 7vw, 2rem); line-height: 1.85; }
  .hero-brand-title {
    font-size: 14vw !important;
    white-space: normal !important;
    line-height: 1.0 !important;
  }
  .hero-sub-headline {
    font-size: 4.2vw !important;
    white-space: normal !important;
    letter-spacing: 0.04em !important;
  }
  .pre-headline { font-size: 0.55rem; }
  .big-promise { padding: 1rem 1.1rem; font-size: 0.78rem; text-align: center; }
  .promise-pills { justify-content: center; }
  .hero-cta-group { text-align: center; }
  .btn-primary.btn-xl { font-size: 0.88rem; padding: 0.95rem 1.6rem; }
  .cta-note { font-size: 0.72rem; }
  .countdown-wrap { padding: 1rem; text-align: center; display: block; margin: 0 auto; width: fit-content; align-self: center; }
  .countdown { justify-content: center; }
  .countdown-label { text-align: center; }
  .countdown-sub { text-align: center; }
  .cd-unit span { font-size: 1.5rem; }
  .cd-unit { min-width: 38px; }
  .cd-sep { font-size: 1.5rem; }

  /* ── Video Hero ── */
  .hero-img-wrap {
    max-width: 260px;
  }
  .hero-video-wrap {
    max-width: 260px;
    height: 462px;
    border-radius: 24px;
    margin: 0 auto;
  }
  .ai-tools-grid { gap: 0.35rem; max-width: 260px; margin-top: 8px; }
  .tool-badge { font-size: 0.7rem; padding: 0.3rem 0.6rem; }

  /* ── Social Proof ── */
  .social-proof-bar { padding: 1rem; gap: 0.8rem; }
  .sp-num { font-size: 1.4rem; }
  .sp-label { font-size: 0.65rem; }

  /* ── Section padding ── */
  .pain-section,
  .belief-section,
  .opportunity-section,
  .magnet-section,
  .get-section,
  .agenda-section,
  .wins-section,
  .for-section,
  .authority-section,
  .cases-section,
  .faq-section,
  .form-section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* ── Grids ── */
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .weekly-grid { grid-template-columns: 1fr; }
  .ai-pillars { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .wins-journey { grid-template-columns: 1fr; }

  /* ── Pain cards – extra small: giữ layout ngang, ảnh nhỏ hơn ── */
  .pain-illus-wrap { width: 90px; min-width: 90px; }
  .pain-card-body h3 { font-size: 0.82rem; }
  .pain-card-body p { font-size: 0.73rem; }
  .gcc-illus-wrap { width: 90px; min-width: 90px; }
  .gcc-body h3 { font-size: 0.82rem; }
  .gcc-body p { font-size: 0.73rem; }
  .pain-emotional { padding: 1.5rem 1rem; }
  .emotional-highlight { font-size: 1.15rem; }

  /* ── Belief ── */
  .belief-wrong, .bhc-wrong { padding: 1rem; gap: 0.8rem; }
  .belief-avatar-wrap { width: 76px; height: 76px; }

  /* ── Who Section ── */
  .who-list-cards { grid-template-columns: 1fr; gap: 0.6rem; }
  .who-list-cards .who-card {
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    padding: 0.7rem 1rem !important;
    gap: 1rem !important;
  }
  .who-list-cards .who-card .wi-avatar {
    width: 48px !important;
    height: 48px !important;
  }
  .who-list-cards .who-card p {
    font-size: 0.8rem !important;
    line-height: 1.35 !important;
  }

  /* ── Trainer Cards ── */
  .trainer-card { padding: 1.2rem; }
  .trainer-name { font-size: 1.4rem; }
  .luong-photo { max-width: 180px; }
  .tony-photo-full { max-width: 180px; }
  .luong-photo-col, .tony-photo-col { min-height: 220px; }

  /* ── Authority Stats ── */
  .authority-stats { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; padding: 1rem; }
  .authority-credentials { grid-template-columns: 1fr; }

  /* ── Timeline ── */
  .timeline::before { left: 55px; }
  .timeline-item { grid-template-columns: 55px 16px 1fr; gap: 0.6rem; }
  .tl-hour { font-size: 0.85rem; }
  .tl-dot { width: 16px; height: 16px; }

  /* ── Form ── */
  .form-wrap { padding: 1.2rem; border-radius: 20px; }
  .form-headline { font-size: clamp(1.5rem, 7vw, 2rem); }
  .btn-submit { font-size: 0.88rem; padding: 1rem 1.5rem; }
  .form-trust { gap: 0.6rem; }
  .ft-item { font-size: 0.72rem; }

  /* ── Floating CTA ── */
  .floating-cta .btn-floating { font-size: 0.75rem; padding: 0.75rem 1.2rem; }
  .floating-cta { bottom: 1rem; left: 14px; right: 14px; transform: none; }
  .btn-floating { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer-section { padding: 3rem 0 0; }
  .footer-logo-img { height: 80px; width: 80px; }
  .footer-inner { gap: 1.5rem; }
  .footer-col h5 { font-size: 0.75rem; margin-bottom: 0.7rem; }

  /* ── FAQ ── */
  .faq-q { padding: 1rem 1.2rem; font-size: 0.88rem; }
  .faq-a p { padding: 0 1.2rem 1rem; }

  /* ── Core promise box ── */
  .core-promise-box { padding: 1.2rem; text-align: left; }
  .cpb-content p { font-size: 0.8rem; line-height: 1.65; text-align: left; }
  .cpb-tag { text-align: left; }
  .cpb-icon { font-size: 1.8rem; }
  .why-new-mechanism { padding: 1.5rem 1rem; }
  .why-new-mechanism h3 { font-size: 1.4rem; }

  /* ── Case cards ── */
  .case-card { padding: 1.5rem; }
  .case-header { grid-template-columns: 46px 1fr auto; }
  .case-avatar-img, .ca-placeholder { width: 46px; height: 46px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE – EXTRA SMALL (≤375px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 375px) {
  .hero-brand-title { font-size: 12vw !important; line-height: 1.0 !important; }
  .hero-sub-headline { font-size: 4vw !important; }
  .hero-video-wrap { max-width: 240px; height: 426px; margin: 0 auto; }
  .hero-img-wrap { max-width: 240px; }
  .ai-tools-grid { max-width: 240px; margin-top: 8px; }
  .ai-pillars { grid-template-columns: 1fr; }
  .countdown { gap: 0.2rem; }
  .cd-unit span { font-size: 1.3rem; }
  .cd-unit { min-width: 34px; }
  .cd-sep { font-size: 1.3rem; }
  .btn-nav { font-size: 0.65rem; padding: 0.45rem 0.75rem; }
  .authority-stats { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 50px 14px 1fr; }
  .tl-hour { font-size: 0.78rem; }
}

/* Prevent any horizontal scroll globally */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
* { min-width: 0; }

/* ─── OPPORTUNITY VIDEO EMBED ─── */
.opportunity-video-wrap {
  margin: 2.5rem auto 0;
  max-width: 760px;
  width: 100%;
}

.opportunity-video-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--glass-border);
  box-shadow:
    0 0 60px rgba(159, 229, 44, 0.18),
    0 20px 60px rgba(0, 0, 0, 0.55);
  background: #000;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.opportunity-video-inner:hover {
  box-shadow:
    0 0 80px rgba(159, 229, 44, 0.3),
    0 24px 72px rgba(0, 0, 0, 0.6);
  transform: translateY(-3px);
}

.opportunity-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .opportunity-video-wrap {
    max-width: 100%;
    margin: 2rem 0 0;
  }
}

/* ─── HERO SPEAKERS IMAGE ─── */
.hero-speakers-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(159, 229, 44, 0.25);
  box-shadow:
    0 0 50px rgba(159, 229, 44, 0.15),
    0 16px 48px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  background: var(--forest);
}

.hero-speakers-wrap:hover {
  box-shadow:
    0 0 70px rgba(159, 229, 44, 0.28),
    0 20px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(-3px);
}

.hero-speakers-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-speakers-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  background: linear-gradient(135deg, rgba(10, 74, 39, 0.95), rgba(15, 107, 53, 0.95));
  border-top: 1px solid rgba(159, 229, 44, 0.2);
}

.speaker-name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.speaker-sep {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* Mobile-only block: hidden on desktop */
.hero-speakers-mobile-block {
  display: none;
}

/* Desktop: hide mobile block, show speakers inside hero-video-col */
@media (min-width: 769px) {
  .hero-speakers-mobile-block { display: none !important; }
}

/* Mobile: show mobile block, hide speakers inside hero-video-col */
@media (max-width: 768px) {
  .hero-speakers-mobile-block {
    display: block;
    width: 100%;
    margin: 0.85rem 0 1rem;
  }
  .hero-speakers-mobile-block .hero-speakers-wrap {
    max-width: 420px;
    margin: 0 auto 0;
    border-radius: var(--radius-md);
  }
  .hero-video-col > .hero-speakers-wrap {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .hero-speakers-wrap {
    margin-bottom: 0.75rem;
  }
  .speaker-name { font-size: 0.72rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CHATBOT WIDGET
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.chatbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), #6fcf00);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a2e12;
  box-shadow: 0 4px 20px rgba(159,229,44,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  order: 2;
}
.chatbot-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(159,229,44,0.55); }
.chatbot-notif {
  position: absolute;
  top: -4px; right: -4px;
  background: #ff4757;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-notif 1.5s infinite;
}
@keyframes pulse-notif {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.chatbot-panel {
  width: 320px;
  background: #0d2e16;
  border: 1px solid rgba(159,229,44,0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  order: 1;
  animation: chatOpen 0.25s ease;
}
.chatbot-panel.open { display: flex; }
@keyframes chatOpen {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.chatbot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(159,229,44,0.12), rgba(15,107,53,0.3));
  border-bottom: 1px solid rgba(159,229,44,0.15);
}
.chatbot-avatar {
  font-size: 1.6rem;
  width: 38px; height: 38px;
  background: rgba(159,229,44,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chatbot-name { font-size: 0.88rem; font-weight: 700; color: #fff; }
.chatbot-status { font-size: 0.7rem; color: var(--lime); display: flex; align-items: center; gap: 4px; }
.status-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.chatbot-close-btn {
  margin-left: auto;
  background: none; border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  border-radius: 50%;
  transition: color 0.2s;
}
.chatbot-close-btn:hover { color: #fff; }
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 240px;
  scrollbar-width: thin;
  scrollbar-color: rgba(159,229,44,0.2) transparent;
}
.chat-msg { display: flex; flex-direction: column; gap: 3px; }
.chat-msg.user { align-items: flex-end; }
.chat-msg.bot  { align-items: flex-start; }
.chat-bubble {
  max-width: 85%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble {
  background: rgba(255,255,255,0.07);
  color: #e8f5e9;
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--lime), #7ed00a);
  color: #0a2e12;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}
.chat-time { font-size: 0.62rem; color: var(--text-muted); padding: 0 4px; }
.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 12px;
}
.quick-reply {
  background: rgba(159,229,44,0.08);
  border: 1px solid rgba(159,229,44,0.25);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.quick-reply:hover { background: rgba(159,229,44,0.18); color: #fff; }

/* Inline suggestions inside messages */
.inline-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 4px 0 2px;
  animation: chatOpen 0.2s ease;
}
.chatbot-input-wrap {
  display: flex;
  gap: 8px;
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.chatbot-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(159,229,44,0.2);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.chatbot-input::placeholder { color: var(--text-muted); }
.chatbot-input:focus { border-color: rgba(159,229,44,0.5); }
.chatbot-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--lime);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a2e12;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.chatbot-send:hover { transform: scale(1.08); }
.typing-bubble {
  display: flex;
  gap: 4px;
  padding: 10px 13px;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.typing-bubble span {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}
@media (max-width: 480px) {
  .chatbot-widget { bottom: 80px; right: 12px; }
  .chatbot-panel { width: 290px; }
}


