/* ==========================================================================
   Vroomvroom Solutions — Graphic Chart & Brand Stylesheet
   Minimalist, Editorial & Architecture-Inspired Design
   ========================================================================== */

:root {
  /* Graphic Chart Palette (Monochrome & Warm Minimalist) */
  --bg-body: #F7F7F5;
  --bg-surface: #FFFFFF;
  --bg-surface-subtle: #F0F1EE;
  --bg-surface-elevated: #FFFFFF;
  --bg-dark: #16191D;
  --bg-dark-surface: #1E2227;

  /* Typography Colors */
  --text-primary: #181B1E;
  --text-secondary: #575D65;
  --text-muted: #848B94;
  --text-inverse: #F7F7F5;

  /* Accent & Architectural Lines */
  --border-light: #E4E6E8;
  --border-strong: #181B1E;
  --border-focus: #181B1E;
  --accent-ink: #181B1E;
  --accent-warm: #8C6A48;
  --accent-soft: rgba(24, 27, 30, 0.05);

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Spacing */
  --max-width: 1140px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Subtle Editorial Shadows */
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.04);
  --shadow-elevated: 0 12px 36px -4px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.06);

  --transition-smooth: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Subtle Linen Texture Background */
.texture-bg {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-ink);
  color: #FFFFFF;
  border: 1px solid var(--accent-ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  background: #2D3339;
  border-color: #2D3339;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

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

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  background: var(--bg-surface-subtle);
  border-color: #CBD0D6;
}

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-outline {
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-ink);
}

/* Cards */
.editorial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.editorial-card:hover {
  border-color: #D3D6DA;
  box-shadow: var(--shadow-elevated);
}

/* ==========================================================================
   Header & Announcement Bar
   ========================================================================== */
.announcement-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.announcement-bar strong {
  color: var(--text-primary);
  font-weight: 600;
}

.main-header {
  position: relative;
  z-index: 40;
  background: rgba(247, 247, 245, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.75rem;
  gap: 1.5rem;
}

/* Brand Logo (Left) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--accent-ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-icon svg {
  width: 100%;
  height: 100%;
}

/* Nav Links Centered Capsule (Center) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(24, 27, 30, 0.04);
  border: 1px solid rgba(24, 27, 30, 0.07);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-full);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Header Actions / CTA Button (Right) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-cta-btn {
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-cta-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}


/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 2rem 0 1.75rem 0;
  text-align: center;
}

/* Hero Audience Eyebrow Badge */
.hero-badge-wrap {
  margin-bottom: 0.95rem;
  display: flex;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.95rem;
  background: rgba(24, 27, 30, 0.04);
  border: 1px solid rgba(24, 27, 30, 0.08);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  display: inline-block;
  margin-right: 0.5rem;
}

.hero-title {
  max-width: 920px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

/* Primary Hook: Large, balanced, commanding */
.hero-main-promise {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.95vw, 2.55rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--accent-ink);
  margin-bottom: 0.95rem;
  text-wrap: balance;
}

/* 30–50 Extra: Bold & prominent */
.hero-num {
  font-weight: 850;
  color: var(--accent-ink);
  letter-spacing: -0.03em;
}

/* QUALIFIED BUSINESS OWNER APPOINTMENTS: Bold + Underline in warm architectural accent */
.hero-underline {
  font-weight: 850;
  color: var(--accent-ink);
  text-decoration: underline;
  text-decoration-color: var(--accent-warm);
  text-underline-offset: 6px;
  text-decoration-thickness: 3.5px;
  text-decoration-skip-ink: none;
}

/* Secondary Supporting Line: Noticeably smaller, color contrast, perfectly centered */
.hero-supporting-line {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.975rem, 1.25vw, 1.125rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  text-wrap: balance;
}

/* AUTOMATED CLIENT ACQUISITION SYSTEM: Bold & primary ink contrast */
.hero-system {
  font-weight: 700;
  color: var(--accent-ink);
}

.desktop-br {
  display: inline;
}

/* ==========================================================================
   VSL Video Frame (Editorial Minimalist Style)
   ========================================================================== */
.vsl-container {
  max-width: 880px;
  margin: 0 auto 2.5rem auto;
}

.vsl-card {
  background: #000000;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.28);
  color: #FFFFFF;
}

/* Stage & Video Frame */
.vsl-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}

.vsl-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000000;
}

/* SalesKick "Click For Sound" Autoplay Preview Overlay */
.vsl-unmute-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 25;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vsl-unmute-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.vsl-unmute-card,
.vsl-unmute-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 440px;
  padding: 2.5rem 2rem 2.25rem;
  background: linear-gradient(145deg, rgba(140, 106, 72, 0.88) 0%, rgba(115, 84, 53, 0.94) 100%);
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(140, 106, 72, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(0);
  cursor: pointer;
  user-select: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
  animation: vslCardPulse 2.8s infinite ease-in-out;
}

