/* ============================================================
   BLACK HUSTLR ACADEMY — TFCAE SALES PAGE
   All design tokens sourced from CLAUDE.md
   Section comments match HTML section IDs exactly
   ============================================================ */

/* === ROOT TOKENS === */
:root {
  /* Colors */
  --color-primary: #E8A020;
  --color-primary-dark: #C4841A;
  --color-accent: #FF5C2B;
  --color-accent-dark: #D94A20;
  --color-bg: #0D0D0D;
  --color-surface: #161616;
  --color-surface-raised: #1F1F1F;
  --color-text: #F0EDE8;
  --color-text-muted: #8A8680;
  --color-border: #2A2A2A;
  --color-success: #34C77B;
  --color-warning: #F5A623;
  --color-error: #E5534B;

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
  --space-32: 128px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-prominent: 0 12px 40px rgba(232, 160, 32, 0.15);
}

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

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* === LAYOUT === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-24) 0;
  }
}

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

/* === TYPOGRAPHY === */
h1, h2 {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

h2.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.section-subheadline {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-12);
}

.section-intro {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto var(--space-12);
  line-height: 1.6;
}

/* === BUTTONS === */
.btn-cta {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background-color 200ms ease, transform 200ms ease;
  text-align: center;
  white-space: nowrap;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  outline: none;
}

.btn-cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 92, 43, 0.4);
}

.btn-cta-lg {
  font-size: 18px;
  padding: 22px 48px;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 200ms ease, color 200ms ease;
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background-color: var(--color-primary);
  background-image: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 35%, var(--color-primary) 65%, var(--color-primary-dark) 100%);
  color: var(--color-bg);
  padding: var(--space-3) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 100;
}

.announcement-bar strong {
  font-weight: 800;
}

.announcement-bar s {
  opacity: 0.65;
}

.announcement-link {
  color: var(--color-bg);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  transition: opacity 150ms ease;
}

.announcement-link:hover {
  opacity: 0.75;
}

/* === STICKY NAV === */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.nav-logo-text span {
  color: var(--color-text-muted);
}

.nav-links {
  display: none;
  gap: var(--space-8);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 150ms ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-cta {
  font-size: 13px;
  padding: 10px 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 250ms ease, transform 250ms ease, background-color 200ms ease;
  white-space: nowrap;
}

.nav-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* === HERO === */
.hero {
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(232, 160, 32, 0.11) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(232, 160, 32, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(232, 160, 32, 0.04) 0%, transparent 60%);
  padding: var(--space-24) 0;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-32) 0;
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.hero-pre-headline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.25);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
}

.hero-h1 {
  max-width: 1080px;
}

.hero-subheadline {
  font-size: 20px;
  color: var(--color-text-muted);
  max-width: 800px;
  line-height: 1.6;
}

/* VSL embed */
.vsl-wrapper {
  width: 100%;
  max-width: 800px;
}

.vsl-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium), 0 0 0 1px rgba(232, 160, 32, 0.2), 0 8px 48px rgba(232, 160, 32, 0.1);
}

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

/* Hero badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  background-color: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.micro-trust {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

/* === PROBLEM === */
.problem {
  background-color: var(--color-surface);
  background-image: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 80px);
}

.problem .section-heading {
  margin-bottom: var(--space-4);
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 760px;
  margin: 0 auto var(--space-12);
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background-color: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-error);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.pain-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-text {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
  font-style: italic;
}

.problem-close {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  max-width: 640px;
  margin: 0 auto;
}

/* === AGITATION === */
.agitation {
  background-color: var(--color-bg);
  background-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(229, 83, 75, 0.05) 0%, transparent 65%);
}

.agitation-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-top: 2px solid rgba(229, 83, 75, 0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
}

.agitation-body {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: var(--space-6) 0;
}

.agitation-transition {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
}

/* === INTRODUCTION === */
.introduction {
  background-color: var(--color-surface);
  background-image: radial-gradient(ellipse 55% 80% at 0% 50%, rgba(232, 160, 32, 0.06) 0%, transparent 55%);
}

.introduction-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .introduction-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.introduction-mockup {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  width: 100%;
}

.introduction-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.introduction-copy .section-heading {
  margin-bottom: 0;
}

