/* ========================================================================
   AETHON INTELLIGENCE — Master Stylesheet
   Intelligent. Electric. Trustworthy.
   ======================================================================== */

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

:root {
  /* Base */
  --black: #080808;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: rgba(0, 229, 200, 0.15);
  --border-subtle: rgba(255,255,255,0.06);

  /* Type */
  --white: #F5F5F0;
  --muted: #D0D0CB;
  --faint: #444444;

  /* Accents */
  --turquoise: #00E5C8;
  --turquoise-dim: rgba(0, 229, 200, 0.12);
  --turquoise-glow: rgba(0, 229, 200, 0.06);
  --solar-white: #FFFFFF;

  /* States */
  --danger: #FF4444;

  /* Spacing */
  --section-pad: 140px 80px;
  --section-pad-mobile: 80px 24px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--white);
  background: var(--black);
  line-height: 1.85;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

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

/* --- Utility --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 16px;
  display: block;
}

.section-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.section-headline .accent {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: var(--turquoise);
}

.section-subtext {
  color: var(--muted);
  max-width: 560px;
  line-height: 1.9;
  font-weight: 300;
  font-size: 17px;
}

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

/* Stagger children */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.5s; }
.stagger > .reveal:nth-child(7) { transition-delay: 0.6s; }
.stagger > .reveal:nth-child(8) { transition-delay: 0.7s; }

/* ========================================================================
   1. NAV
   ======================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 80px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(8,8,8,0.95);
  box-shadow: 0 1px 0 var(--border-subtle);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--turquoise);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--turquoise);
  transition: width 0.3s var(--ease-out-expo);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--turquoise);
  border: 1px solid var(--turquoise);
  padding: 10px 24px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-cta:hover {
  background: var(--turquoise);
  color: var(--black);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: var(--turquoise);
}


/* ========================================================================
   2. HERO
   ======================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 80px 140px;
  overflow: hidden;
  background: var(--black);
}

/* Radial turquoise glow — behind headline */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 10%;
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse 600px 400px at 50% 50%,
    rgba(0, 229, 200, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Ghost watermark text */
.hero::after {
  content: 'AETHON';
  position: absolute;
  bottom: -80px;
  right: -40px;
  font-family: 'Inter', sans-serif;
  font-size: 340px;
  font-weight: 800;
  color: rgba(0, 229, 200, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -10px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -1px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-headline .accent {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: var(--turquoise);
}

.hero-subtext {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-subtext strong {
  color: var(--white);
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--turquoise);
  color: #080808;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 44px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--solar-white);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 44px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--turquoise);
  color: var(--turquoise);
}

/* Video placeholder */
.hero-video {
  position: relative;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--turquoise-glow) 0%, transparent 70%);
}

.video-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.play-icon {
  width: 72px;
  height: 72px;
  border: 1.5px solid var(--turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--turquoise);
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.play-icon:hover {
  background: var(--turquoise);
  color: var(--black);
}

.video-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}


/* ========================================================================
   3. SOCIAL PROOF BAR
   ======================================================================== */
.social-proof {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface);
  padding: 28px 80px;
}

.social-proof .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.social-proof-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.proof-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-badge {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  padding: 8px 20px;
  letter-spacing: 0.02em;
  transition: border-color 0.3s ease;
}

.proof-badge:hover {
  border-color: var(--turquoise);
}

.proof-badge.hint {
  color: var(--turquoise);
  border-color: transparent;
  background: transparent;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}


/* ========================================================================
   4. PAIN POINTS
   ======================================================================== */
.pain-points {
  padding: 120px 80px;
  position: relative;
  background: #F5F5F0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.pain-points .section-label {
  color: #080808;
  font-size: 13px;
}

.pain-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #080808;
  margin-bottom: 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}

.pain-cell {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-right: 1px dashed rgba(0,0,0,0.12);
  border-bottom: 1px dashed rgba(0,0,0,0.12);
}

/* Remove right border on last column */
.pain-cell:nth-child(3n) {
  border-right: none;
}

/* Remove bottom border on last row */
.pain-cell:nth-child(n+4) {
  border-bottom: none;
}