.vsl-unmute-card:hover,
.vsl-unmute-btn:hover {
  transform: scale(1.03);
  background: linear-gradient(145deg, rgba(150, 114, 78, 0.94) 0%, rgba(125, 92, 58, 0.98) 100%);
  border-color: #FFFFFF;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65), 0 0 50px rgba(140, 106, 72, 0.5);
}

@keyframes vslCardPulse {
  0%, 100% {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.65), 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.vsl-unmute-icon {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
}

.vsl-unmute-card:hover .vsl-unmute-icon,
.vsl-unmute-btn:hover .vsl-unmute-icon {
  transform: scale(1.08);
}

.vsl-unmute-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vsl-unmute-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vsl-unmute-action {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Big Center Play / Pause Indicator */
.vsl-center-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 15;
}

.vsl-stage.paused:not(.muted-preview) .vsl-center-play {
  opacity: 1;
  pointer-events: auto;
}

.play-circle-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #111418;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-circle-btn svg {
  margin-left: 3px;
}

.play-circle-btn:hover {
  transform: scale(1.1);
}

/* Controls Bar */
.vsl-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(14, 17, 20, 0.95) 0%, rgba(14, 17, 20, 0.65) 65%, transparent 100%);
  padding: 1.25rem 1.25rem 0.65rem 1.25rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vsl-stage.playing:not(:hover):not(.controls-focused) .vsl-controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
}

/* Smart Timeline with non-linear fill */
.vsl-timeline-wrapper {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  cursor: pointer;
  transition: height 0.15s ease;
}

.vsl-timeline-wrapper:hover {
  height: 8px;
}

.vsl-timeline-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #FFFFFF;
  border-radius: 3px;
  width: 0%;
  pointer-events: none;
  transition: width 0.08s linear;
}

.vsl-timeline-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease;
  pointer-events: none;
}

.vsl-timeline-wrapper:hover .vsl-timeline-thumb {
  transform: translate(-50%, -50%) scale(1);
}

.vsl-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vsl-ctrl-left, .vsl-ctrl-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vsl-btn {
  color: #D1D5DB;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.vsl-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.14);
}

/* Volume Slider in controls */
.vsl-volume-control {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.vsl-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 58px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.vsl-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
}

.vsl-time-display {
  font-size: 0.775rem;
  font-weight: 500;
  color: #CBD5E1;
  font-variant-numeric: tabular-nums;
  user-select: none;
}

.vsl-speed-btn {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  color: #E2E8F0;
  transition: var(--transition-smooth);
}

.vsl-speed-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #FFFFFF;
}

/* Primary Hero CTA Under Video */
.hero-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-guarantee-subtext {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-guarantee-subtext svg {
  color: var(--text-primary);
}

/* ==========================================================================
   Sections Common
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--accent-ink);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Comparison: The Outdated Way vs The Vroomvroom Way
   ========================================================================== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1040px;
  margin: 0 auto;
}

.comp-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.comp-card:hover {
  border-color: #D1D5DB;
}

.comp-card-new {
  border-color: var(--accent-ink);
  background: var(--bg-surface);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.comp-badge {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.comp-badge-old {
  color: #64748B;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
}

.comp-badge-new {
  color: #FFFFFF;
  background: var(--accent-ink);
  border: 1px solid var(--accent-ink);
}

.comp-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-ink);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.comp-item strong {
  color: var(--text-primary);
}

.comp-icon-fail {
  color: #94A3B8;
  flex-shrink: 0;
  margin-top: 3px;
}

.comp-icon-check {
  color: var(--accent-ink);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   The 3-Step Vroomvroom Acquisition Engine
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.step-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.step-card:hover {
  border-color: #D1D5DB;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #E5E7EB;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.step-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xs);
  background: #F3F4F6;
  border: 1px solid var(--border-light);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--accent-ink);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.step-perks {
  list-style: none;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.step-perk-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-perk-item svg {
  color: var(--accent-ink);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ==========================================================================
   The Performance Guarantee Box
   ========================================================================== */
.guarantee-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 3.5rem 3rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F3F4F6;
  border: 1px solid var(--border-light);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--accent-ink);
  margin-bottom: 1rem;
}

.guarantee-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Editorial Card (Final CTA)
   ========================================================================== */
.editorial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: #CBD0D6;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-ink);
  cursor: pointer;
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-ink);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer-inner p {
  padding: 0 1.5rem 1.35rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: 4rem 0 2.5rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.75rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  color: #9CA3AF;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
}

/* ==========================================================================
   Interactive Booking Modal (Clean Editorial Theme & No Double Scrollbars)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24, 27, 30, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 580px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(15px) scale(0.98);
  transition: max-width 0.3s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-container.calendly-expanded {
  max-width: 780px;
}

.modal-backdrop.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.1rem 1.5rem;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 1rem;
}

.modal-header-text {
  min-width: 0;
}

.modal-header-text h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-header-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.modal-close-btn {
  color: var(--text-muted);
  padding: 0.4rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.modal-close-btn:hover {
  color: var(--accent-ink);
  background: #F3F4F6;
}

/* Modal Body - Overflow Hidden to ELIMINATE double scrollbars */
.modal-body {
  padding: 0;
  margin: 0;
  overflow: hidden; /* Crucial: removes outer scrollbar completely */
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #FFFFFF;
}

