/* ============================================================
   Compass Claw — premium dark build
   Design language adapted from the high-end "void + glass" aesthetic.
   No runtime CSS framework. Hand-written, fast.
   Accent is amber (Compass Claw brand). To use teal instead,
   change --accent / --accent-2 / --accent-rgb below — nothing else.
   ============================================================ */

:root {
  /* Accent (Compass Claw amber). Teal alt: #2caea6 / #6bc6bf / "44 174 166" */
  --accent: #ff8a1e;
  --accent-2: #ffb469;
  --accent-rgb: 255 138 30;

  /* Void / surface */
  --void: #070b14;
  --void-2: #0b1220;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.10);
  --line-accent: rgb(var(--accent-rgb) / 0.30);

  /* Text */
  --white: #f4f7fb;
  --slate-100: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;

  --good: #34d399;
  --bad: #f87171;

  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 12px;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", var(--font-sans);
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--slate-300);
  background: var(--void);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Ambient void background, fixed so it covers the whole page cheaply */
.bg-void {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 650px at 18% 8%, rgb(var(--accent-rgb) / 0.20), transparent 55%),
    radial-gradient(900px 600px at 85% 25%, rgb(var(--accent-rgb) / 0.10), transparent 60%),
    linear-gradient(135deg, var(--void) 0%, var(--void-2) 35%, var(--void-2) 65%, var(--void) 100%);
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(closest-side at 50% 15%, rgba(0,0,0,0.85), rgba(0,0,0,0.12) 65%, transparent);
  mask-image: radial-gradient(closest-side at 50% 15%, rgba(0,0,0,0.85), rgba(0,0,0,0.12) 65%, transparent);
}

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-2);
  background: rgb(var(--accent-rgb) / 0.06);
  border: 1px solid var(--line-accent);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px rgb(var(--accent-rgb) / 0.8);
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgb(var(--accent-rgb) / 0.7); }
  50% { opacity: .55; box-shadow: 0 0 12px rgb(var(--accent-rgb) / 1); }
}