.pain-icon {
  color: var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-text {
  color: #444444;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 180px;
  text-align: center;
}


/* ========================================================================
   5. PROOF / RESULTS
   ======================================================================== */
.proof {
  padding: 140px 80px;
  background: #080808;
}

.proof-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  text-align: center;
  margin-bottom: 24px;
}

.proof-headline .accent {
  color: var(--turquoise);
}

.proof-subtext {
  color: #888;
  font-size: 17px;
  line-height: 1.9;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* Tabs */
.proof-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
}

.proof-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: #888;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.proof-tab:hover {
  border-color: #00E5C8;
  color: #ffffff;
}

.proof-tab.active {
  background: #00E5C8;
  border-color: #00E5C8;
  color: #080808;
}

/* Panels */
.proof-panels {
  margin-top: 80px;
  position: relative;
}

.proof-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.proof-panel.active {
  display: block;
  opacity: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: start;
}

/* Left column */
.proof-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--turquoise);
}

.proof-title {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-top: 16px;
}

.proof-body {
  color: #d8d8d8;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 300;
  margin-top: 24px;
  max-width: 460px;
}

/* Stats */
.proof-stats {
  margin-top: 40px;
}

.proof-stat {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.proof-stat.last {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.proof-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--turquoise);
  line-height: 1;
  display: block;
}

.proof-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #bbbbbb;
  margin-top: 6px;
  display: block;
}

.proof-note {
  font-style: italic;
  color: #444;
  font-size: 13px;
  margin-top: 24px;
}

/* Right column — box */
.proof-box {
  border: 1px solid rgba(0,229,200,0.15);
  background: #111111;
  padding: 40px;
}

.proof-box-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--turquoise);
}

/* Testimonial placeholder style */
.proof-box-testimonial {
  border-left: 3px solid var(--turquoise);
  padding-left: 20px;
  margin-top: 20px;
}

.proof-box-testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: #e8e8e8;
  line-height: 1.9;
}

.proof-box-quote {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #e8e8e8;
  line-height: 1.9;
  margin-top: 20px;
}

.proof-box-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 28px 0;
}

.proof-box-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-box-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.proof-box-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888;
}

.proof-box-strip {
  background: rgba(0,229,200,0.06);
  border-top: 1px solid rgba(0,229,200,0.15);
  padding: 18px 24px;
  margin: 28px -40px -40px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--turquoise);
  line-height: 1.6;
}

/* Bottom CTA */
.proof-bottom {
  margin-top: 80px;
  text-align: center;
}

.proof-bottom-line {
  width: 60px;
  height: 1px;
  background: var(--turquoise);
  margin: 0 auto 32px;
}

.proof-bottom-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #888;
  max-width: 500px;
  margin: 0 auto;
}

.proof-bottom .btn-primary {
  margin-top: 24px;
}

.proof-bottom-small {
  color: #444;
  font-size: 13px;
  font-style: italic;
  margin-top: 12px;
}


/* ========================================================================
   6. SOLUTIONS
   ======================================================================== */
.solutions {
  padding: 140px 80px;
  background: #f5f2eb;
}

.sol-overline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--turquoise);
  text-align: center;
  display: block;
  margin-bottom: 16px;
}

.sol-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #080808;
  text-align: center;
  margin-bottom: 16px;
}

.sol-accent {
  color: var(--turquoise);
}

.sol-subtext {
  color: #444;
  font-size: 18px;
  line-height: 1.9;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* Tabs */
.sol-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.sol-tab {
  background: white;
  border: 1px solid #e0e0e0;
  color: #888;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sol-tab:hover {
  border-color: #080808;
  color: #080808;
}

.sol-tab.active {
  background: #080808;
  border-color: #080808;
  color: #ffffff;
}

/* Panels */
.sol-panels {
  margin-top: 64px;
  position: relative;
}

.sol-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sol-panel.active {
  display: block;
  opacity: 1;
}

.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left column */
.sol-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--turquoise);
  display: block;
  margin-bottom: 16px;
}

.sol-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #080808;
}

.sol-body {
  color: #080808;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 300;
  margin-top: 16px;
  max-width: 440px;
}

.sol-body + .sol-body {
  margin-top: 12px;
}