.calendly-embed-wrapper {
  width: 100%;
  height: 680px;
  max-height: calc(85vh - 70px);
  overflow: hidden; /* Crucial: no outer scrollbar */
  position: relative;
  background: #FFFFFF;
}

.calendly-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  /* Only Calendly internal iframe scrolls */
  -webkit-overflow-scrolling: touch;
}

/* Sticky Mobile Bottom Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 0.75rem 1.25rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  z-index: 35;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-links {
    gap: 0.15rem;
  }
  .nav-link {
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Navigation & Header on Mobile */
  .main-header {
    background: rgba(247, 247, 245, 0.97);
  }
  .header-inner {
    height: 3.85rem;
    justify-content: center;
  }
  .brand-logo {
    font-size: 1.1rem;
    gap: 0.55rem;
  }
  .brand-logo-icon {
    width: 28px;
    height: 28px;
  }
  .nav-links,
  .header-actions {
    display: none;
  }

  /* Hero Section on Mobile */
  .hero-section {
    padding: 1.25rem 0 1.15rem 0;
  }
  .hero-badge-wrap {
    margin-bottom: 0.75rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
  }
  .hero-title {
    margin-bottom: 1.35rem;
    max-width: 96%;
  }
  .hero-main-promise {
    font-size: clamp(1.3rem, 5.2vw, 1.65rem);
    line-height: 1.28;
    letter-spacing: -0.015em;
    margin-bottom: 0.75rem;
  }
  .hero-underline {
    text-underline-offset: 4px;
    text-decoration-thickness: 2.5px;
  }
  .hero-supporting-line {
    font-size: 0.9rem;
    line-height: 1.48;
    max-width: 92%;
  }
  .desktop-br {
    display: none;
  }

  /* VSL Player Container on Mobile */
  .vsl-container {
    margin-bottom: 1.75rem;
  }
  .vsl-unmute-card,
  .vsl-unmute-btn {
    max-width: 320px;
    padding: 1.6rem 1.25rem 1.5rem;
    border-radius: 14px;
  }
  .vsl-unmute-icon {
    margin-bottom: 0.85rem;
  }
  .vsl-unmute-icon svg {
    width: 42px;
    height: 42px;
  }
  .vsl-unmute-title {
    font-size: 1.15rem;
  }
  .vsl-unmute-action {
    font-size: 1.05rem;
  }
  .play-circle-btn {
    width: 58px;
    height: 58px;
  }
  .play-circle-btn svg {
    width: 22px;
    height: 22px;
  }
  .vsl-controls {
    padding: 0.5rem 0.75rem 0.4rem 0.75rem;
  }

  /* CTAs on Mobile */
  .btn-large {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.95rem 1.15rem;
    white-space: normal;
    line-height: 1.35;
  }
  .hero-guarantee-subtext {
    font-size: clamp(0.68rem, 2.75vw, 0.775rem);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: 0.35rem;
    width: 100%;
  }

  /* Content Sections on Mobile */
  .section {
    padding: 3.5rem 0;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .comp-card {
    padding: 1.5rem 1.25rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .step-card {
    padding: 1.5rem 1.25rem;
  }
  .guarantee-box {
    padding: 2.25rem 1.25rem;
  }
  .guarantee-title {
    font-size: 1.45rem;
  }

  /* FAQs on Mobile */
  .faq-question {
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
  }
  .faq-answer-inner p {
    padding: 0 1.25rem 1.1rem;
    font-size: 0.875rem;
  }

  /* Footer on Mobile */
  .footer {
    padding: 3rem 0 2rem 0;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* Sticky Mobile Bottom Bar Display */
  .mobile-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 4.75rem;
  }

  /* ========================================================================
     MOBILE CALENDLY MODAL: Pure Fullscreen / Bottom Sheet (NO DOUBLE SCROLLBAR)
     ======================================================================== */
  .modal-backdrop {
    padding: 0;
    align-items: flex-end; /* Clean iOS/Android bottom sheet */
  }

  .modal-container.calendly-expanded {
    max-width: 100%;
    width: 100%;
    height: 94dvh;
    max-height: 94dvh;
    border-radius: 18px 18px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .modal-backdrop.active .modal-container.calendly-expanded {
    transform: translateY(0);
  }

  .modal-header {
    padding: 0.85rem 1.15rem;
  }

  .modal-header-text h3 {
    font-size: 1rem;
  }

  .modal-header-text p {
    display: none; /* Hide subtitle on mobile for maximum calendar height */
  }

  .modal-body {
    height: calc(94dvh - 54px);
    max-height: none;
  }

  .calendly-embed-wrapper {
    height: 100% !important;
    max-height: none !important;
  }
}

