:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --text: #1a1d21;
  --muted: #5c5f66;
  --line: #e8e6e1;
  --accent: #1b8fe8;
  --accent-dark: #1578c4;
  --accent-soft: #e8f4fd;
  --bolt: #f59e0b;
  --mint: #2dd4a8;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(26, 29, 33, 0.08);
  --shadow-lg: 0 24px 64px rgba(26, 29, 33, 0.12);
  --max: 1120px;
  --font: "DM Sans", system-ui, sans-serif;
  --header-bg: rgba(248, 247, 244, 0.92);
  --preview-chrome: #f3f2ee;
  --phone-bg: #f3f2ee;
  --bar-dull: #d4d2cb;
  --bar-faint: #e8e6e1;
}

[data-theme="dark"] {
  --bg: #0f1218;
  --surface: #1a2030;
  --text: #e8ecf1;
  --muted: #9aa3b2;
  --line: #2d3648;
  --accent: #3da5f5;
  --accent-dark: #7cc0ff;
  --accent-soft: rgba(61, 165, 245, 0.14);
  --bolt: #fbbf24;
  --mint: #34d399;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
  --header-bg: rgba(15, 18, 24, 0.92);
  --preview-chrome: #1e2533;
  --phone-bg: #1e2533;
  --bar-dull: #3a4458;
  --bar-faint: #2d3648;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.bureau-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 10px 20px;
  font-size: 0.85rem;
  background: #12121a;
  border-bottom: 1px solid #2a2a35;
}
.bureau-nav a { color: #00f0ff; text-decoration: none; }
.bureau-nav a:hover { text-decoration: underline; }
.bureau-badge {
  color: #8fa3be;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-wordmark { height: 34px; width: auto; display: block; }
.logo-wordmark.lg { height: 44px; }
.logo-wordmark.sm { height: 28px; }

.main-nav { display: flex; gap: 24px; }
.main-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.main-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta-btn { padding: 11px 20px; font-size: 0.88rem; }

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 11px;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.lang-btn.active {
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.lang-btn:hover:not(.active) { color: var(--text); }

.theme-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  padding: 0;
}
.theme-toggle:hover { color: var(--bolt); border-color: rgba(245, 158, 11, 0.45); }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; color: var(--bolt); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.mobile-nav a {
  padding: 14px 0;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-nav.is-open { display: flex; }

@media (max-width: 900px) {
  .main-nav, .header-cta-btn { display: none; }
  .nav-toggle { display: flex; }
  .header-tools { margin-left: auto; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(27, 143, 232, 0.28);
}
.btn.primary:hover { background: var(--accent-dark); }
.btn.ghost { background: transparent; }
.btn.link-arrow::after { content: " →"; }

.hero { padding: 56px 0 32px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero-baseline {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--muted);
}
.hero-baseline .accent { color: var(--accent); }
.accent { color: var(--accent); }
.hero-badge {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(245, 158, 11, 0.12));
  color: var(--accent-dark);
  border: 1px solid rgba(245, 158, 11, 0.35);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.metric .val {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.metric .lbl {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

.preview-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.preview-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--preview-chrome);
  border-bottom: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ff6b6b; }
.dot.y { background: #ffd166; }
.dot.g { background: var(--mint); }
.preview-url {
  margin-left: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
}
.preview-body { padding: 28px 24px 32px; text-align: center; }
.preview-tagline {
  margin: 12px 0 20px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.preview-stats div {
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 14px 8px;
}
.preview-stats strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent);
}
.preview-stats span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-ba .preview-body { display: none; }

.ba-slider { padding: 16px 16px 4px; }
.ba-slider-stage {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--phone-bg);
  min-height: 200px;
  touch-action: none;
  user-select: none;
}
.ba-slider-pane {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  min-height: 200px;
}
.ba-after-pane { width: 100%; }
.ba-slider-clip {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid var(--bolt);
  pointer-events: none;
}
.ba-before-pane {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--phone-bg);
}
.ba-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
}
.ba-tag-after { color: var(--bolt); }
.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 36px;
  margin-left: -18px;
  z-index: 3;
  border: none;
  background: transparent;
  cursor: ew-resize;
  padding: 0;
}
.ba-slider-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bolt);
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(27, 143, 232, 0.45);
}
.ba-slider-knob::before,
.ba-slider-knob::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  transform: translateY(-50%);
}
.ba-slider-knob::before {
  left: 6px;
  border-right-color: #fff;
}
.ba-slider-knob::after {
  right: 6px;
  border-left-color: #fff;
}
.ba-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
}
.ba-label.bolt { color: var(--bolt); }
.ba-phone {
  background: var(--phone-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 10px;
  min-height: 140px;
}
.ba-after .ba-phone {
  border-color: rgba(27, 143, 232, 0.35);
  box-shadow: 0 0 0 1px rgba(27, 143, 232, 0.15);
}
.ba-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--bar-dull);
  margin-bottom: 8px;
}
.ba-bar.wide { width: 70%; margin-inline: auto; }
.ba-bar.thin { width: 40%; margin: 10px auto 0; height: 6px; }
.ba-bar.accent { background: var(--accent); width: 55%; margin-inline: auto; }
.ba-bar.accent-soft { background: var(--accent-soft); width: 80%; margin-inline: auto; }
.ba-img {
  height: 48px;
  border-radius: 8px;
  margin: 10px 0;
}
.ba-img.dull { background: linear-gradient(135deg, #c8c5bc, #b0ada4); }
.ba-img.bright { background: linear-gradient(135deg, var(--accent-soft), #fff); border: 1px solid #b8daf7; }
.ba-btn {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  margin-top: 6px;
}
.ba-btn.faint { background: var(--bar-faint); color: var(--muted); }
.ba-btn.strong { background: var(--accent); color: #fff; }
.ba-pills { display: flex; gap: 4px; justify-content: center; margin-top: 8px; }
.ba-pills span {
  width: 18px; height: 6px; border-radius: 3px; background: var(--accent-soft);
}
.ba-pills .bolt-pill { background: var(--bolt); width: 22px; }
.ba-arrow { color: var(--bolt); opacity: 0.9; }
@media (max-width: 560px) {
  .ba-slider-stage { min-height: 180px; }
  .ba-slider-pane { min-height: 180px; padding: 16px 12px; }
}
.ba-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0 16px 16px;
  margin: 0;
}

.audit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.audit-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(245, 158, 11, 0.08));
  border-bottom: 1px solid var(--line);
}
.audit-score {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.audit-score span { font-size: 1rem; color: var(--muted); font-weight: 500; }
.audit-meta { font-size: 0.88rem; color: var(--muted); }
.audit-meta strong { color: var(--text); display: block; }
.audit-axes { padding: 8px 0; }
.audit-axis {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.audit-axis:last-child { border-bottom: 0; }
.audit-axis-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--bolt);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.audit-axis h3 { margin: 0 0 6px; font-size: 1.05rem; }
.audit-axis p { margin: 0 0 6px; font-size: 0.9rem; color: var(--muted); }
.audit-axis .action { color: var(--accent-dark); font-weight: 600; font-size: 0.88rem; }

.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 520px;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
}
.compare-table th {
  background: var(--surface);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.compare-table .col-sitvif { background: var(--accent-soft); font-weight: 600; }
.compare-table .win { color: var(--accent-dark); }
.compare-table .col-sitvif.win { position: relative; }
.compare-table .col-sitvif.win::before {
  content: "⚡";
  margin-right: 4px;
  font-size: 0.85em;
}
.compare-table tbody tr {
  transition: background 0.15s ease;
}
.compare-table tbody tr:hover {
  background: rgba(27, 143, 232, 0.05);
}
.compare-table tbody tr:hover .col-sitvif {
  background: rgba(27, 143, 232, 0.14);
}

.quiz-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  max-width: 640px;
}
.quiz-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.quiz-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
}
.quiz-dot.active { background: var(--accent); }
.quiz-dot.done { background: var(--bolt); }
.quiz-step h3 { margin: 0 0 14px; font-size: 1.1rem; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-opt {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.quiz-opt:hover { border-color: var(--accent); background: var(--accent-soft); }
.quiz-opt.selected { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 1px var(--accent); }
.quiz-summary {
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.quiz-summary dt { font-weight: 600; color: var(--text); margin-top: 8px; }
.quiz-summary dt:first-child { margin-top: 0; }
.quiz-summary dd { margin: 2px 0 0; color: var(--muted); }
.quiz-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.roi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.roi-form { display: flex; flex-direction: column; gap: 20px; }
.roi-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.roi-field label span { color: var(--muted); font-weight: 500; font-size: 0.82rem; }
.roi-value {
  font-variant-numeric: tabular-nums;
  color: var(--accent-dark);
  font-weight: 700;
}
.roi-field input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}
.roi-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}
.roi-speed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.roi-speed-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  text-align: left;
}
.roi-speed-btn small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.78rem;
}
.roi-speed-btn:hover { border-color: var(--accent); background: var(--accent-soft); }
.roi-speed-btn.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px var(--accent);
}
.roi-result {
  background: linear-gradient(145deg, var(--accent-soft), rgba(255, 184, 0, 0.12));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.roi-result.is-empty {
  background: var(--bg);
  border-style: dashed;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}
.roi-result-amount {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.roi-result-amount span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
}
.roi-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}
.roi-stat {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.82rem;
}
html[data-theme="dark"] .roi-stat { background: rgba(0, 0, 0, 0.2); }
.roi-stat strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text);
  margin-top: 2px;
}
.roi-result-note,
.roi-subsidy-note,
.roi-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0 0 8px;
}
.roi-subsidy-note {
  padding: 10px 12px;
  background: rgba(27, 143, 232, 0.08);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}
