/* ============================================
   BASE CSS — Economic Ninja Landing Pages
   Shared layout, spacing, typography, components.
   Theme colors come from theme files.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

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

:root {
  /* === LAYOUT === */
  --max-width: 900px;
  --section-pad: 72px;
  --section-pad-mobile: 52px;
  --container-pad: 24px;

  /* === TYPOGRAPHY === */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Orbitron', sans-serif;

  /* === BASE COLORS (overridden by theme) === */
  --black: #050508;
  --dark: #0a0a10;
  --dark-gray: #0f0f18;
  --medium-gray: #1a1a28;
  --border: #1e1e32;
  --light-gray: #e5e5e5;
  --white: #f0f0f5;
  --text-muted: #7777a0;
  --text-faint: #555;

  /* Accent colors (theme overrides these) */
  --accent: #00d4ff;
  --accent-dim: #0099bb;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --accent-glow-strong: rgba(0, 212, 255, 0.3);

  --red: #cc2244;
  --red-dark: #aa1833;
  --red-glow: rgba(204, 34, 68, 0.15);

  --green: #00e878;
  --green-dim: #00b85c;
  --green-glow: rgba(0, 232, 120, 0.2);

  --gold: #d4a012;
  --gold-light: #f0c040;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

body > * { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

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


/* ============================================
   URGENCY BAR
   ============================================ */
.urgency-bar {
  background: var(--red);
  text-align: center;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 110;
}
.urgency-text { white-space: nowrap; }
.urgency-bar .urgency-highlight { color: #ffffff; font-weight: 800; }
.urgency-bar .urgency-price { color: #ffdd44; font-weight: 800; }
/* Inline countdown in urgency bar */
.urgency-countdown {
  display: flex;
  gap: 6px;
  align-items: center;
}
.urgency-countdown-unit {
  background: rgba(0,0,0,0.25);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-body);
  letter-spacing: 0;
  min-width: 36px;
  text-align: center;
}
/* Hidden by default — JS shows it when sale is active */
.urgency-bar[data-sale="false"] { display: none; }


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background: var(--black);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 44px;
  z-index: 100;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-logo-img {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}
.navbar-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navbar-logo-horizontal {
  height: 60px;
  width: auto;
  max-width: 280px;
  display: block;
}
.navbar-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.navbar-logo-text span { color: var(--red); }
.nav-cta {
  background: var(--green);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.nav-cta:hover {
  background: var(--green-dim);
  transform: translateY(-1px);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--dark);
  padding: 28px 0 36px;
  text-align: center;
}
.hero-preheadline {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .highlight {
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent-glow-strong);
}
.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 auto 16px;
  line-height: 1.7;
}

/* Hero course image / placeholder */
.hero-image-wrap {
  max-width: 520px;
  margin: 0 auto 20px;
}
.hero-image-placeholder {
  background: var(--dark-gray);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 24px var(--accent-glow);
  position: relative;
  overflow: hidden;
}
.hero-image-placeholder .course-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.2;
}
.hero-image-placeholder .course-subtitle {
  position: relative;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-display);
}
/* When real image is used */
.hero-course-image {
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--gold, var(--accent));
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 0 0 4px var(--accent-glow);
}


/* ============================================
   CTA BUTTON
   ============================================ */
