/* ============================================================
   Scalon V2 — shared stylesheet
   Used by index.html, sales.html, marketing.html,
   pilotage.html, veille.html.
   1 vermillon · 3 neutres chauds · Inter + JetBrains Mono.
   ============================================================ */

:root {
  --ink: #0F0E0D;
  --fg-muted: #6B6660;
  --fg-faint: #A8A29E;
  --bg: #FFFFFF;
  --bg-soft: #FAFAF9;
  --bg-canvas: #F5F4F1;
  --line: #E7E5E1;
  --line-strong: #D6D3CE;
  --accent: #D64C31;
  --accent-ink: #A83A25;
  --accent-soft: #FDF1ED;

  --text-hero: clamp(36px, 3.8vw, 52px);
  --text-h1: clamp(32px, 3.4vw, 40px);
  --text-h2: clamp(24px, 2.4vw, 30px);
  --text-h3: 18px;
  --text-body: 17px;
  --text-meta: 13px;
  --shock: clamp(64px, 7vw, 96px);

  --font: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --max: 1180px;
  --nav-h: 64px;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: 'cv11', 'ss01';
}
img { max-width: 100%; display: block; }
button { font: inherit; }

/* ── layout ─────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 112px 0; border-top: 1px solid var(--line); }
.section--first { border-top: 0; padding-top: 56px; }
.section--soft { background: var(--bg-soft); }
.section--canvas { background: var(--bg-canvas); }
.section--tight { padding: 80px 0; }
.section-head { max-width: 64ch; margin-bottom: 56px; }
.section-head .label { margin-bottom: 24px; }
.section-head .lead {
  font-size: var(--text-body);
  color: var(--fg-muted);
  max-width: 56ch;
  margin: 16px 0 0;
}

/* ── typo ───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
h1 { font-size: var(--text-h1); }
h1.hero-title {
  font-size: var(--text-hero);
  line-height: 1.08;
  text-wrap: balance;
  max-width: 18ch;
}
h2 { font-size: var(--text-h2); line-height: 1.15; letter-spacing: -0.015em; }
h3 { font-size: var(--text-h3); font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
p { margin: 0 0 16px; color: var(--ink); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-ink); }

.label {
  display: inline-block;
  font-size: var(--text-meta);
  font-weight: 500;
  color: var(--fg-muted);
}
.label-num { color: var(--fg-faint); margin-right: 6px; }
.label-accent { color: var(--accent); }

/* ── nav ────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand .dot { color: var(--accent); }
.brand-kicker {
  color: var(--fg-faint);
  font-weight: 500;
  font-size: 13px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
}
.nav-links a:hover { color: var(--accent); }

/* ── ctas ───────────────────────────────────── */
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background 150ms, color 150ms, border-color 150ms;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
}
.cta-arrow { transition: transform 200ms; display: inline-block; }
.cta:hover .cta-arrow { transform: translateX(3px); }
.cta--primary {
  background: var(--accent);
  color: white;
}
.cta--primary:hover { background: var(--accent-ink); color: white; }
.cta--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.cta--secondary:hover { border-color: var(--ink); color: var(--ink); }
.cta--ghost {
  background: transparent;
  color: var(--ink);
  padding: 11px 4px;
}
.cta--ghost:hover { color: var(--accent); }
.cta--lg { padding: 14px 22px; font-size: 15px; }

/* ─────────────────────────────────────────────
   HERO (home + use cases)
   ───────────────────────────────────────────── */
.hero {
  padding: 80px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  font-size: var(--text-meta);
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 24px;
  display: inline-block;
}
.hero-eyebrow.is-accent { color: var(--accent); }
.hero-sub {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 50ch;
  margin: 0 0 32px;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-mini {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-faint);
  display: flex; align-items: center; gap: 10px;
}
.hero-mini .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Rotor inline (mot qui tourne, version sobre)
   – pas de fond vermillon, juste un soulignement discret
   – largeur calée sur le mot le plus long via la stack */
.rotor {
  display: inline-grid;
  grid-template-areas: "rotor";
  vertical-align: baseline;
}
.rotor-ghost {
  grid-area: rotor;
  visibility: hidden;
  pointer-events: none;
  padding: 0 4px;
  color: transparent;
}
.rotor-live {
  grid-area: rotor;
  color: var(--accent);
  font-weight: 500;
  padding: 0 4px;
  justify-self: center;
  text-align: center;
  position: relative;
  transition: opacity 250ms;
}
.rotor-live::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: -2px;
  height: 1px;
  background: var(--accent);
  opacity: 0.45;
}

/* ─────────────────────────────────────────────
   WIDGET (verbatim explorer + variantes)
   ───────────────────────────────────────────── */