.sol-callout {
  margin-top: 32px;
  background: white;
  border: 1px solid #e0e0e0;
  border-left: 3px solid var(--turquoise);
  padding: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.7;
}

/* Accordion phases */
.sol-accordions {
  margin-top: 16px;
}

.sol-phase {
  background: white;
  border: 1px solid #e0e0e0;
  margin-bottom: 8px;
}

.sol-phase-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.sol-phase-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #080808;
}

.sol-phase-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-left: 8px;
}

.sol-phase-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sol-phase-icon::before,
.sol-phase-icon::after {
  content: '';
  position: absolute;
  background: var(--turquoise);
  transition: transform 0.3s ease;
}

.sol-phase-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sol-phase-icon::after {
  width: 2px;
  height: 16px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sol-phase.open .sol-phase-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.sol-phase-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sol-phase.open .sol-phase-body {
  max-height: 800px;
}

.sol-phase-body .sol-step:first-child {
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.sol-step {
  display: flex;
  gap: 12px;
  padding: 10px 24px;
  align-items: flex-start;
}

.sol-step-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--turquoise);
  flex-shrink: 0;
  padding-top: 1px;
}

.sol-step-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #080808;
}

.sol-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  margin-top: 4px;
  padding-left: 0;
  line-height: 1.6;
}

/* Bottom CTA */
.sol-bottom {
  margin-top: 80px;
  text-align: center;
}

.sol-bottom-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

.sol-cta {
  display: inline-block;
  margin-top: 24px;
  background: #080808;
  color: white;
  padding: 18px 44px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sol-cta:hover {
  background: var(--turquoise);
  color: #080808;
}

.sol-bottom-small {
  color: #888;
  font-size: 13px;
  font-style: italic;
  margin-top: 12px;
}


/* ========================================================================
   6.5. BOOKING CTA
   ======================================================================== */
.booking {
  padding: 120px 80px;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.booking-overline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--turquoise);
  display: block;
  margin-bottom: 16px;
}

.booking-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
}

.booking-accent {
  color: var(--turquoise);
}

.booking-body {
  color: #d8d8d8;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 300;
  margin-top: 20px;
  max-width: 420px;
}

.booking-checklist {
  margin-top: 32px;
}

.booking-check {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #d8d8d8;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.booking-checkmark {
  color: var(--turquoise);
  font-weight: 700;
  flex-shrink: 0;
}

.booking-note {
  color: #888;
  font-size: 13px;
  font-style: italic;
  margin-top: 24px;
}

.booking-embed {
  width: 100%;
  height: 700px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #111111;
}

.booking-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* ========================================================================
   7. FLYWHEEL / HOW IT WORKS
   ======================================================================== */
.flywheel {
  padding: var(--section-pad);
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.flywheel-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}

.flywheel-step {
  padding: 40px 32px;
  position: relative;
}

/* Connector arrow between steps */
.flywheel-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--turquoise);
  z-index: 2;
}

.flywheel-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  color: var(--turquoise);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}

.flywheel-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 12px;
}

.flywheel-desc {
  color: var(--muted);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
}


/* ========================================================================
   8. RESULTS / TESTIMONIALS
   ======================================================================== */
.results {
  padding: var(--section-pad);
  position: relative;
  background: var(--black);
}

.results::after {
  content: 'RESULTS';
  position: absolute;
  bottom: 5%;
  right: -2%;
  font-family: 'Inter', sans-serif;
  font-size: 280px;
  font-weight: 800;
  color: rgba(0, 229, 200, 0.02);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -8px;
}

.results-blocks {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.result-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 48px;
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  align-items: start;
}

.result-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--turquoise);
  padding: 8px 16px;
  border: 1px solid var(--border);
  display: inline-block;
  white-space: nowrap;
}

.result-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.result-context {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  font-size: 15px;
}

.result-quote-placeholder {
  padding: 20px 24px;
  border-left: 3px solid var(--turquoise);
  color: var(--muted);
  font-style: italic;
  font-size: 15px;
}