.cta-btn {
  display: inline-block;
  background: var(--green);
  color: #ffffff;
  padding: 20px 48px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /* Minimum touch target */
  min-height: 52px;
  box-shadow: 0 4px 14px var(--green-glow);
}
.cta-btn:hover {
  background: var(--green-dim);
  box-shadow: 0 6px 20px var(--green-glow);
  transform: translateY(-2px);
}
.cta-btn-full {
  display: block;
  width: 100%;
  text-align: center;
}
.cta-btn-hero {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.cta-subtext {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 1px;
}


/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--dark-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.trust-icon { color: #2e7d32; }


/* ============================================
   WHO THIS IS FOR / NOT FOR
   ============================================ */
.who-section { background: var(--black); }
.who-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.who-card {
  background: var(--dark-gray);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--border);
}
.who-card.for-you {
  border-color: #2e7d32;
  border-width: 2px;
}
.who-card.not-for-you {
  border-color: var(--red);
  border-width: 2px;
}
.who-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}
.who-card-icon {
  width: 28px; height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.who-card-icon.yes { background: #2e7d32; color: #ffffff; }
.who-card-icon.no { background: var(--red); color: #ffffff; }
.who-card ul { list-style: none; padding: 0; }
.who-card li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.who-card li:last-child { border-bottom: none; }
.who-card li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}
.who-card.for-you li::before { content: "✓"; color: #2e7d32; }
.who-card.not-for-you li::before { content: "✗"; color: var(--red); }


/* ============================================
   PROBLEM / AGITATION
   ============================================ */
.problem-section {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(204,34,68,0.04) 0%, transparent 60%),
    var(--dark);
}
.problem-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.problem-section .section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
}
.problem-list {
  max-width: 680px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.problem-list li {
  background: rgba(204, 34, 68, 0.04);
  border-left: 3px solid var(--red);
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  color: var(--text-muted);
  box-shadow: -4px 0 12px var(--red-glow);
}
.problem-list li strong { color: var(--white); }


/* ============================================
   WHAT YOU'LL DISCOVER (Fascination Bullets)
   ============================================ */
.discover-section { background: var(--black); }
.discover-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.discover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.discover-item {
  background: var(--dark-gray);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.discover-item:hover {
  border-color: var(--accent);
}
.discover-item-icon {
  width: 32px; height: 32px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--accent);
  font-family: var(--font-display);
}
.discover-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.discover-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.discover-item.full-width {
  grid-column: 1 / -1;
  text-align: center;
}
.discover-item.full-width .discover-item-icon {
  margin: 0 auto 12px;
}


/* ============================================
   VIDEO EMBED (optional section)
   ============================================ */
.video-section { background: var(--dark); }
.video-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.video-wrap {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.video-wrap .video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-wrap .video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}


/* ============================================
   INSTRUCTOR
   ============================================ */
.instructor-section { background: var(--dark); }
.instructor-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 1px;
}
.instructor-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
}
.instructor-cards.two-col {
  grid-template-columns: 1fr 1fr;
  max-width: 700px;
}
.instructor-card {
  background: var(--dark-gray);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
}
.instructor-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--dark);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  font-family: var(--font-display);
  border: 2px solid var(--accent);
  box-shadow: 0 4px 12px var(--accent-glow);
  color: var(--accent);
  overflow: hidden;
}
.instructor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.instructor-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
.instructor-card .instructor-title {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.instructor-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.instructor-card .credential-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}
.instructor-card .credential-list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.instructor-card .credential-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--black); }
.testimonials-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.testimonial-card {
  background: var(--dark-gray);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--border);
}
.testimonial-stars {
  color: var(--gold-light);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-note {
  text-align: center;
  color: var(--text-faint);
  font-size: 12px;
  font-style: italic;
  margin-top: 24px;
}


/* ============================================
   OFFER STACK
   ============================================ */
.offer-section { background: var(--black); }
.offer-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.offer-section .offer-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 16px;
}
.offer-stack {
  background: var(--dark);
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.offer-stack-hero-img {
  padding: 24px 32px 16px;
  text-align: center;
}
.offer-stack-hero-img img {
  max-width: 75%;
  height: auto;
  display: inline-block;
  border-radius: 8px;
  border: 2px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.offer-stack-hero-placeholder {
  background: var(--medium-gray);
  padding: 48px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.offer-stack-hero-placeholder .placeholder-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.offer-stack-hero-placeholder .placeholder-sub {
  font-size: 12px;
  color: var(--text-faint);
}
.offer-stack-header {
  background: var(--medium-gray);
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}
.offer-stack-header h3 {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 1px;
  color: var(--accent);
}
.offer-stack-body { padding: 28px 32px; }
.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.offer-item:last-child { border-bottom: none; }
.offer-item-icon {
  width: 24px; height: 24px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.offer-item-content { flex: 1; }
.offer-item-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.offer-item-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.offer-item-value {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  margin-top: 2px;
  font-family: var(--font-display);
}
.offer-item.bonus .offer-item-content h4::before {
  content: "BONUS: ";
  color: var(--gold);
  font-size: 10px;
  font-family: var(--font-display);
  letter-spacing: 1px;
}


/* ============================================
   PRICING BOX
   ============================================ */
.pricing-box {
  background: var(--dark);
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  max-width: 480px;
  margin: 40px auto 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  white-space: nowrap;
}
/* Hide badge when no sale */
.pricing-badge[data-sale="false"] { display: none; }
.pricing-total-value {
  color: var(--text-faint);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 8px;
}
.pricing-total-value span { text-decoration: line-through; }
.pricing-retail {
  font-size: 22px;
  color: var(--text-faint);
  text-decoration: line-through;
  font-weight: 700;
}
.pricing-actual {
  font-size: 56px;
  font-weight: 900;
  color: #2e7d32;
  margin: 8px 0;
  font-family: var(--font-body);
}
.pricing-savings {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: var(--font-display);
  letter-spacing: 1px;
}


/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown-wrap {
  background: rgba(255, 50, 50, 0.06);
  border: 1px solid rgba(255, 50, 50, 0.2);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}
/* Hidden when no sale */
.countdown-wrap[data-sale="false"] { display: none; }
.countdown-label {
  font-size: 11px;
  font-weight: 700;
  color: #ff6644;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.countdown-unit { text-align: center; }
.countdown-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
  min-width: 60px;
  display: block;
}
.countdown-label-small {
  font-size: 9px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-family: var(--font-display);
}


/* ============================================
   GUARANTEE — Gold Shield Card Pattern
   Centered card with seal badge, high contrast
   from surrounding sections for visual impact.
   ============================================ */
.guarantee-section {
  background: var(--dark);
}
.guarantee-card {
  background: var(--black);
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 48px 40px;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  box-shadow:
    0 8px 30px rgba(0,0,0,0.08),
    0 0 0 4px rgba(184,134,11,0.10);
}
.guarantee-seal {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}
.guarantee-seal svg {
  width: 100%;
  height: 100%;
}
.guarantee-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  color: var(--white);
}
.guarantee-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}
.guarantee-card p strong { color: var(--white); }


/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--black); }
.faq-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  position: relative;
  font-family: var(--font-body);
  min-height: 48px;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  font-family: var(--font-display);
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }


