/* ============================================
   WhatsApp Psychology 2.0 - Design System
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #070908;
  --bg-secondary: #0d110e;
  --bg-tertiary: #121814;
  --bg-card: #141b16;
  --bg-card-hover: #1c261f;
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  
  --accent: #25D366;
  --accent-hover: #1ead56;
  --accent-light: #4ade80;
  --accent-subtle: rgba(37, 211, 102, 0.1);
  --accent-glow: rgba(37, 211, 102, 0.15);
  --accent-glow-strong: rgba(37, 211, 102, 0.35);
  --accent-border: rgba(37, 211, 102, 0.25);
  
  --gold: #f59e0b;
  --gold-subtle: rgba(245, 158, 11, 0.12);
  --gold-border: rgba(245, 158, 11, 0.3);
  
  --red: #ef4444;
  --red-subtle: rgba(239, 68, 68, 0.12);
  
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);

  /* Typography */
  --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Layout */
  --max-width: 1120px;
  --content-width: 720px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.25s var(--ease);
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

strong {
  color: var(--text-primary);
  font-weight: 700;
}

.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.highlight-text { color: var(--text-primary); font-weight: 600; }
.highlight-green { color: var(--accent-light); font-weight: 600; }
.highlight-gold { color: var(--gold); font-weight: 600; }
.highlight-large { font-size: clamp(1.25rem, 3vw, 1.625rem); color: var(--accent-light); font-weight: 700; }