/* Objection crusher */
.objection-strip {
  margin-top: 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.objection-strip .question {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: var(--turquoise);
  font-size: 17px;
  margin-bottom: 8px;
}

.objection-strip .answer {
  color: var(--muted);
  font-weight: 300;
  font-size: 15px;
}


/* ========================================================================
   8.5. ORGANIC MARKETING
   ======================================================================== */
.organic {
  padding: var(--section-pad);
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.organic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.organic-card {
  background: var(--surface-2);
  border: 1px solid var(--border-subtle);
  padding: 40px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

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

.organic-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 16px;
}

.organic-desc {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 28px;
}

.organic-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.organic-stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--turquoise);
  line-height: 1;
}

.organic-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}


/* ========================================================================
   9. PRICING
   ======================================================================== */
.pri {
  padding: 140px 80px;
  background: #f5f2eb;
}

.pri-overline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--turquoise);
  text-align: center;
  display: block;
  margin-bottom: 16px;
}

.pri-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #080808;
  text-align: center;
  margin-bottom: 16px;
}

.pri-accent {
  color: var(--turquoise);
}

.pri-subtext {
  color: #333;
  font-size: 17px;
  line-height: 1.9;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* Tabs */
.pri-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.pri-tab {
  background: white;
  border: 1px solid #e0e0e0;
  color: #888;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pri-tab:hover {
  border-color: #080808;
  color: #080808;
}

.pri-tab.active {
  background: #080808;
  border-color: #080808;
  color: #ffffff;
}

/* Panels */
.pri-panels {
  margin-top: 64px;
  position: relative;
}

.pri-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pri-panel.active {
  display: block;
  opacity: 1;
}

/* Cards grid */
.pri-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pri-cards-single {
  max-width: 600px;
  margin: 0 auto;
}

/* Card */
.pri-card {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
  position: relative;
}

.pri-card:hover {
  border-color: #00E5C8;
}

.pri-card.featured {
  border: 1px solid #080808;
}

.pri-popular {
  position: absolute;
  top: -1px;
  left: 32px;
  transform: translateY(-50%);
  background: #080808;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
}

.pri-tier {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  display: block;
}

.pri-price {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #080808;
  line-height: 1;
  margin-top: 12px;
}

.pri-price span {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #888;
  vertical-align: middle;
}

.pri-price-lg {
  font-size: 64px;
}

.pri-onetime {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #888;
  margin-top: 4px;
}

.pri-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.7;
  margin-top: 12px;
}

.pri-desc-lg {
  font-size: 16px;
  line-height: 1.9;
}

.pri-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 24px 0;
}

.pri-features-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 16px;
}

.pri-features {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pri-feature {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.6;
}

.pri-diff {
  margin-top: 24px;
  background: #f5f2eb;
  border-left: 3px solid #00E5C8;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
}

.pri-diff-lg {
  font-size: 14px;
  line-height: 1.8;
  padding: 20px;
}

.pri-cta {
  display: block;
  text-align: center;
  margin-top: 28px;
  background: #080808;
  color: white;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.pri-cta:hover {
  background: #00E5C8;
  color: #080808;
}

.pri-commit {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  text-align: center;
  margin-top: 12px;
}

.pri-addl-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: #888;
  text-align: center;
  margin-top: 20px;
}

.pri-maint-note {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 24px 32px;
  max-width: 700px;
  margin: 32px auto 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  text-align: center;
}

/* Bundle */
.pri-bundle {
  background: white;
  border: 1px solid #e0e0e0;
  border-left: 3px solid #00E5C8;
  padding: 24px 32px;
  max-width: 680px;
  margin: 80px auto 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  text-align: center;
}

/* Risk reversal */
.pri-risk {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pri-risk-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pri-risk-check {
  color: var(--turquoise);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pri-risk-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display: block;
}

.pri-risk-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  display: block;
  margin-top: 2px;
}


/* ========================================================================
   10. FAQ
   ======================================================================== */
.faq {
  padding: var(--section-pad);
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
}

.faq-list {
  margin-top: 56px;
  max-width: 820px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}

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

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  background: var(--turquoise);
  transition: transform 0.3s var(--ease-out-expo);
}

.faq-chevron::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-chevron::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}

.faq-answer-inner {
  padding: 0 0 28px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  font-size: 15px;
  max-width: 680px;
}