.glass {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gradient-text {
  background: linear-gradient(120deg, #fff 0%, var(--accent-2) 60%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.accent-text { color: var(--accent); }
.bad-text { color: var(--bad); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #1a0d00; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 30px rgb(var(--accent-rgb) / 0.30);
}
.btn-primary:hover { box-shadow: 0 10px 40px rgb(var(--accent-rgb) / 0.45); transform: translateY(-2px); }
.btn-glass {
  color: var(--white);
  background: rgba(255,255,255,.05);
  border-color: var(--line);
}
.btn-glass:hover { background: rgb(var(--accent-rgb) / 0.10); border-color: var(--line-accent); }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }
.btn-sm { padding: 11px 18px; font-size: .92rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(7 11 20 / 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); background: rgb(var(--accent-rgb) / 0.10); border: 1px solid var(--line-accent);
}
.brand-name { font-family: var(--font-display); font-size: 1.22rem; color: var(--white); letter-spacing: -0.02em; }
.brand-accent { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-weight: 700; color: var(--white); font-size: .98rem; padding: 8px 12px; border-radius: 999px;
}
.header-phone:hover { color: var(--accent-2); }
.header-cta { display: none; }
.header-nav { display: none; gap: 22px; margin-left: auto; margin-right: 22px; }
.header-nav a { font-weight: 600; font-size: .95rem; color: var(--slate-300); }
.header-nav a:hover { color: var(--accent); }

/* Services grid (hub) */
.svc-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.svc-card { position: relative; padding: 26px 24px; transition: transform .2s ease, border-color .2s ease; }
.svc-card:hover { transform: translateY(-4px); border-color: var(--line-accent); }
.svc-card h3 { font-size: 1.25rem; }
.svc-card p { color: var(--slate-400); margin: 0 0 14px; font-size: .96rem; }
.svc-tag { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-2); }
.svc-go { font-weight: 600; color: var(--accent); font-size: .92rem; }

/* Footer internal-link hub */
.footer-links { display: grid; gap: 26px; grid-template-columns: 1fr; padding: 8px 0 30px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.footer-links h4 { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2); margin: 0 0 12px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; grid-template-columns: 1fr 1fr; }
.footer-links a { color: var(--slate-400); font-size: .9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-links-more { margin: 12px 0 0; font-size: .9rem; }
.footer-links-more a { color: var(--accent); font-weight: 600; }

/* ---------- Section scaffolding ---------- */
.section { padding: 72px 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
.section-lead { color: var(--slate-400); font-size: 1.08rem; }

/* ============================================================
   HERO + ROI CALCULATOR
   ============================================================ */
.hero { padding: 50px 0 24px; }
.hero-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.hero h1 { font-size: clamp(2.1rem, 6.5vw, 3.6rem); font-weight: 700; }
.hero-sub { font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--slate-400); max-width: 46ch; margin: 0 auto; }
.hero-sub strong { color: var(--slate-100); }

/* Calculator shell */
.calc {
  position: relative;
  max-width: 880px; margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 40px);
  background: rgb(10 14 22 / 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 40px 120px -40px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.calc-orb { position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; z-index: 0; }
.calc-orb.a { top: -160px; left: -160px; background: rgb(var(--accent-rgb) / 0.25); }
.calc-orb.b { bottom: -180px; right: -160px; background: rgb(var(--accent-rgb) / 0.12); }
.calc-inner { position: relative; z-index: 1; }

.calc-badge {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 auto 18px;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .08em; color: var(--slate-200);
  background: rgb(var(--accent-rgb) / 0.05); border: 1px solid var(--line-accent);
  padding: 8px 16px; border-radius: 999px;
}
.calc-head { text-align: center; margin-bottom: 28px; }
.calc-head h2 { font-size: clamp(1.5rem, 4.5vw, 2.4rem); }
.calc-head p { color: var(--slate-400); margin: 0; }

/* Progress dots */
.calc-progress { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 0 32px; }
.calc-progress .dot {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; font-family: var(--font-mono);
  background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--slate-400);
  transition: all .3s ease; flex: 0 0 auto;
}
.calc-progress .dot.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1a0d00; border-color: transparent;
  box-shadow: 0 0 20px rgb(var(--accent-rgb) / 0.4);
}
.calc-progress .seg { width: 38px; height: 3px; border-radius: 999px; background: rgba(255,255,255,.08); transition: background .3s ease; }
.calc-progress .seg.active { background: var(--accent); }

/* Steps */
.calc-step { display: none; animation: stepIn .35s ease; }
.calc-step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.calc-step h3 { font-size: 1.4rem; display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.calc-step .step-icon {
  width: 46px; height: 46px; border-radius: 14px; flex: 0 0 auto;
  background: rgb(var(--accent-rgb) / 0.10); border: 1px solid var(--line-accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.calc-step .step-sub { color: var(--slate-400); margin-bottom: 26px; }

/* Industry option grid */
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.opt {
  text-align: left; cursor: pointer; padding: 18px;
  background: rgba(255,255,255,.03); border: 2px solid var(--line); border-radius: var(--radius-sm);
  color: var(--slate-100); font-weight: 600; transition: all .15s ease;
  display: flex; align-items: center; gap: 12px;
}
.opt:hover { border-color: var(--line-accent); background: rgb(var(--accent-rgb) / 0.05); }
.opt.selected { border-color: var(--accent); background: rgb(var(--accent-rgb) / 0.10); box-shadow: 0 0 0 3px rgb(var(--accent-rgb) / 0.15); }
.opt .opt-ico { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgb(var(--accent-rgb) / 0.10); color: var(--accent); }
.opt small { display: block; font-weight: 400; color: var(--slate-500); font-size: .82rem; }

/* Sliders */
.field { margin-bottom: 30px; }
.field > label { display: block; color: var(--slate-100); font-weight: 600; font-size: 1.05rem; margin-bottom: 14px; }
.slider-value { text-align: center; margin-bottom: 12px; }
.slider-value span {
  font-family: var(--font-mono); font-size: clamp(2.2rem, 7vw, 3rem); font-weight: 800; color: var(--accent);
  text-shadow: 0 0 28px rgb(var(--accent-rgb) / 0.3);
}
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, var(--accent) var(--val, 50%), rgba(255,255,255,.08) var(--val, 50%));
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--void);
  box-shadow: 0 0 16px rgb(var(--accent-rgb) / 0.5); transition: transform .15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%; background: var(--accent); border: 3px solid var(--void);
  box-shadow: 0 0 16px rgb(var(--accent-rgb) / 0.5);
}
.range-scale { display: flex; justify-content: space-between; font-size: .8rem; color: var(--slate-500); margin-top: 8px; }
.range-hint { margin-top: 8px; font-size: .8rem; color: var(--slate-400); }
.range-hint b { color: var(--slate-100); }

/* Results */
.result-loss {
  text-align: center; padding: 26px; border-radius: var(--radius);
  background: rgba(248,113,113,.06); border: 1px solid rgba(248,113,113,.25); margin-bottom: 18px;
}
.result-loss .big { font-family: var(--font-mono); font-size: clamp(2.6rem, 10vw, 4rem); font-weight: 800; color: var(--bad); line-height: 1; }
.result-loss .label { color: var(--slate-300); font-size: .95rem; margin-top: 8px; }
.result-grid { display: grid; gap: 12px; grid-template-columns: 1fr; margin-bottom: 22px; }
.result-tile { padding: 18px 20px; border-radius: var(--radius-sm); background: rgba(255,255,255,.03); border: 1px solid var(--line); text-align: center; }
.result-tile .v { font-family: var(--font-mono); font-size: 1.7rem; font-weight: 800; color: var(--white); }
.result-tile.good .v { color: var(--good); }
.result-tile .k { font-size: .82rem; color: var(--slate-400); }

/* Lead capture */
.lead-form { display: grid; gap: 12px; }
.text-input {
  width: 100%; font-family: inherit; font-size: 1.02rem; padding: 15px 16px; color: var(--white);
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.text-input::placeholder { color: var(--slate-500); }
.text-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgb(var(--accent-rgb) / 0.15); }

.calc-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 28px; }
.calc-back { background: none; border: none; color: var(--slate-400); font-family: inherit; font-weight: 600; cursor: pointer; padding: 12px; }
.calc-back:hover { color: var(--white); }
.calc-err { color: var(--bad); font-weight: 600; text-align: center; margin: 14px 0 0; }