.vbx {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(15,14,13,0.18);
}
.vbx-head {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--bg-soft);
}
.vbx-dots { display: flex; gap: 6px; }
.vbx-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.vbx-path { margin-left: auto; color: var(--fg-faint); }
.vbx-path .live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse 1.6s ease-in-out infinite;
}
.vbx-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
.vbx-side { padding: 24px 24px 26px; position: relative; min-width: 0; }
.vbx-side + .vbx-side {
  border-left: 1px solid var(--line);
  background: var(--bg-soft);
}
.vbx-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.vbx-stars { color: var(--accent); letter-spacing: 1px; }
.vbx-quote {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 14px;
}
.vbx-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
}
.vbx-theme {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.vbx-theme:last-child { border-bottom: 0; }
.vbx-theme-name { flex: 1; color: var(--ink); }
.vbx-theme-pol {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
  width: 38px;
  text-align: right;
}
.vbx-theme-pol.is-neg { color: var(--accent); }
.vbx-bar {
  width: 64px; height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.vbx-bar-fill {
  height: 100%;
  background: var(--accent);
  display: block;
  transition: width 700ms ease;
}

/* crossfade frames */
.vbx-frame {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 24px 24px 26px;
  transition: opacity 400ms ease;
}
.vbx-frame.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  inset: auto;
}

/* tabs under widget */
.vbx-tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.vbx-tab {
  flex: 1;
  padding: 12px 8px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 150ms, background 150ms;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.vbx-tab:last-child { border-right: 0; }
.vbx-tab:hover { background: var(--bg-soft); color: var(--ink); }
.vbx-tab.is-active {
  color: var(--accent);
  background: var(--accent-soft);
}

/* ── widget : variantes contenu spécifiques ─── */

/* Pitch generator (sales) — line "À: prospect" + corps */
.vbx-pitch-row {
  display: flex; gap: 10px;
  font-size: 12.5px;
  color: var(--fg-muted);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  font-family: var(--font-mono);
}
.vbx-pitch-row b { color: var(--ink); font-weight: 500; }
.vbx-pitch-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.vbx-pitch-body em {
  background: var(--accent-soft);
  font-style: normal;
  padding: 1px 4px;
  border-radius: 3px;
}

/* Segment / activation (marketing) */
.vbx-segment-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.vbx-segment-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.vbx-segment-msg {
  background: var(--bg-soft);
  border-left: 2px solid var(--accent);
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 12px;
}
.vbx-segment-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  display: flex;
  gap: 14px;
}

/* Network sites (pilotage) — vertical list */
.vbx-site {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.vbx-site:last-child { border-bottom: 0; }
.vbx-site-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vbx-site-dot.is-ok { background: #16A34A; }
.vbx-site-dot.is-warn { background: #D97706; }
.vbx-site-dot.is-bad { background: var(--accent); }
.vbx-site-name { flex: 1; color: var(--ink); }
.vbx-site-score {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}

.vbx-focus-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.vbx-focus-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 14px;
}
.vbx-focus-quote {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 2px solid var(--line);
}

/* Competitive leaderboard (veille) */
.vbx-versus-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.vbx-versus-row:last-child { border-bottom: 0; }
.vbx-versus-row.is-you {
  font-weight: 500;
  color: var(--ink);
}
.vbx-versus-row.is-you .vbx-versus-score { color: var(--accent); }
.vbx-versus-name { color: var(--fg-muted); }
.vbx-versus-row.is-you .vbx-versus-name { color: var(--ink); }
.vbx-versus-score {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}
.vbx-versus-bar {
  width: 80px; height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.vbx-versus-bar-fill {
  height: 100%;
  background: var(--fg-faint);
}
.vbx-versus-row.is-you .vbx-versus-bar-fill { background: var(--accent); }

/* ─────────────────────────────────────────────
   LOGO STRIP
   ───────────────────────────────────────────── */
.logos {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  display: flex; gap: 0; flex-wrap: wrap;
  align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--fg-muted);
}
.logos > * { padding: 0 28px; }
.logos > * + *:before {
  content: '·';
  color: var(--fg-faint);
  margin-right: 28px;
  margin-left: -28px;
}

/* ─────────────────────────────────────────────
   USE CASE GRID (home)
   ───────────────────────────────────────────── */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.uc-card {
  display: flex; flex-direction: column;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 150ms, transform 150ms;
  min-height: 230px;
}
.uc-card:hover {
  border-color: var(--ink);
  color: inherit;
}
.uc-card:hover .uc-arrow { transform: translateX(4px); color: var(--accent); }
.uc-tag {
  font-size: var(--text-meta);
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 18px;
}
.uc-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.uc-card p {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0 0 24px;
  flex: 1;
}
.uc-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  transition: transform 200ms, color 200ms;
}
.uc-also {
  margin-top: 28px;
  font-size: 13px;
  color: var(--fg-muted);
}
.uc-also-strong { color: var(--ink); font-weight: 500; }

/* ─────────────────────────────────────────────
   "Ce que vous recevez" cells (use cases)
   ───────────────────────────────────────────── */
.cells {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cells .cell {
  padding: 28px 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 120px;
}
.cells .cell h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.cells .cell p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
}
.cells-footer {
  margin-top: 32px;
  font-size: 14.5px;
  color: var(--fg-muted);
  max-width: 64ch;
}

/* ─────────────────────────────────────────────
   STEPS (numbered, home)
   ───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step-num {
  font-family: var(--font);
  font-size: 56px;
  font-weight: 500;
  color: var(--fg-faint);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.step h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.step p {
  color: var(--fg-muted);
  font-size: 15px;
  margin: 0 0 14px;
}
.step-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
}

/* ─────────────────────────────────────────────
   WHY (équipe + metrics, home)
   ───────────────────────────────────────────── */
.why {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-body p {
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 50ch;
}
.why-body p.muted { color: var(--fg-muted); }
.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.why-stat-v {
  display: block;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--accent);
  margin-bottom: 6px;
  line-height: 1;
}
.why-stat-l {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.why-photo {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
}
.why-photo img { width: 100%; height: auto; display: block; }
.why-photo-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.why-photo-caption .live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

/* ─────────────────────────────────────────────
   TESTIMONIAL CAROUSEL (auto-advance, 1 par 1)
   ───────────────────────────────────────────── */
.testim-carousel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 280px;
}
.testim-slide {
  display: none;
}
.testim-slide.is-active {
  display: block;
  animation: testim-fade 480ms ease both;
}
@keyframes testim-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.testim-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  display: block;
}
.testim-quote {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 auto 24px;
  max-width: 56ch;
  text-wrap: balance;
}
.testim-quote mark {
  background: var(--accent-soft);
  color: var(--ink);
  padding: 1px 4px;
  border-radius: 3px;
}
.testim-quote .metric {
  color: var(--accent);
  font-weight: 500;
}
.testim-identity {
  font-size: 13.5px;
  color: var(--fg-muted);
  margin: 0 auto 20px;
  max-width: 56ch;
}
.testim-identity .name { color: var(--ink); font-weight: 500; }
.testim-identity b { color: var(--ink); font-weight: 500; }
.testim-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}
.testim-cta:hover { color: var(--accent-ink); }
.testim-cta:hover span { transform: translateX(3px); }
.testim-cta span { transition: transform 200ms; display: inline-block; }