/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-section {
  background:
    radial-gradient(ellipse at 50% 100%, var(--green-glow) 0%, transparent 60%),
    var(--dark);
  text-align: center;
}
.final-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.final-cta-section p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-logo {
  text-align: center;
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 72px;
  width: auto;
  max-width: 300px;
  margin: 0 auto;
  display: block;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-logo-text span { color: var(--red); }
.footer-disclaimer {
  color: var(--text-faint);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-faint);
  font-size: 12px;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  text-align: center;
  color: var(--text-faint);
  font-size: 11px;
  margin-top: 16px;
}


/* ============================================
   SECTION DIVIDER
   ============================================ */
.section-divider {
  height: 1px;
  background: var(--border);
}


/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  display: none; /* Only shows on mobile via media query */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 200;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.sticky-cta .cta-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
}
.sticky-cta .sticky-price {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: var(--font-display);
  letter-spacing: 1px;
}


/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  .section-pad { padding: var(--section-pad-mobile) 0; }

  /* Grids stack */
  .who-grid,
  .discover-grid,
  .instructor-cards.two-col,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Trust bar: horizontal scroll */
  .trust-bar .container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    padding-bottom: 8px;
  }
  .trust-item { white-space: nowrap; flex-shrink: 0; }

  /* Logo adjustments */
  .navbar-logo-horizontal { height: 44px; max-width: 200px; }
  .footer-logo-img { height: 56px; }

  /* Navbar: not sticky on mobile (sticky bottom CTA handles scroll) */
  .navbar { position: relative; top: auto; }

  /* Hero adjustments */
  .hero { padding: 60px 0 40px; }
  .hero-preheadline { font-size: 10px; letter-spacing: 3px; }
  .hero-sub { font-size: 15px; }

  /* Pricing adjustments */
  .pricing-actual { font-size: 42px; }
  .pricing-box { padding: 32px 20px; }

  /* Countdown adjustments */
  .countdown-number {
    font-size: 22px;
    padding: 6px 10px;
    min-width: 48px;
  }

  /* Offer stack adjustments */
  .offer-stack-body { padding: 20px 16px; }
  .offer-item { flex-wrap: wrap; }
  .offer-item-value { width: 100%; text-align: right; margin-top: 4px; }

  /* CTA buttons full width */
  .cta-btn { width: 100%; padding: 16px 24px; font-size: 15px; }

  /* Guarantee adjustments */
  .guarantee-card { padding: 32px 24px; border-radius: 12px; }
  .guarantee-seal { width: 90px; height: 90px; }
  .guarantee-card h3 { font-size: 20px; }
  .guarantee-card p { font-size: 15px; }

  /* Show sticky CTA on mobile */
  .sticky-cta { display: block; }
  /* Add bottom padding to body so footer isn't hidden behind sticky CTA */
  body { padding-bottom: 80px; }

  /* FAQ touch targets */
  .faq-question { padding: 24px 48px 24px 0; min-height: 56px; }
}

@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 24px; }
  .pricing-actual { font-size: 36px; }
  .countdown-timer { gap: 8px; }
  .countdown-number { font-size: 18px; min-width: 40px; padding: 4px 8px; }
}
