/* DisputeQ — warm, confident, consumer-first */

:root {
  --bg: #FAF9F7;
  --bg-alt: #F5F0EB;
  --fg: #1A1A2E;
  --fg-muted: #6B6B7B;
  --accent: #D4531C;
  --accent-hover: #B8431A;
  --green: #2D6A4F;
  --border: #E5E0DA;
  --radius: 12px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  isolation: isolate;
  background: rgba(250, 249, 247, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
}
.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.header-nav a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--fg); }
.header-nav a[href="/tracker"] { font-size: 14px; font-weight: 500; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.header-nav a[href="/tracker"]:hover { color: var(--fg); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV DRAWER */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 16px;
  background: rgba(250, 249, 247, 0.98);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--fg); }
.mobile-nav-cta {
  background: var(--accent) !important;
  color: white !important;
  border-radius: 8px !important;
  text-align: center;
  font-weight: 600;
  padding: 12px 16px !important;
  border: none !important;
  margin-top: 4px;
}

/* HERO */
.hero {
  padding: 80px 24px 64px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; }
.proof-number {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.proof-label { font-size: 11px; color: var(--fg-muted); margin-top: 4px; max-width: 80px; line-height: 1.3; }
.proof-divider { width: 1px; height: 36px; background: var(--border); }

/* APP WINDOW */
.hero-visual { position: relative; }
.app-window {
  background: #1A1A2E;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(26, 26, 46, 0.15);
}
.app-titlebar {
  background: #262638;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-dots { display: flex; gap: 6px; }
.app-dots span { width: 10px; height: 10px; border-radius: 50%; background: #444; }
.app-title { font-size: 11px; color: #888; font-family: var(--font-body); }
.app-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.dispute-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
}
.dispute-step.active { border-color: rgba(212, 83, 28, 0.4); background: rgba(212, 83, 28, 0.08); }
.step-header { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #ccc; }
.step-num { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: white; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-status { margin-left: auto; font-size: 10px; color: var(--accent); background: rgba(212,83,28,0.2); padding: 2px 8px; border-radius: 20px; }
.step-input { margin-top: 8px; }
.step-prompt { font-size: 11px; color: #888; font-style: italic; background: rgba(255,255,255,0.04); padding: 8px 10px; border-radius: 6px; line-height: 1.5; }
.strategy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
}
.strategy-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: #888; margin-bottom: 6px; }
.strategy-text { font-size: 11px; color: #aaa; line-height: 1.55; }
.strategy-actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.action-chip { font-size: 9px; padding: 3px 8px; background: rgba(212,83,28,0.2); color: var(--accent); border-radius: 20px; }
.letter-preview {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
}
.letter-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: #888; margin-bottom: 6px; }
.letter-text { font-size: 11px; color: #aaa; }
.letter-text p { margin-bottom: 4px; }
.letter-muted { color: #666; }

/* PROOF SECTION */
.proof-section {
  padding: 40px 24px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: 1120px; margin: 0 auto; }
.proof-row { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.proof-stat { display: flex; align-items: flex-start; gap: 14px; }
.stat-icon { width: 40px; height: 40px; border-radius: 10px; background: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--border); }
.stat-value { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--fg); }
.stat-desc { font-size: 13px; color: var(--fg-muted); margin-top: 2px; max-width: 200px; }

/* HOW IT WORKS */
.how-it-works { padding: 80px 24px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-headline { font-family: var(--font-head); font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.15; color: var(--fg); margin-bottom: 56px; }
.steps-grid { display: grid; grid-template-columns: 1fr 48px 1fr 48px 1fr; gap: 0; align-items: start; }
.step-card { padding: 28px; background: var(--bg-alt); border-radius: var(--radius); border: 1px solid var(--border); }
.step-num-large { font-family: var(--font-head); font-size: 48px; font-weight: 700; color: var(--accent); opacity: 0.25; line-height: 1; margin-bottom: 16px; }
.step-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--fg); }
.step-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }
.step-connector { height: 2px; background: var(--border); align-self: center; margin-top: 40px; }

/* USE CASES */
.use-cases { padding: 80px 24px; background: var(--fg); color: white; }
.use-cases .section-label { color: var(--accent); }
.use-cases .section-headline { color: white; }
.use-cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.use-case-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
}
.use-case-icon { margin-bottom: 16px; }
.use-case-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 600; margin-bottom: 12px; color: white; }
.use-case-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; }
.use-case-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 12px; padding: 4px 12px; background: rgba(212,83,28,0.2); color: var(--accent); border-radius: 20px; }

/* OUTCOMES */
.outcomes { padding: 80px 24px; }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.outcomes-body { font-size: 17px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 32px; }
.outcome-list { display: flex; flex-direction: column; gap: 24px; }
.outcome-item { display: flex; gap: 16px; align-items: flex-start; }
.outcome-check { width: 28px; height: 28px; border-radius: 50%; background: rgba(45,106,79,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.outcome-title { font-weight: 600; font-size: 15px; color: var(--fg); }
.outcome-desc { font-size: 14px; color: var(--fg-muted); margin-top: 2px; line-height: 1.55; }

/* RESOLUTION PANEL */
.resolution-panel {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 24px;
}
.resolution-cases { display: flex; flex-direction: column; gap: 16px; }
.case-bar { display: flex; align-items: center; gap: 12px; }
.case-label { font-size: 13px; color: var(--fg-muted); min-width: 110px; }
.bar-track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--accent); border-radius: 4px; }
.case-pct { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--accent); min-width: 36px; text-align: right; }
.resolution-note { font-size: 11px; color: var(--fg-muted); margin-top: 16px; line-height: 1.5; }