.introduction-body {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === WHAT'S INSIDE === */
.what-inside {
  background-color: var(--color-bg);
  /* Subtle dot-grid texture for visual depth */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(42, 42, 42, 0.9) 1px, transparent 0),
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(232, 160, 32, 0.05) 0%, transparent 60%);
  background-size: 40px 40px, 100% 100%;
}

.what-inside .section-heading {
  text-align: center;
  margin-bottom: var(--space-3);
}

.what-inside .section-subheadline {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.phases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .phases-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

.phase-card {
  background-color: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.phase-card:hover {
  box-shadow: var(--shadow-prominent);
  transform: translateY(-4px);
}

.phase-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.phase-icon {
  color: var(--color-primary);
  width: 40px;
  height: 40px;
}

.phase-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.phase-outcome {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

/* === ABOUT === */
.about {
  background-color: var(--color-surface);
  background-image: radial-gradient(ellipse 50% 70% at 100% 50%, rgba(232, 160, 32, 0.04) 0%, transparent 55%);
}

.about .section-heading {
  margin-bottom: var(--space-8);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: 340px 1fr;
  }
}

.about-headshot {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium), 0 0 40px rgba(232, 160, 32, 0.08);
  width: 100%;
  max-width: 340px;
}

.about-bio {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.about-bio strong {
  color: var(--color-text);
  font-weight: 600;
}

.cred-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 480px) {
  .cred-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cred-stat {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
}

.cred-stat-number {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  display: block;
}

.cred-stat-label {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* === TESTIMONIALS === */
.testimonials {
  background-color: var(--color-bg);
  background-image: radial-gradient(ellipse 80% 35% at 50% 0%, rgba(232, 160, 32, 0.08) 0%, transparent 60%);
}

.testimonials .section-heading {
  text-align: center;
  margin-bottom: var(--space-12);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 480px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.testimonial-card {
  background-color: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-prominent);
  transform: translateY(-4px);
}

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

.testimonials-footer {
  text-align: center;
  margin-top: var(--space-12);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-success);
}

/* === OFFER === */
.offer {
  background-color: var(--color-surface);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 160, 32, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(255, 92, 43, 0.04) 0%, transparent 60%);
}

.offer .section-heading {
  text-align: center;
  margin-bottom: var(--space-3);
}

.offer .section-subheadline {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-12);
}

.offer-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 760px;
  margin: 0 auto;
}

/* Core product card */
.offer-core-card {
  background-color: var(--color-surface-raised);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-prominent);
  padding: var(--space-8);
}

.offer-core-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: rgba(232, 160, 32, 0.1);
  border: 1px solid rgba(232, 160, 32, 0.3);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}

.offer-item-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.offer-item-value {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.offer-item-value span {
  color: var(--color-primary);
  font-weight: 700;
}

/* Bonus cards */
.offer-bonus-card {
  background-color: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
}

.bonus-number {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  padding-top: 2px;
}

.bonus-detail {
  flex: 1;
}

.bonus-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.bonus-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.bonus-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-2);
}

/* Value receipt */
.offer-receipt {
  background-color: var(--color-bg);
  border: 1px solid rgba(232, 160, 32, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(232, 160, 32, 0.08), inset 0 1px 0 rgba(232, 160, 32, 0.1);
  padding: var(--space-8);
  text-align: center;
  margin-top: var(--space-4);
}

.receipt-total {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.receipt-total-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-error);
  text-decoration: line-through;
  opacity: 0.7;
  display: block;
}

.receipt-label {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: var(--space-4) 0 var(--space-2);
}

.receipt-price {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-8);
}

.offer-trust {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

.offer-trust .sep {
  margin: 0 var(--space-2);
  opacity: 0.4;
}

/* === GUARANTEE === */
.guarantee {
  background-color: var(--color-bg);
  background-image: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(52, 199, 123, 0.06) 0%, transparent 65%);
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 640px) {
  .guarantee-inner {
    grid-template-columns: 200px 1fr;
    text-align: left;
  }
}

.guarantee-badge-img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.guarantee .section-heading {
  margin-bottom: var(--space-6);
}

.guarantee-body {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.guarantee-body strong {
  color: var(--color-text);
  font-weight: 600;
}

/* === WHO IT'S FOR === */
.who-for {
  background-color: var(--color-surface);
  background-image: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(52, 199, 123, 0.04) 0%, transparent 60%);
}