.highlight-box {
  background: var(--accent-subtle);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
  color: var(--text-primary);
  font-weight: 600;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.narrow {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 5rem 0;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: -0.5rem;
  margin-bottom: 2.5rem;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all var(--transition);
  background-color: rgba(7, 9, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.header__logo span {
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-full);
}

.btn--primary {
  background: linear-gradient(135deg, #25D366 0%, #1ead56 100%);
  color: #05140b;
  padding: 0.875rem 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #2ce06e 0%, #22b95c 100%);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn--hero, .btn--large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1ead56 100%);
  color: #05140b;
  padding: 1.125rem 1.5rem;
  font-weight: 800;
  font-size: clamp(0.9375rem, 3.8vw, 1.0625rem);
  line-height: 1.35;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.btn--whatsapp:hover {
  background: linear-gradient(135deg, #2ce06e 0%, #22b95c 100%);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  flex-shrink: 0;
}

/* --- Hero Section --- */
.hero {
  padding: 8.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-glow) 0%, transparent 70%),
    var(--bg-primary);
  text-align: center;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero__title {
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.hero__title strong {
  color: var(--accent-light);
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* Hero Stats Bar */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
}

.stat-card.highlight {
  border-color: var(--accent-border);
  background: var(--accent-subtle);
}

.stat-card__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-card__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Countdown Timer */
.timer-box {
  background: rgba(20, 27, 22, 0.8);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.timer-box__title {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.timer-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  background: var(--bg-primary);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  min-width: 54px;
  text-align: center;
}

.timer-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.375rem;
  font-weight: 700;
}

.hero__cta-group {
  margin-bottom: 2.5rem;
}

.hero__urgency-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Early Bird Banner */
.early-bird-banner {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
  border: 1.5px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  width: 100%;
  max-width: 680px;
  text-align: left;
}

.early-bird-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.early-bird-tag {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: 0.05em;
}

.early-bird-count {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 100%);
  border-radius: var(--radius-full);
}

.early-bird-sub {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* --- Story & Video --- */
.story-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-content {
  margin-bottom: 3rem;
}

.lead-text {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.video-container {
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin: 1.75rem auto 2.25rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--accent-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 50px var(--accent-glow-strong);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  font-weight: 700;
  color: var(--accent-light);
  margin-top: 1.125rem;
  margin-bottom: 0;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.01em;
}

/* --- Problem Section --- */
.problem-section {
  padding-top: 5rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.problem-card__intro {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* Process Flow Diagram */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2.5rem;
  background: var(--bg-primary);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.flow-step {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--bg-tertiary);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.flow-step--alert {
  color: var(--red);
  background: var(--red-subtle);
  border-color: rgba(239, 68, 68, 0.3);
}

.flow-arrow {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.125rem;
}

.problem-card__body {
  font-size: 1.125rem;
}

/* --- Mechanism Section --- */
.mechanism-section {
  background-color: var(--bg-secondary);
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mechanism-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.mechanism-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.mechanism-card--wide {
  grid-column: 1 / -1;
  border-left: 3px solid var(--accent);
}

.mechanism-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mechanism-card__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1.5px solid var(--accent-border);
  color: var(--accent-light);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mechanism-card__key {
  color: var(--accent-light);
  font-weight: 600;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.silence-callout {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  border: 1px solid var(--border);
}

.silence-callout__quote {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 0.25rem;
}

.mechanism-list {
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding-left: 1rem;
}

.mechanism-list li {
  color: var(--text-secondary);
  position: relative;
  margin-bottom: 0.375rem;
}

.mechanism-list li::before {
  content: '•';
  color: var(--red);
  font-weight: bold;
  position: absolute;
  left: -1rem;
}

/* --- Pay Attention Section --- */
.pay-attention-card {
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.05) 0%, var(--bg-card) 100%);
  border: 1.5px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2.25rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.contrast-box {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  background: var(--bg-primary);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contrast-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
}

.contrast-item.positive {
  background: var(--accent-subtle);
  color: var(--accent-light);
  border: 1px solid var(--accent-border);
}

.contrast-item.negative {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.contrast-divider {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--gold);
  font-size: 0.875rem;
}

/* --- Proof Breaks --- */
.proof-break-section {
  padding: 2.5rem 0;
}

.proof-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.proof-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: var(--accent);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
}

.testimonial-img {
  width: 100%;
  display: block;
  cursor: pointer;
  transition: transform var(--transition);
}

.testimonial-img:hover {
  transform: scale(1.01);
}

/* --- Math Section --- */
.math-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
}

.math-equations {
  background: var(--bg-primary);
  border: 1.5px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 1.75rem 0 2rem;
  text-align: center;
}

.math-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.math-formula { color: var(--text-primary); }
.math-equals { color: var(--text-muted); }
.math-result { color: var(--accent-light); }

.math-footnote {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-style: italic;
}

.spending-list, .check-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding-left: 0;
}

.spending-list li, .check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.spending-list li::before {
  content: '₦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-weight: bold;
}

.program-shows {
  background: var(--accent-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.75rem;
  border: 1px solid var(--accent-border);
}

.program-shows p {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.program-shows ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.program-shows li {
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}

/* --- Audience Section --- */
.audience-section {
  background-color: var(--bg-secondary);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.audience-card--not {
  border-top: 3px solid var(--red);
}

.audience-card--for {
  border-top: 3px solid var(--accent);
}

.audience-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.audience-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.audience-card--not .audience-card__icon {
  background: var(--red-subtle);
  color: var(--red);
}

.audience-card--for .audience-card__icon {
  background: var(--accent-subtle);
  color: var(--accent-light);
}

.audience-card ul {
  list-style: none;
  padding-left: 0;
}

.audience-card li {
  margin-bottom: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Value & Bonuses --- */
.cost-list {
  list-style: none;
  padding-left: 1rem;
  margin: 1rem 0 1.5rem;
}

.cost-list li {
  position: relative;
  margin-bottom: 0.375rem;
  color: var(--red);
}

.cost-list li::before {
  content: '✕';
  position: absolute;
  left: -1rem;
  font-weight: bold;
}

.skills-box {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
}

.skills-box ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.skills-box li {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.bonus-card--full {
  grid-column: 1 / -1;
}

.bonus-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-light);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

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

.bonus-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
}

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

.bonus-from {
  color: var(--text-muted);
}

.bonus-card__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
  font-size: 0.9375rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 0;
}

/* Value Summary Box */
.value-summary-box {
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.08) 0%, var(--bg-card) 100%);
  border: 2px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.value-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.value-original {
  text-decoration: line-through;
  color: var(--red);

}

.value-discount {
  color: var(--accent-light);
  font-weight: 700;
}

.value-summary-row.final {
  border-bottom: none;
  font-size: 1.5rem;
  font-weight: 800;
  padding-top: 1.25rem;
}

.value-final {
  color: var(--accent-light);
  font-size: 2.25rem;
  font-family: var(--font-heading);
}

/* --- Question Section --- */
.question-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
}

.price-drop-box {
  background: var(--bg-primary);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  margin: 1.75rem 0;
}

.price-drop-final {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-light);
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.past-struggles {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0;
}

.past-struggles li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.past-struggles li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.no-excuse-box {
  background: var(--accent-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 2rem;
  border: 1px solid var(--accent-border);
}

.no-excuse-box ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.no-excuse-box li {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.375rem;
}

/* --- Main Testimonials Gallery --- */
.testimonials-section {
  background-color: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.gallery-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-caption {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.625rem;
  text-align: center;
  font-weight: 600;
}

/* --- Guarantee Section --- */
.guarantee-card {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  padding: 3rem 2.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.shield-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deal-box {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.75rem 0;
}

.deal-box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.deal-box li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* --- Early Bird Active Card --- */
.early-bird-card {
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.08) 0%, var(--bg-card) 100%);
  border: 2px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2.25rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.early-bird-price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-light);
}

.spots-count-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* --- Scenario Section --- */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.scenario-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.scenario-card--success {
  border-top: 3px solid var(--accent);
}

.scenario-card--delayed {
  border-top: 3px solid var(--gold);
}

.scenario-card__header {
  margin-bottom: 1.25rem;
}

.scenario-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.375rem;
}

.scenario-card--success .scenario-tag { color: var(--accent-light); }
.scenario-card--delayed .scenario-tag { color: var(--gold); }

.scenario-result {
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* --- Payment Method Section --- */
.payment-section {
  padding-bottom: 6rem;
}

.payment-card {
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.08) 0%, var(--bg-card) 100%);
  border: 2px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 50px var(--accent-glow);
}

.payment-card__title {
  margin-bottom: 2rem;
}

.bank-details-box {
  background: var(--bg-primary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.bank-row:last-child {
  border-bottom: none;
}

.bank-row.highlight {
  background: var(--accent-subtle);
  margin: 0.5rem -1rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  border-bottom: none;
}

.bank-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 600;
}

.bank-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.bank-value.number {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  color: var(--accent-light);
  letter-spacing: 0.05em;
}

.bank-value.amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
}

.bank-value-with-copy {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-copy {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-copy:hover {
  background: var(--accent-light);
  transform: scale(1.03);
}

.payment-instructions {
  max-width: 520px;
  margin: 0 auto;
}

.instruction-text {
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* --- Footer --- */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background-color: var(--bg-primary);
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.footer-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-credit {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.footer-credit a {
  color: var(--accent-light);
  font-weight: 700;
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox--active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.lightbox__close:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-children > .revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Layouts --- */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mechanism-grid, .audience-grid, .bonuses-grid, .scenario-grid {
    grid-template-columns: 1fr;
  }

  .contrast-box {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .contrast-divider {
    padding: 0.25rem 0;
  }

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

  .bank-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .bank-value-with-copy {
    width: 100%;
    justify-content: space-between;
  }
}

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

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

  .bank-details-box {
    padding: 1.25rem 1rem;
  }

  .timer-grid {
    gap: 0.5rem;
  }

  .timer-number {
    min-width: 44px;
    padding: 0.375rem 0.5rem;
    font-size: 1.5rem;
  }

  .btn--hero, .btn--large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    width: 100%;
  }
}