/* CLOSING */
.closing { padding: 80px 24px; background: var(--fg); }
.closing-inner { max-width: 1120px; margin: 0 auto; }
.closing-content { display: flex; flex-direction: column; gap: 28px; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-headline em { color: var(--accent); font-style: italic; }
.closing-body { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* FOOTER */
.site-footer { padding: 48px 24px 32px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--fg); margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg); margin-bottom: 4px; }
.footer-legal-note { font-size: 11.5px; color: var(--fg-muted); line-height: 1.55; }
.footer-col a, .footer-col span { font-size: 13px; color: var(--fg-muted); text-decoration: none; line-height: 1.5; }
.footer-bottom { max-width: 1120px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 24px; }
.footer-bottom p { font-size: 13px; color: var(--fg-muted); }

/* BUTTONS — minimum 44px tap target */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  min-height: 44px;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--fg-muted); color: var(--fg); }

.btn-primary-small {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
  min-height: 36px;
}
.btn-primary-small:hover { background: var(--accent-hover); }

/* TRUST BADGES */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.trust-badge:hover { border-color: var(--accent); color: var(--fg); }
.trust-badge svg { flex-shrink: 0; }

.trust-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
}
.trust-strip-divider { width: 1px; height: 14px; background: var(--border); }

.privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(45,106,79,0.06);
  border: 1px solid rgba(45,106,79,0.15);
  border-radius: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.privacy-notice svg { flex-shrink: 0; margin-top: 1px; color: var(--green); }
.privacy-notice a { color: var(--accent); text-decoration: none; font-weight: 500; }
.privacy-notice a:hover { text-decoration: underline; }

.letter-privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.password-strength {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 6px;
  transition: background 0.3s;
}
.password-strength.strength-weak { background: #dc2626; }
.password-strength.strength-fair { background: #d97706; }
.password-strength.strength-good { background: #059669; }

.security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--bg-alt);
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* PROOF ENHANCEMENTS */
.proof-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 0;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.proof-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.proof-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.proof-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.proof-stat-lbl {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  text-align: center;
}
.proof-press-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.press-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.press-logos {
  display: flex;
  align-items: center;
  gap: 0;
}
.press-logo {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  padding: 0 20px;
  letter-spacing: -0.01em;
}
.press-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 80px 24px;
  background: var(--bg);
}
.testimonials-inner { max-width: 1120px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
  flex: 1;
}
.testimonial-quote::before { content: '\u201C'; }
.testimonial-quote::after { content: '\u201D'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-meta { flex: 1; min-width: 100px; }
.author-name { font-size: 14px; font-weight: 600; color: var(--fg); }
.author-detail { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.testimonial-outcome { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.outcome-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.outcome-chip.resolved { background: rgba(45,106,79,0.12); color: var(--green); }
.outcome-amount { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--accent); }

/* CASE STUDY */
.case-study-section {
  padding: 80px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.case-study-inner { max-width: 1120px; margin: 0 auto; }
.case-study-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
.case-study-content { display: flex; flex-direction: column; gap: 24px; }
.case-study-block h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  color: var(--accent);
}
.case-study-block p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }
.case-study-cta { display: flex; align-items: center; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.case-study-cta-note { font-size: 13px; color: var(--fg-muted); }
.case-study-visual { }
.case-study-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(26,26,46,0.06);
}
.case-study-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.case-study-stat-row {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}
.case-study-stat {
  flex: 1;
  text-align: center;
  padding: 16px 0;
  border-right: 1px solid var(--border);
}
.case-study-stat:last-child { border-right: none; }
.cs-num {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.cs-label { display: block; font-size: 11px; color: var(--fg-muted); margin-top: 4px; }
.case-study-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.case-study-law {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.law-icon {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.law-text { font-size: 13px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { padding: 48px 20px 40px; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .how-it-works { padding: 48px 20px; }

  .use-cases-grid { grid-template-columns: 1fr; }
  .use-cases { padding: 48px 20px; }

  .outcomes-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 48px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { gap: 24px; }

  .proof-row { flex-direction: column; gap: 24px; }
  .hero-proof { flex-wrap: wrap; }
  .proof-divider { display: none; }
  .proof-stats-row { gap: 16px; }
  .proof-stat-sep { display: none; }
  .proof-stat-item { padding: 0 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .case-study-layout { grid-template-columns: 1fr; }
  .testimonial-outcome { align-items: flex-start; }
}