/* ==========================================================================
   ScaleSnipes - Pay-Per-Show B2B Cold Email Agency
   Color Theme: Black, Red, and White (Matching ScaleSnipes Logo)
   ========================================================================== */

:root {
  /* Core Theme Colors */
  --bg-black: #000000;
  --bg-darkest: #050505;
  --bg-primary: #0A0A0A;
  --bg-card: #111111;
  --bg-card-elevated: #161616;
  --bg-card-hover: #1A1A1A;
  --bg-card-glass: rgba(17, 17, 17, 0.85);

  /* Red Accents (Matching Logo 'SNIPES' Wordmark) */
  --red-primary: #FF1E27;
  --red-hover: #E0121A;
  --red-dark: #A80B12;
  --red-glow: rgba(255, 30, 39, 0.35);
  --red-subtle: rgba(255, 30, 39, 0.08);
  --red-border: rgba(255, 30, 39, 0.45);

  /* Whites & Neutrals */
  --text-primary: #FFFFFF;
  --text-secondary: #A3A3A3;
  --text-muted: #737373;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.25);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.85);
  --shadow-red: 0 0 35px rgba(255, 30, 39, 0.3);

  /* Layout */
  --max-width: 1120px;
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: auto;
  overscroll-behavior-y: auto;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-black);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 30, 39, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 85% 45%, rgba(255, 30, 39, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
}

/* Ambient Glow Spheres */
.glow-sphere {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
}

.glow-sphere-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 30, 39, 0.18), transparent 70%);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.glow-sphere-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 30, 39, 0.08), transparent 70%);
  top: 1400px;
  right: -100px;
}

/* Typography Helpers */
.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 30%, #FF3840 85%, #FF1E27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 800;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #FF1E27 0%, #C40D14 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 22px rgba(255, 30, 39, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF3840 0%, #E0121A 100%);
  box-shadow: 0 6px 30px rgba(255, 30, 39, 0.65);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.25rem;
  box-shadow: 0 8px 36px rgba(255, 30, 39, 0.5);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  height: var(--header-height);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.offer-pill {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(255, 30, 39, 0.1);
  border: 1px solid rgba(255, 30, 39, 0.3);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FFFFFF;
}

@media (min-width: 680px) {
  .offer-pill {
    display: flex;
  }
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--red-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 30, 39, 0.7);
  animation: pulse-ring-red 2s infinite;
}

@keyframes pulse-ring-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 30, 39, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 30, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 30, 39, 0);
  }
}

/* ==========================================================================
   Section Global Styling
   ========================================================================== */
.section {
  padding: 96px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red-primary);
  background: rgba(255, 30, 39, 0.1);
  border: 1px solid rgba(255, 30, 39, 0.3);
  padding: 5px 16px;
  border-radius: 9999px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 1: HERO
   Structure: Headline → Subheadline → Video Placeholder → CTA Button
   ========================================================================== */
.hero-section {
  padding: 64px 0 88px 0;
  text-align: center;
}

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

.badge-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 30, 39, 0.08);
  border: 1px solid rgba(255, 30, 39, 0.3);
  padding: 6px 18px;
  border-radius: 9999px;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 2px 14px rgba(255, 30, 39, 0.2);
}

.badge-guarantee svg {
  color: var(--red-primary);
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: 20px;
  max-width: 950px;
}

.hero-subheadline {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 40px auto;
  line-height: 1.55;
}

/* Video Placeholder Container */
.video-placeholder-container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 36px auto;
  border-radius: var(--radius-xl);
  padding: 3px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 30, 39, 0.4) 50%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 0, 0, 0.95);
}

.video-placeholder-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at center, #171717 0%, #0A0A0A 100%);
  border-radius: calc(var(--radius-xl) - 3px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-placeholder-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.video-placeholder-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.placeholder-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 30, 39, 0.35);
  padding: 4px 10px;
  border-radius: 4px;
  color: #FFFFFF;
}

.video-length {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.75);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-secondary);
}

.video-placeholder-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  margin: auto 0;
}

.play-button-mockup {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF1E27 0%, #B30B12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(255, 30, 39, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease;
}

.video-placeholder-frame:hover .play-button-mockup {
  transform: scale(1.08);
}

.video-placeholder-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.video-placeholder-desc {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: #FF666E;
  letter-spacing: -0.01em;
}

.video-mockup-controls {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.progress-rail {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--red-primary);
}

.controls-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.hq-badge {
  color: #FFFFFF;
  font-weight: 700;
}

/* CTA Below Video */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-micro-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 2: PROBLEM
   2-3 sentences naming the specific gap
   ========================================================================== */
.problem-section {
  padding-top: 40px;
}