/* Success */
.calc-success { text-align: center; padding: 12px 0; animation: stepIn .35s ease; }
.calc-success .check {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px; font-size: 2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; color: var(--good); background: rgba(52,211,153,.12);
}

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; padding: 30px 20px; text-align: center; }
.trust-item strong { display: block; font-family: var(--font-mono); font-size: 1.7rem; font-weight: 800; color: var(--accent); }
.trust-item span { font-size: .85rem; color: var(--slate-400); }

/* ---------- Who we help ---------- */
.who-grid { display: grid; gap: 16px; }
.who-card { padding: 28px 24px; text-align: center; transition: transform .2s ease, border-color .2s ease; }
.who-card:hover { transform: translateY(-4px); border-color: var(--line-accent); }
.who-ico {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: rgb(var(--accent-rgb) / 0.10); color: var(--accent); border: 1px solid var(--line-accent);
}
.who-card h3 { font-size: 1.2rem; }
.who-card p { color: var(--slate-400); margin: 0; font-size: .96rem; }
.who-cta { text-align: center; margin-top: 30px; }

/* ---------- Featured service ---------- */
.feature {
  position: relative; max-width: 820px; margin: 0 auto; padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  background: rgb(var(--accent-rgb) / 0.05); border: 1px solid var(--line-accent);
  box-shadow: 0 0 50px -20px rgb(var(--accent-rgb) / 0.35);
}
.feature-badge {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-2); background: rgb(var(--accent-rgb) / 0.10);
  border: 1px solid var(--line-accent); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.feature h3 { font-size: clamp(1.4rem, 3.5vw, 1.9rem); }