.roi-actions { margin-top: 14px; }

@media (max-width: 860px) {
  .roi-card { grid-template-columns: 1fr; }
  .roi-speed { grid-template-columns: 1fr; }
  .roi-result-grid { grid-template-columns: 1fr; }
}

.agent-card .icon-svg {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.agent-card .icon-svg svg { width: 22px; height: 22px; }

.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 18px 0;
}
.logo-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.logo-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}
.logo-pill.highlight {
  border-color: rgba(245, 158, 11, 0.45);
  color: var(--accent-dark);
  background: linear-gradient(135deg, var(--accent-soft), rgba(245, 158, 11, 0.1));
  font-weight: 600;
}
.logo-pill-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pill-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: #6b7280;
  flex-shrink: 0;
}
.pill-icon svg { width: 100%; height: 100%; }
.logo-pill-icon:hover .pill-icon { color: var(--accent); }

section { padding: 72px 0; }
.section-alt { background: var(--surface); border-block: 1px solid var(--line); }

.section-label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-lead {
  margin: 0 0 36px;
  color: var(--muted);
  max-width: 58ch;
}
.market-note { margin-top: 32px; margin-bottom: 0; font-size: 0.9rem; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.section-alt .pillar { background: var(--bg); }
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.pillar-icon.icon-svg svg { width: 22px; height: 22px; }
.pillar h3 { margin: 0 0 10px; font-size: 1.15rem; }
.pillar p { margin: 0 0 18px; color: var(--muted); font-size: 0.95rem; }

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.agent-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.section-alt .agent-card { background: var(--surface); }
.agent-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.agent-card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.agent-card p { margin: 0 0 14px; color: var(--muted); font-size: 0.92rem; }
.agent-card .livrable {
  font-size: 0.8rem;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 8px 12px;
  border-radius: 8px;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.case-visual img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.case-metric {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 16px;
  padding: 12px 18px;
  background: var(--accent-soft);
  border-radius: 12px;
}
.case-metric strong { font-size: 1.3rem; color: var(--accent); }
.case-metric span { font-size: 0.82rem; color: var(--muted); }
.case-points {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.case-points li { margin-bottom: 6px; }

.case-demo { border-color: rgba(27, 143, 232, 0.25); }
.demo-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bolt);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
}
.demo-visual { width: 100%; }
.demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.demo-pane { text-align: center; }
.demo-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.demo-tag.bolt { color: var(--bolt); }
.demo-screen {
  background: var(--phone-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  min-height: 200px;
}
.demo-after .demo-screen {
  border-color: rgba(27, 143, 232, 0.35);
  box-shadow: 0 4px 20px rgba(27, 143, 232, 0.12);
}
.demo-nav {
  height: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  width: 100%;
}
.demo-nav.dull { background: var(--bar-dull); }
.demo-nav.accent { background: var(--accent); width: 70%; margin-inline: auto; }
.demo-hero {
  height: 56px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.demo-hero.dull { background: linear-gradient(135deg, #c8c5bc, #b0ada4); }
.demo-hero.bright { background: linear-gradient(135deg, var(--accent-soft), #fff); border: 1px solid #b8daf7; }
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.demo-grid span {
  height: 36px;
  border-radius: 6px;
  background: var(--bar-faint);
}
.demo-grid span.on { background: var(--accent-soft); border: 1px solid #b8daf7; }
.demo-cta {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 8px;
  border-radius: 6px;
}
.demo-cta.faint { background: var(--bar-faint); color: var(--muted); }
.demo-cta.strong { background: var(--accent); color: #fff; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.section-alt .process-step { background: var(--bg); }
.process-step .num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.process-step h3 { margin: 0 0 6px; font-size: 1rem; }
.process-step .duree {
  font-size: 0.82rem;
  color: var(--bolt);
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--bolt));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-card h3 { margin: 0; font-size: 1.2rem; }
.price-card .sub { color: var(--muted); font-size: 0.88rem; margin: 4px 0 16px; }
.price-card .prix {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 4px;
}
.price-card .marche { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.price-card .delai {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bolt);
  margin-bottom: 12px;
}
.price-card .desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.price-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
}
.price-card li { margin-bottom: 6px; }

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 20px;
}
.section-alt .faq details { background: var(--bg); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 16px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent); }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0 0 16px; color: var(--muted); font-size: 0.95rem; }

.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a4d82 0%, #1b8fe8 42%, #1578c4 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-bolt {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  opacity: 0.07;
  pointer-events: none;
}
.cta-bolt svg { display: block; }
.cta-inner { position: relative; z-index: 1; }
.cta-final h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}
.cta-final p { color: rgba(255, 255, 255, 0.88); margin: 0 0 28px; max-width: 48ch; margin-inline: auto; }
.cta-final .btn.cta-btn {
  background: #fff;
  color: var(--accent-dark);
  border-color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  font-weight: 700;
}
.cta-final .btn.cta-btn:hover {
  background: var(--bolt);
  color: #fff;
  border-color: var(--bolt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--surface);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); margin: 12px 0 0; }

.contact-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.section-alt .contact-aside { background: var(--bg); }
.contact-aside p { color: var(--muted); margin: 0 0 20px; }
.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.fact-row:last-child { border-bottom: none; }
.fact-row strong { color: var(--text); }
.fact-row span { color: var(--muted); text-align: right; }

footer {
  padding: 40px 0 48px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-tagline { margin: 12px 0 0; color: var(--muted); font-size: 0.9rem; }
.footer-legal { color: var(--muted); font-size: 0.88rem; text-align: right; }
.footer-legal p { margin: 0 0 6px; }
.footer-links { margin: 8px 0 4px; font-size: 0.88rem; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--accent); }

.section-compact { padding: 48px 0; }
.guarantee-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.guarantee-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.92rem;
}
.guarantee-list li::before {
  content: "✓ ";
  color: var(--mint);
  font-weight: 700;
}