.testim-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.testim-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
}
.testim-dot:hover { background: var(--fg-muted); }
.testim-dot.is-active { background: var(--accent); transform: scale(1.2); }

/* ─────────────────────────────────────────────
   CASE BLOCK (cas concret, use cases)
   Carte témoignage isolée
   ───────────────────────────────────────────── */
.case-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
}
.case-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-soft);
}
.case-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.case-quote {
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.case-quote mark {
  background: var(--accent-soft);
  color: var(--ink);
  padding: 1px 4px;
  border-radius: 3px;
}
.case-quote .metric {
  color: var(--accent);
  font-weight: 500;
}
.case-identity {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--fg-muted);
}
.case-identity .name { color: var(--ink); font-weight: 500; }
.case-identity b { color: var(--ink); font-weight: 500; }
.case-cta {
  margin-top: 40px;
}

/* ─────────────────────────────────────────────
   FINAL CTA + FORM
   ───────────────────────────────────────────── */
.cta-final {
  background: var(--bg-canvas);
  border-top: 1px solid var(--line);
}
.cta-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 112px 0;
  align-items: start;
}
.cta-final h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 16px;
}
.cta-final p {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 42ch;
}
.cta-final-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-faint);
  margin-top: 24px;
}
.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.form-row .req { color: var(--accent); }
.form-row .opt { color: var(--fg-faint); font-weight: 400; font-size: 11px; margin-left: 4px; }
.form-row input,
.form-row textarea {
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  outline: none;
  transition: border-color 120ms, background 120ms;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--fg-faint);
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--ink);
  background: var(--bg);
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  margin-top: 12px;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 40px 16px;
}
.form-success .big {
  font-size: 32px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.form-success p { color: var(--fg-muted); margin: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.foot {
  background: var(--bg-canvas);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.foot-brand {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.foot-brand .dot { color: var(--accent); }
.foot-tag {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 32ch;
  margin: 0;
}
.foot h4 {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
  font-weight: 500;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 10px; }
.foot li a {
  color: var(--ink);
  font-size: 14px;
}
.foot li a:hover { color: var(--accent); }
.foot-bot {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--fg-faint);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .section { padding: 80px 0; }
  .section--tight { padding: 56px 0; }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0 64px;
  }
  .uc-grid, .cells { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .why { grid-template-columns: 1fr; gap: 48px; }
  .testim-carousel { min-height: 320px; }
  .cta-final-grid { grid-template-columns: 1fr; gap: 48px; padding: 80px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { gap: 18px; }
  .nav-links .show-md { display: none; }
  .case-card { grid-template-columns: 1fr; gap: 18px; }
  .case-avatar { width: 56px; height: 56px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links .show-sm { display: none; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .vbx-body { grid-template-columns: 1fr; min-height: 0; }
  .vbx-side + .vbx-side { border-left: 0; border-top: 1px solid var(--line); }
  .vbx-tabs { flex-wrap: wrap; }
  .vbx-tab { flex: 1 1 50%; }
  .why-stats { grid-template-columns: 1fr; gap: 20px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bot { flex-direction: column; gap: 8px; }
  .testim-quote { font-size: 19px; }
  .brand-kicker { display: none; }
  .case-card { padding: 28px 24px; }
}