.problem-card {
  background: linear-gradient(180deg, #121212 0%, #0C0C0C 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.problem-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red-primary);
  margin-bottom: 20px;
}

.alert-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--red-primary);
}

.problem-statement {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.problem-body p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
}

.problem-comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.comparison-col {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(8, 8, 8, 0.7);
}

.comparison-col.bad {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-col.good {
  border-color: var(--red-border);
  background: rgba(255, 30, 39, 0.05);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.comp-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.bad .comp-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #A3A3A3;
}

.good .comp-icon {
  background: rgba(255, 30, 39, 0.2);
  color: #FF3840;
}

.comparison-header h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
}

.comparison-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-col li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.45;
  padding-left: 20px;
  position: relative;
}

.bad li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #737373;
  font-weight: 700;
}

.good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-primary);
  font-weight: 800;
}

/* ==========================================================================
   SECTION 3: OFFER / GUARANTEE
   Zero Public Prices - Pure Performance Breakdown
   ========================================================================== */
.offer-section {
  padding-top: 80px;
}

.pricing-model-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 48px 0;
}

@media (min-width: 880px) {
  .pricing-model-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 44px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.highlighted {
  border-color: var(--red-primary);
  background: linear-gradient(180deg, #1C1012 0%, #120A0B 100%);
  box-shadow: var(--shadow-red);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  right: 28px;
  background: linear-gradient(135deg, #FF1E27 0%, #B30B12 100%);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(255, 30, 39, 0.45);
}

.card-status {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card-status.accent {
  color: #FF4D55;
}

.model-badge-row {
  margin-bottom: 20px;
}

.model-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-medium);
  padding: 6px 14px;
  border-radius: 6px;
}

.model-badge.accent-badge {
  background: rgba(255, 30, 39, 0.15);
  border-color: var(--red-border);
  color: #FFFFFF;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.card-divider {
  height: 1px;
  background: var(--border-subtle);
  width: 100%;
  margin-bottom: 24px;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1.45;
}

.check-svg {
  width: 18px;
  height: 18px;
  color: var(--red-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.card-cta-wrap {
  margin-top: auto;
}

/* Strict Qualification Box */
.qualification-box {
  background: linear-gradient(180deg, #121212 0%, #0B0B0B 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 48px);
  margin-bottom: 36px;
}

.box-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red-primary);
  margin-bottom: 12px;
}

.box-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.box-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 36px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.criteria-item {
  background: rgba(22, 22, 22, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.criteria-item.highlight-item {
  border-color: var(--red-border);
  background: rgba(255, 30, 39, 0.08);
}

.criteria-number {
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--red-primary);
  margin-bottom: 12px;
}

.criteria-content h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.criteria-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Fit Filter Card */
.fit-filter-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 44px);
}

.fit-filter-header h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.fit-filter-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.fit-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.fit-col {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid var(--border-subtle);
}

.fit-col.req {
  border-left: 3px solid var(--red-primary);
}

.fit-col.not-req {
  border-left: 3px solid #737373;
}

.fit-col h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.fit-col.req h4 {
  color: #FFFFFF;
}

.fit-col.not-req h4 {
  color: #A3A3A3;
}

.fit-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-col li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ==========================================================================
   SECTION 4: HOW IT WORKS
   3-4 steps: list building, copy, sending, reply handling
   ========================================================================== */
.workflow-section {
  padding-top: 80px;
}

.timeline-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 36px);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-border);
}

.step-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--red-primary);
  background: rgba(255, 30, 39, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 18px;
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-primary);
  margin-bottom: 20px;
}

.timeline-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}

.timeline-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-deliverable {
  font-size: 0.85rem;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.step-deliverable .label {
  font-weight: 800;
  color: var(--red-primary);
  margin-right: 4px;
}

/* ==========================================================================
   SECTION 5: FAQ
   3-4 questions addressing real objections
   ========================================================================== */
.faq-section {
  padding-top: 80px;
}

.faq-accordion {
  max-width: 800px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--red-border);
  background: linear-gradient(180deg, #191012 0%, #110B0C 100%);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.2s ease, color 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 30, 39, 0.2);
  color: var(--red-primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.active .faq-content {
  max-height: 400px;
  padding: 0 28px 24px 28px;
}

.faq-content p {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 6: FINAL CTA
   Repeat core offer line once more + CTA button.
   Nothing else.
   ========================================================================== */
.final-cta-section {
  padding: 120px 0 140px 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 30, 39, 0.12) 0%, transparent 60%);
}

.final-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-offer-headline {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  max-width: 860px;
  margin-bottom: 40px;
}

.final-cta-btn-wrap {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 36px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

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

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
  
  .desktop-br {
    display: none;
  }

  .pricing-card {
    padding: 24px;
  }
}

