/* ============================================
   QUARREL — Landing Page
   Confident, clean legal-tech. Dark hero, blue accent,
   Bricolage Grotesque headlines, OpenRunde body.
   ============================================ */

/* --- Fonts --- */
@font-face {
  font-family: 'OpenRunde';
  src: url('fonts/OpenRunde-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'OpenRunde';
  src: url('fonts/OpenRunde-Medium.woff2') format('woff2');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'OpenRunde';
  src: url('fonts/OpenRunde-Semibold.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: 'OpenRunde';
  src: url('fonts/OpenRunde-Bold.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}

/* --- Vars --- */
:root {
  --display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'OpenRunde', -apple-system, BlinkMacSystemFont, sans-serif;

  --ink: #0f172a;
  --ink-secondary: #475569;
  --ink-tertiary: #94a3b8;
  --ink-faint: #cbd5e1;

  --surface: #ffffff;
  --surface-raised: #f8fafc;
  --surface-inset: #f1f5f9;

  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-lighter: #60a5fa;
  --blue-bg: #eff6ff;
  --blue-dark: #1d4ed8;
  --blue-900: #1e3a5f;

  --green: #10b981;
  --green-bg: #ecfdf5;
  --red: #ef4444;
  --red-bg: #fef2f2;

  --dark: #0f172a;
  --dark-card: rgba(255,255,255,0.05);
  --dark-border: rgba(255,255,255,0.08);

  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
  --shadow: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,0.06), 0 2px 4px -2px rgba(15,23,42,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15,23,42,0.06), 0 4px 6px -4px rgba(15,23,42,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15,23,42,0.08), 0 8px 10px -6px rgba(15,23,42,0.04);

  --max-w: 1080px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--sans); color: var(--ink); background: var(--surface); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--blue); color: white; }

/* --- Scroll animation base --- */
.anim {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim.in-view { opacity: 1; transform: translateY(0); }


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-weight: 600;
  border-radius: 999px; border: none; cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue); color: white;
  box-shadow: 0 1px 2px rgba(37,99,235,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 4px 12px rgba(37,99,235,0.3), inset 0 1px 0 rgba(255,255,255,0.1); transform: translateY(-1px); }
.btn-outline {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--blue-light); color: var(--blue); }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); }
.btn-lg { font-size: 15px; padding: 14px 28px; }
.btn:not(.btn-lg) { font-size: 14px; padding: 10px 22px; }


/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700;
  font-size: 18px; letter-spacing: -0.02em;
  color: white;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--blue); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.logo-mark-sm { width: 24px; height: 24px; border-radius: 6px; }
.logo-q {
  font-family: var(--display); font-weight: 800;
  font-size: 22px; color: white; line-height: 1;
  letter-spacing: -0.02em;
  margin-top: -2px;
}
.logo-q-sm { font-size: 16px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-cta {
  font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,0.1); color: white;
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--blue); border-color: var(--blue); }
.nav-cta span { margin-left: 2px; }

/* Mobile toggle */
.nav-mobile-toggle {
  display: none; background: none; border: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-mobile-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: white; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile-toggle.active span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-mobile-toggle.active span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px; flex-direction: column; gap: 8px; z-index: 99;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.7); padding: 10px 0; }
.mobile-nav-cta {
  background: var(--blue); color: white !important; text-align: center;
  padding: 14px !important; border-radius: 999px; font-weight: 600 !important; margin-top: 8px;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--dark);
  padding: 160px 24px 100px;
  text-align: center;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}
.hero-inner {
  max-width: 780px; margin: 0 auto; position: relative; z-index: 1;
}

.hero-checks {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
.hero-check {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--blue-lighter);
}
.hero-check svg { flex-shrink: 0; }

.hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 20px;
}
.hero-title-accent {
  color: var(--blue-lighter);
}
.hero-subtitle {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 580px; margin-left: auto; margin-right: auto;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* Stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center; padding: 0 28px;
}
.hero-stat-value {
  font-family: var(--display); font-size: 32px; font-weight: 800;
  color: white; letter-spacing: -0.02em;
  display: inline;
}
.hero-stat-unit {
  font-family: var(--display); font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.hero-stat-label {
  display: block; font-size: 13px; color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Pills */
.hero-pills {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.hero-pill {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 14px; border-radius: 999px;
  transition: all 0.2s;
}
.hero-pill:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
}


/* ============================================
   SECTION SHARED
   ============================================ */
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--blue);
  text-align: center; margin-bottom: 12px;
}
.section-heading {
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.025em;
  text-align: center; margin-bottom: 14px;
  color: var(--ink);
}
.section-sub {
  font-size: 16px; line-height: 1.65; color: var(--ink-secondary);
  text-align: center; max-width: 520px;
  margin: 0 auto 48px;
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 24px;
  background: var(--surface);
}

.steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; max-width: 920px; margin: 0 auto;
}
.step {
  flex: 1; text-align: center; padding: 0 20px;
  position: relative;
}
.step-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--ink-secondary);
  position: relative;
}
.step-badge {
  position: absolute; bottom: -8px; right: -8px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 11px; font-weight: 800;
  color: white; background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 0 3px var(--surface);
}
.step-title {
  font-family: var(--display);
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px; line-height: 1.6;
  color: var(--ink-secondary);
  margin-bottom: 12px;
}
.step-time {
  font-size: 12px; font-weight: 600;
  color: var(--blue); background: var(--blue-bg);
  padding: 3px 10px; border-radius: 999px;
}
.step-connector {
  flex-shrink: 0; padding-top: 48px;
  color: var(--ink-faint);
}


/* ============================================
   COMMON CASES
   ============================================ */
.cases {
  padding: 100px 24px;
  background: var(--surface-raised);
}
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer; position: relative;
}
.case-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 1px var(--blue-light), var(--shadow-md);
}
.case-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  margin-top: 12px;
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}
.case-card:hover .case-cta {
  opacity: 1; transform: translateY(0);
}
.case-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-bg); border-radius: var(--radius);
  color: var(--blue); margin-bottom: 16px;
}
.case-title {
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.case-desc {
  font-size: 14px; line-height: 1.6;
  color: var(--ink-secondary);
  margin-bottom: 14px;
}
.case-avg {
  font-size: 12px; font-weight: 600;
  color: var(--blue);
}


/* ============================================
   COMPARISON
   ============================================ */
.comparison {
  padding: 100px 24px;
  background: var(--surface);
}
.comp-table {
  max-width: 820px; margin: 0 auto 32px;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border);
}
.comp-header {
  display: grid; grid-template-columns: 140px 1fr 1fr 1fr;
  background: var(--surface-raised);
  border-bottom: 1px solid var(--border);
}
.comp-header-cell {
  padding: 16px 20px;
  font-family: var(--display);
  font-size: 14px; font-weight: 700;
  color: var(--ink-secondary);
  letter-spacing: -0.01em;
}
.comp-highlight-header {
  background: var(--blue); color: white;
}
.comp-row {
  display: grid; grid-template-columns: 140px 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-cell {
  padding: 14px 20px; font-size: 14px; line-height: 1.5;
  display: flex; align-items: center;
}
.comp-label {
  font-weight: 600; color: var(--ink);
  background: var(--surface-raised);
}
.comp-bad { color: var(--ink-tertiary); }
.comp-neutral { color: var(--ink-secondary); }
.comp-good {
  color: var(--blue-dark); font-weight: 600;
  background: var(--blue-bg);
}

.comp-callout {
  max-width: 820px; margin: 0 auto;
  background: var(--dark); color: white;
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 16px;
}
.comp-callout-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue-lighter);
  background: rgba(37,99,235,0.15);
  padding: 4px 12px; border-radius: 999px;
  flex-shrink: 0;
}
.comp-callout-text {
  font-size: 16px; color: rgba(255,255,255,0.8);
}
.comp-callout-text strong {
  color: white; font-weight: 700;
}