.feature .lead-line { color: var(--accent-2); font-weight: 600; margin-bottom: 1em; }
.feature p { color: var(--slate-300); }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.feature-list li { position: relative; padding-left: 32px; color: var(--slate-100); }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%;
  background: rgb(var(--accent-rgb) / 0.15); color: var(--accent); font-weight: 800; font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
}

/* Grows with you */
.grow-band { margin-top: 36px; padding: 30px 24px; text-align: center; }
.grow-band h3 { font-size: 1.35rem; }
.grow-band > p { color: var(--slate-400); max-width: 540px; margin: 0 auto 22px; }
.grow-item { max-width: 460px; margin: 0 auto; padding: 24px; position: relative; }
.grow-tag {
  position: absolute; top: 14px; right: 14px; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent-2); background: rgb(var(--accent-rgb) / 0.10);
  border: 1px solid var(--line-accent); padding: 4px 10px; border-radius: 999px;
}
.grow-ico { width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: rgb(var(--accent-rgb) / 0.10); color: var(--accent); }
.grow-item h4 { font-size: 1.15rem; margin-bottom: .4em; }
.grow-item p { color: var(--slate-400); margin: 0; font-size: .95rem; }

/* ---------- Live AI demo ---------- */
.demo-grid { display: grid; gap: 36px; align-items: center; }
.demo-copy h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.demo-copy p { color: var(--slate-400); }
.demo-stage { padding: 26px; }
.demo-phone { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.voice-orb { position: relative; width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; }
.voice-orb .core {
  width: 84px; height: 84px; border-radius: 50%; z-index: 1; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, var(--accent-2), var(--accent)); color: #1a0d00;
  box-shadow: 0 0 40px rgb(var(--accent-rgb) / 0.5);
}
.voice-orb .ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgb(var(--accent-rgb) / 0.5); animation: ripple 2.4s ease-out infinite; }
.voice-orb .ring.d2 { animation-delay: .8s; }
.voice-orb .ring.d3 { animation-delay: 1.6s; }
@keyframes ripple { 0% { transform: scale(.7); opacity: .8; } 100% { transform: scale(1.9); opacity: 0; } }
.waveform { display: flex; align-items: center; gap: 4px; height: 34px; }
.waveform span { width: 4px; border-radius: 4px; background: var(--accent); animation: wave 1s ease-in-out infinite; }
.waveform span:nth-child(odd) { animation-delay: .15s; }
.waveform span:nth-child(3n) { animation-delay: .3s; }
@keyframes wave { 0%, 100% { height: 8px; opacity: .5; } 50% { height: 30px; opacity: 1; } }
.chat { width: 100%; display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.bubble { padding: 12px 15px; border-radius: 16px; font-size: .95rem; max-width: 88%; }
.bubble.ai { background: rgba(255,255,255,.05); border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; color: var(--slate-100); }
.bubble.ai .who { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 3px; }
.bubble.caller { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1a0d00; align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 600; }
.demo-status { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--good); font-weight: 600; margin-top: 6px; font-family: var(--font-mono); }