.founder-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}
.founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--bolt));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.founder-text { color: var(--muted); margin: 0 0 12px; max-width: 58ch; }
.founder-meta { font-size: 0.88rem; color: var(--accent-dark); margin: 0; font-weight: 600; }

.maintenance-card {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.maintenance-card p { margin: 8px 0 0; color: var(--muted); font-size: 0.9rem; }
.scope-note {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--surface);
  border-left: 4px solid var(--bolt);
  border-radius: 0 10px 10px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-page { background: var(--bg); }
.legal-content { padding: 48px 24px 64px; max-width: 720px; }
.legal-content h1 { margin: 0 0 8px; font-size: 1.75rem; }
.legal-content h2 { margin: 28px 0 10px; font-size: 1.1rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-updated { font-size: 0.88rem; color: var(--muted); margin-bottom: 24px; }
.legal-nav { margin-top: 32px; font-size: 0.9rem; }
.legal-nav a { font-weight: 600; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
}
.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--muted);
}
.legal-table th {
  background: var(--panel);
  color: var(--text);
  font-weight: 600;
}
.legal-footer { padding: 24px; text-align: center; color: var(--muted); font-size: 0.85rem; border-top: 1px solid var(--line); }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 16px;
  background: rgba(5, 8, 18, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-banner-text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.cookie-banner-text a {
  font-weight: 600;
  color: var(--bolt);
}
.cookie-banner-hint {
  width: 100%;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text);
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.cookie-banner-open .whatsapp-float {
  bottom: 88px;
}
@media (max-width: 560px) {
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; text-align: center; }
  body.cookie-banner-open .whatsapp-float { bottom: 120px; }
}