/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
  padding: 100px 24px;
  background: var(--dark);
  color: white;
}
.sp-header { text-align: center; margin-bottom: 48px; }
.sp-stat-big {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, white 0%, var(--blue-lighter) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-stat-label {
  font-size: 16px; color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.sp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 48px;
}
.sp-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl); padding: 28px;
  display: flex; flex-direction: column;
}
.sp-card-top {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 16px;
}
.sp-amount {
  font-family: var(--display);
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
}
.sp-case-type {
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.sp-quote {
  font-size: 15px; line-height: 1.65;
  color: rgba(255,255,255,0.65);
  flex: 1; margin-bottom: 20px;
}
.sp-author {
  display: flex; align-items: center; gap: 10px;
}
.sp-avatar {
  width: 32px; height: 32px; border-radius: 999px;
  background: rgba(37,99,235,0.2); color: var(--blue-lighter);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.sp-name { font-size: 13px; font-weight: 600; }
.sp-location { font-size: 12px; color: rgba(255,255,255,0.35); }
.sp-timeline {
  margin-left: auto;
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600;
  color: var(--blue-lighter);
}

/* Trust bar */
.sp-trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.sp-trust-item { text-align: center; padding: 0 32px; }
.sp-trust-val {
  font-family: var(--display); font-size: 24px; font-weight: 800;
  letter-spacing: -0.02em; display: block;
}
.sp-trust-label {
  font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 2px;
}
.sp-trust-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}


/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 24px;
  background: var(--surface-raised);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; max-width: 1080px; margin: 0 auto 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl); padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.pricing-featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg);
}
.pricing-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 16px;
  border-radius: 999px; white-space: nowrap;
}
.pricing-badge-alt {
  background: var(--dark); color: white;
}
.pricing-badge-green {
  background: var(--green); color: white;
}
.pricing-period {
  font-size: 15px; color: var(--ink-tertiary); font-weight: 400;
}
.pricing-contingency {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--shadow);
}
.pricing-name {
  font-family: var(--display);
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}
.pricing-amt {
  font-family: var(--display);
  font-size: 44px; font-weight: 800;
  letter-spacing: -0.03em;
}
.pricing-was {
  font-size: 18px; color: var(--ink-faint);
  text-decoration: line-through;
}
.pricing-tagline {
  font-size: 14px; color: var(--ink-secondary);
  margin-bottom: 24px;
}
.pricing-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px; flex: 1;
}
.pricing-list li {
  font-size: 14px; color: var(--ink-secondary); line-height: 1.5;
  padding-left: 22px; position: relative;
}
.pricing-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 14px; height: 14px;
  background: var(--blue-bg);
  border-radius: 999px;
}
.pricing-list li::after {
  content: ''; position: absolute; left: 4px; top: 10px;
  width: 6px; height: 3px;
  border-left: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(-45deg);
}
.pricing-note {
  font-size: 12px; color: var(--ink-faint);
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 4px;
}
.pricing-perfect {
  font-size: 12px; font-weight: 500;
  color: var(--ink-tertiary);
  padding: 10px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

.pricing-footnote {
  text-align: center; font-size: 13px; color: var(--ink-tertiary);
  max-width: 600px; margin: 0 auto;
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 24px;
  background: var(--surface);
}
.faq .section-heading { margin-bottom: 40px; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 15px; font-weight: 600;
  font-family: var(--display); letter-spacing: -0.01em;
  cursor: pointer; list-style: none; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0; position: relative;
}
.faq-chevron::before, .faq-chevron::after {
  content: ''; position: absolute;
  background: var(--ink-tertiary); border-radius: 1px;
  transition: transform 0.3s;
}
.faq-chevron::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-chevron::after { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
details[open] .faq-chevron::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-item p {
  padding: 0 0 20px; font-size: 14px; line-height: 1.7; color: var(--ink-secondary);
}


/* ============================================
   BOTTOM CTA
   ============================================ */
.bottom-cta {
  padding: 100px 24px;
  text-align: center;
  background: var(--surface-raised);
  position: relative;
}
.bottom-cta-title {
  font-family: var(--display);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.bottom-cta-sub {
  font-size: 17px; color: var(--ink-secondary);
  margin-bottom: 32px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--surface);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  letter-spacing: -0.02em;
}
.footer-logo .logo-mark { background: var(--blue); }
.footer-sub { font-size: 12px; color: var(--ink-tertiary); }
.footer-right { text-align: right; }
.footer-links { display: flex; gap: 20px; margin-bottom: 6px; }
.footer-links a { font-size: 13px; color: var(--ink-tertiary); transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }
.footer-legal { font-size: 11px; color: var(--ink-faint); }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .hero { padding: 130px 24px 70px; }
  .hero-title { font-size: clamp(32px, 9vw, 48px); }
  .hero-subtitle { font-size: 15px; }
  .hide-mobile { display: none; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 8px; }
  .hero-stat { padding: 8px 16px; }
  .hero-stat-value { font-size: 24px; }
  .hero-stat-divider { display: none; }
  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    padding: 8px;
    gap: 0;
  }
  .hero-pills { gap: 6px; }

  .how-it-works { padding: 80px 24px; }
  .steps { flex-direction: column; align-items: center; gap: 8px; }
  .step { max-width: 100%; }
  .step-connector svg { display: none; }
  .step-connector {
    width: 2px; height: 32px; margin: 0 auto;
    background-image: linear-gradient(to bottom, var(--ink-faint) 4px, transparent 4px);
    background-size: 2px 8px;
    background-repeat: repeat-y;
  }

  .cases { padding: 80px 24px; }
  .cases-grid { grid-template-columns: 1fr; }

  .comparison { padding: 80px 24px; }
  .comp-header, .comp-row { grid-template-columns: 100px 1fr 1fr 1fr; }
  .comp-cell { padding: 10px 12px; font-size: 12px; }
  .comp-header-cell { padding: 12px; font-size: 12px; }
  .comp-callout { flex-direction: column; text-align: center; padding: 24px; }

  .social-proof { padding: 80px 24px; }
  .sp-grid { grid-template-columns: 1fr; }
  .sp-trust-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
  }
  .sp-trust-divider { display: none; }

  .pricing { padding: 80px 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 24px; }

  .faq { padding: 80px 24px; }
  .bottom-cta { padding: 80px 24px; }

  .footer-inner { flex-direction: column; gap: 16px; }
  .footer-right { text-align: left; }
}

@media (max-width: 480px) {
  .comp-header, .comp-row { grid-template-columns: 1fr; }
  .comp-header { display: none; }
  .comp-row {
    display: flex; flex-direction: column;
    padding: 16px; gap: 8px;
    border-bottom: 1px solid var(--border);
  }
  .comp-cell { padding: 0; }
  .comp-label {
    background: none;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--ink-tertiary);
    margin-bottom: -4px;
  }
  .comp-good { background: none; padding: 0; }
}