.who-for .section-heading {
  text-align: center;
  margin-bottom: var(--space-12);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.who-column {
  background-color: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.who-column-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-6);
}

.who-column-title.for {
  color: var(--color-success);
}

.who-column-title.not-for {
  color: var(--color-error);
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.who-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* === FAQ === */
.faq {
  background-color: var(--color-bg);
  background-image: radial-gradient(circle at 1px 1px, rgba(42, 42, 42, 0.9) 1px, transparent 0);
  background-size: 40px 40px;
}

.faq .section-heading {
  text-align: center;
  margin-bottom: var(--space-12);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6);
  background: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: color 150ms ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question[aria-expanded="true"] {
  color: var(--color-primary);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 250ms ease;
  color: var(--color-text-muted);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-6);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-answer.open {
  display: block;
}

/* === URGENCY === */
.urgency {
  background-color: var(--color-surface);
  background-image:
    linear-gradient(135deg, rgba(232, 160, 32, 0.07) 0%, transparent 45%),
    linear-gradient(315deg, rgba(255, 92, 43, 0.05) 0%, transparent 45%);
  position: relative;
  overflow: hidden;
}

.urgency::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.urgency-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.urgency .section-heading {
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

.urgency-body {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

/* Countdown timer */
.countdown-wrap {
  margin: var(--space-8) auto var(--space-12);
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.countdown-label {
  font-size: 15px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.countdown-label strong {
  color: var(--color-text);
}

.countdown-blocks {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--color-bg);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-8);
  min-width: 90px;
  box-shadow: 0 0 24px rgba(245, 166, 35, 0.08), inset 0 1px 0 rgba(245, 166, 35, 0.08);
}

.countdown-digit {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1;
  color: var(--color-warning);
  letter-spacing: -0.02em;
  /* Tabular nums prevents layout shift as digits change */
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.countdown-unit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: var(--color-warning);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}

.countdown-sub {
  font-size: 14px;
  color: var(--color-text-muted);
}

.countdown-sub strong {
  color: var(--color-warning);
}

@media (max-width: 480px) {
  .countdown-block {
    min-width: 72px;
    padding: var(--space-4) var(--space-6);
  }
}

/* Mini countdown shown beneath CTA buttons */
.mini-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: fit-content;
  margin: var(--space-4) auto 0;
  padding: var(--space-3) var(--space-8);
  background: rgba(245, 166, 35, 0.07);
  border: 1px solid rgba(245, 166, 35, 0.28);
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  font-size: 15px;
  letter-spacing: 0.01em;
  animation: mini-timer-pulse 3s ease-in-out infinite;
}

.mini-timer svg {
  width: 16px;
  height: 16px;
  color: var(--color-warning);
  flex-shrink: 0;
}

.mini-timer-val {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--color-warning);
}

@keyframes mini-timer-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
  50%       { box-shadow: 0 0 16px 2px rgba(245, 166, 35, 0.12); }
}

/* === FINAL CLOSE === */
.final-close {
  background-color: var(--color-bg);
  background-image: radial-gradient(ellipse 65% 45% at 50% 105%, rgba(255, 92, 43, 0.07) 0%, transparent 60%);
}

.final-close-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.final-close .section-heading {
  margin-bottom: 0;
}

.final-close-body {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.final-close-trust {
  font-size: 13px;
  color: var(--color-text-muted);
}

.final-close-trust .sep {
  margin: 0 var(--space-2);
  opacity: 0.4;
}

/* === FOOTER === */
.footer {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-8) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.footer-link {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color 150ms ease;
}

.footer-link:hover {
  color: var(--color-text);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.social-link {
  color: var(--color-text-muted);
  transition: color 150ms ease;
  display: flex;
  align-items: center;
}

.social-link:hover {
  color: var(--color-primary);
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 550ms ease, transform 550ms ease;
}

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

/* === GOLD ACCENT BAR (used sparingly, max 2 per page) === */
.accent-bar {
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  margin-bottom: var(--space-4);
}

/* === RESPONSIVE HELPERS === */
@media (max-width: 480px) {
  .btn-cta-lg {
    font-size: 16px;
    padding: 18px 28px;
    width: 100%;
    max-width: 380px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .offer-bonus-card {
    flex-direction: column;
    gap: var(--space-3);
  }

  .bonus-number {
    font-size: 20px;
  }
}