.merci-content {
  padding: 56px 24px 72px;
  max-width: 640px;
  text-align: center;
}
.merci-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), rgba(245, 158, 11, 0.15));
  color: var(--accent);
  display: grid;
  place-items: center;
  border: 2px solid rgba(27, 143, 232, 0.25);
}
.merci-content h1 { margin: 0 0 12px; font-size: 1.85rem; letter-spacing: -0.02em; }
.merci-lead { color: var(--muted); font-size: 1.1rem; margin: 0 0 32px; }
.merci-steps {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 24px;
}
.merci-steps h2 { margin: 0 0 14px; font-size: 1.05rem; }
.merci-steps ol { margin: 0; padding-left: 20px; color: var(--muted); }
.merci-steps li { margin-bottom: 10px; }
.merci-note { font-size: 0.9rem; color: var(--muted); margin: 0 0 28px; }
.hp-field { display: none !important; }

.contact-wa-btn {
  margin-top: 10px;
  border-color: #25d366;
  color: #128c7e;
}
.contact-wa-btn:hover {
  background: rgba(37, 211, 102, 0.08);
  color: #075e54;
}

.contact-whatsapp-hint {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.contact-whatsapp-hint a {
  font-weight: 600;
  color: #128c7e;
}
.contact-whatsapp-hint a:hover { color: #075e54; }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.whatsapp-float:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
  color: #fff;
}
@media (max-width: 560px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .pillars, .agents-grid, .pricing-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
}

@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
  .preview-stats { grid-template-columns: 1fr; }
  .founder-block { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); justify-self: center; }
  .demo-split { grid-template-columns: 1fr; }
  .cta-bolt { right: -40px; opacity: 0.05; }
}