/* ========================================================================
   11. FINAL CTA
   ======================================================================== */
.final-cta {
  padding: 140px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid var(--border-subtle);
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse 600px 400px at 50% 50%,
    rgba(0, 229, 200, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.final-headline .accent {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  color: var(--turquoise);
}

.final-subtext {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.9;
  font-weight: 300;
  font-size: 17px;
}

.final-cta .btn-primary {
  font-size: 14px;
  padding: 20px 48px;
}

.final-disclaimer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
}


/* ========================================================================
   12. FOOTER
   ======================================================================== */
.footer {
  padding: 56px 80px 40px;
  border-top: 1px solid var(--border-subtle);
  background: var(--surface);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--turquoise);
}

.footer-tagline {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  transition: color 0.3s ease;
}

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

.footer-contact {
  text-align: right;
}

.footer-email {
  color: var(--turquoise);
  font-size: 13px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.footer-email:hover {
  opacity: 0.7;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
}


/* ========================================================================
   RESPONSIVE
   ======================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-video {
    max-width: 560px;
  }

  .proof {
    padding: 100px 40px;
  }

  .proof-title {
    font-size: 32px;
  }

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

  .organic-grid .organic-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .pri {
    padding: 100px 40px;
  }

  .flywheel-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .flywheel-step:not(:last-child)::after {
    display: none;
  }

  .risk-reversal {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================
   NAV DROPDOWN — Services menu
   ======================================================================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  line-height: 1;
}

.nav-dropdown-trigger:hover {
  color: var(--white);
}

.nav-dropdown-arrow {
  font-size: 9px;
  transition: transform 0.25s ease;
  display: inline-block;
  opacity: 0.7;
}

.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(10,10,10,0.98);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  min-width: 180px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2000;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 11px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.nav-dropdown-item.current {
  color: var(--turquoise);
}

/* Mobile nav section label */
.nav-mobile-section {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 600;
  margin-top: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .hero {
    padding: var(--section-pad-mobile);
    padding-top: 120px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero::after {
    font-size: 120px;
    bottom: -20px;
    right: -10px;
  }

  .pain-points,
  .services,
  .flywheel,
  .results,
  .organic,
  .faq {
    padding: var(--section-pad-mobile);
  }

  .solutions {
    padding: 80px 24px;
  }

  .sol-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sol-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .sol-tabs::-webkit-scrollbar {
    display: none;
  }

  .sol-tab {
    padding: 12px 24px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .booking {
    padding: 80px 24px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .booking-embed {
    height: 600px;
  }

  .social-proof {
    padding: 20px 24px;
  }

  .social-proof .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .pain-cell:nth-child(3n) {
    border-right: 1px dashed var(--border-subtle);
  }

  .pain-cell:nth-child(2n) {
    border-right: none;
  }

  .pain-cell:nth-child(n+4) {
    border-bottom: 1px dashed var(--border-subtle);
  }

  .pain-cell:nth-child(n+5) {
    border-bottom: none;
  }

  .proof {
    padding: 80px 24px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .proof-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .proof-stat-num {
    font-size: 44px;
  }

  .proof-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .proof-tabs::-webkit-scrollbar {
    display: none;
  }

  .proof-tab {
    padding: 12px 24px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .proof-box {
    padding: 28px;
  }

  .proof-box-strip {
    margin: 28px -28px -28px;
  }

  .proof-box-quote {
    font-size: 16px;
  }

  .proof-box-testimonial-text {
    font-size: 16px;
  }

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

  .organic-grid .organic-card:last-child {
    max-width: 100%;
  }

  .flywheel-steps {
    grid-template-columns: 1fr;
  }

  .result-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pri {
    padding: 80px 24px;
  }

  .pri-cards {
    grid-template-columns: 1fr;
  }

  .pri-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .pri-tabs::-webkit-scrollbar {
    display: none;
  }

  .pri-tab {
    padding: 12px 24px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .final-cta {
    padding: var(--section-pad-mobile);
  }

  .footer {
    padding: 40px 24px 32px;
  }

  .footer .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* Small mobile */
@media (max-width: 375px) {
  .hero-headline {
    font-size: 32px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .proof-badges {
    flex-direction: column;
  }
}