/* ---------- Stats + testimonials ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 52px; }
.stat-card { padding: 26px 18px; text-align: center; }
.stat-num { font-family: var(--font-mono); font-size: clamp(1.9rem, 7vw, 2.7rem); font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-card p { color: var(--slate-400); font-size: .9rem; margin: 0; }

.carousel { display: flex; align-items: center; gap: 10px; }
.carousel-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px 14px; flex: 1; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.tcard { flex: 0 0 86%; scroll-snap-align: center; padding: 22px; }
.tcard .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 10px; }
.tcard blockquote { margin: 0 0 12px; font-size: 1.05rem; color: var(--white); font-weight: 500; }
.tcard cite { font-style: normal; font-size: .86rem; color: var(--slate-400); font-family: var(--font-mono); }
.carousel-arrow {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; display: none; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--white); cursor: pointer; transition: all .15s ease;
}
.carousel-arrow:hover { background: rgb(var(--accent-rgb) / 0.12); border-color: var(--line-accent); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; background: rgba(255,255,255,.18); cursor: pointer; transition: all .15s ease; }
.carousel-dots button.is-active { background: var(--accent); width: 24px; border-radius: 999px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer; color: var(--white);
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q .chev { flex: 0 0 auto; transition: transform .25s ease; color: var(--accent); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--slate-400); }

/* ---------- Founder ---------- */
.founder-grid { display: grid; gap: 32px; align-items: center; }
.founder-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.01)); border: 1px solid var(--line);
  max-width: 360px; margin: 0 auto; width: 100%; overflow: hidden;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-photo .initials { font-family: var(--font-display); font-size: 4rem; font-weight: 800; color: var(--accent); }
.founder-photo .hint { font-size: .82rem; color: var(--slate-500); margin-top: 6px; }
.founder-copy h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.founder-copy p { color: var(--slate-400); }
.founder-sign { font-family: var(--font-mono); color: var(--slate-200); font-weight: 600; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-card { max-width: 720px; margin: 0 auto; padding: clamp(30px, 5vw, 56px); border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.final-card h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
.final-card p { color: var(--slate-300); max-width: 48ch; margin: 0 auto 26px; }
.final-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 46px 0 26px; }
.footer-inner { display: flex; flex-direction: column; gap: 22px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.footer-brand p { color: var(--slate-400); margin: 8px 0 0; max-width: 32ch; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-phone { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.footer-contact a:hover { color: var(--accent); }
.footer-nap { font-family: var(--font-mono); font-size: .8rem; color: var(--slate-500); margin-top: 6px; }
.footer-bottom { display: flex; flex-direction: column; gap: 6px; padding-top: 20px; font-size: .82rem; color: var(--slate-500); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 600px) {
  .header-cta { display: inline-flex; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr 1.4fr; }
  .trust-inner { grid-template-columns: repeat(4, 1fr); }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
  .result-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .tcard { flex: 0 0 48%; }
  .lead-form { grid-template-columns: 1fr 1fr; }
  .lead-form .full { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 900px) {
  .section { padding: 96px 0; }
  .header-nav { display: flex; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .demo-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: .9fr 1.1fr; }
  .carousel-arrow { display: flex; }
  .tcard { flex: 0 0 32%; }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-contact { flex-direction: row; align-items: center; }
}

/* ---------- Location pages ---------- */
.breadcrumb { font-family: var(--font-mono); font-size: .78rem; color: var(--slate-500); padding: 18px 0 0; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--slate-300); }
.loc-hero { padding: 40px 0 16px; text-align: center; }
.loc-hero h1 { font-size: clamp(1.9rem, 5.5vw, 3rem); }
.loc-hero .loc-sub { color: var(--slate-400); font-size: clamp(1.02rem, 2.2vw, 1.2rem); max-width: 50ch; margin: 0 auto 24px; }
.loc-prose { max-width: 760px; margin: 0 auto; }
.loc-prose p { color: var(--slate-300); }
.loc-nearby { font-family: var(--font-mono); font-size: .82rem; color: var(--slate-500); text-align: center; margin-top: 24px; }
.loc-prose h2 { font-size: 1.3rem; color: var(--white); margin: 28px 0 12px; }
.loc-list { list-style: none; padding: 0; margin: 0 0 8px; display: grid; gap: 8px; grid-template-columns: 1fr; }
.loc-list a { color: var(--slate-300); }
.loc-list a:hover { color: var(--accent); }
@media (min-width: 600px) { .loc-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .loc-list { grid-template-columns: repeat(3, 1fr); } }

/* ---------- A11y ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }
