/* V2V Conseil — production landing page styles
   Design system: Arpentia (canvas/paper/ink/lime)
   Single combined stylesheet (tokens + landing) */

/* ===== Fonts ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap");

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/InterVariable.ttf") format("truetype-variations"),
       url("fonts/InterVariable.ttf") format("truetype");
}
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/Inter-Regular.ttf") format("truetype"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/Inter-Medium.ttf") format("truetype"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/Inter-SemiBold.ttf") format("truetype"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/Inter-Bold.ttf") format("truetype"); }
@font-face { font-family: "Instrument Serif"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/InstrumentSerif-Regular.ttf") format("truetype"); }
@font-face { font-family: "Instrument Serif"; font-style: italic; font-weight: 400; font-display: swap; src: url("fonts/InstrumentSerif-Italic.ttf") format("truetype"); }

/* ===== Tokens =========================================================== */
:root {
  --ink-900: #14161a; --ink-800: #20242b; --ink-700: #3a3f47; --ink-600: #5a606a;
  --ink-500: #7a818c; --ink-400: #a6adb7; --ink-300: #cfd3da; --ink-200: #e5e7eb;
  --ink-100: #eef0f3; --ink-50: #f6f7f8;
  --canvas: #f4f4ef; --paper: #ffffff;
  --lime-50: #fbffd8; --lime-100: #f5fcaa; --lime-200: #edf87a; --lime-300: #e4f24e; --lime-400: #d9ea2c; --lime-500: #c3d51e;
  --lime-logo: #a0b820;
  --brick: #c2552a; --forest: #2f5d3a;
  --hairline: rgba(20, 22, 26, 0.06);
  --hairline-strong: rgba(20, 22, 26, 0.12);
  --shadow-card: 0 1px 2px rgba(16, 20, 28, 0.04), 0 1px 0 rgba(16, 20, 28, 0.03);
  --shadow-pop: 0 14px 40px -14px rgba(16, 20, 28, 0.18), 0 2px 6px rgba(16, 20, 28, 0.06);
  --shadow-button-press: inset 0 -2px 0 rgba(0, 0, 0, 0.06);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Instrument Serif", ui-serif, Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

/* ===== Reset & base ==================================================== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ===== Layout primitives =============================================== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; position: relative; }
.section.tight { padding: 56px 0; }
.section.dark { background: var(--ink-900); color: rgba(255,255,255,0.92); }
.section.dark .h2, .section.dark .h3, .section.dark .h4 { color: white; }

.eyebrow { font-size: 11px; letter-spacing: 0.14em; font-weight: 500; text-transform: uppercase; color: var(--ink-500); display: block; }
.h0 { font-size: clamp(48px, 6vw, 80px); font-weight: 600; letter-spacing: -0.025em; line-height: 0.98; color: var(--ink-900); text-wrap: balance; margin: 0; }
.h1 { font-size: clamp(40px, 5vw, 60px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.04; color: var(--ink-900); text-wrap: balance; margin: 0; }
.h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; color: var(--ink-900); text-wrap: balance; margin: 0; }
.h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; color: var(--ink-900); margin: 0; }
.h4 { font-size: 16px; font-weight: 600; color: var(--ink-900); margin: 0; }
.p { font-size: 15px; line-height: 1.6; color: var(--ink-700); margin: 0; }
.lead { font-size: 17.5px; line-height: 1.55; color: var(--ink-700); margin: 0; }
.small { font-size: 12.5px; line-height: 1.5; color: var(--ink-500); }
.code { font-family: var(--font-mono); font-size: 12px; }
.muted { color: var(--ink-500); }
.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--ink-900); letter-spacing: 0; }

.text-center { text-align: center; }
.tabular { font-variant-numeric: tabular-nums; }

.mt-1{margin-top:4px} .mt-2{margin-top:8px} .mt-3{margin-top:12px} .mt-4{margin-top:16px} .mt-5{margin-top:20px} .mt-6{margin-top:24px} .mt-8{margin-top:32px} .mt-10{margin-top:40px} .mt-12{margin-top:48px} .mt-16{margin-top:64px}
.mb-2{margin-bottom:8px} .mb-3{margin-bottom:12px} .mb-4{margin-bottom:16px} .mb-6{margin-bottom:24px} .mb-8{margin-bottom:32px} .mb-12{margin-bottom:48px}
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.full { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== Pill ============================================================ */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font: 500 11.5px var(--font-sans); white-space: nowrap; }
.pill.lime { background: var(--lime-200); color: var(--ink-900); }
.pill.ink { background: var(--ink-100); color: var(--ink-700); }
.pill.soft { background: var(--paper); color: var(--ink-700); box-shadow: inset 0 0 0 1px var(--hairline); }
.pill.dark { background: var(--ink-900); color: white; }

/* ===== Button ========================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 999px; cursor: pointer; font-family: var(--font-sans); font-weight: 500; transition: background-color .15s ease, box-shadow .15s ease, transform .05s ease; text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-sm { height: 32px; padding: 0 14px; font-size: 12.5px; }
.btn-md { height: 40px; padding: 0 18px; font-size: 13.5px; }
.btn-lg { height: 50px; padding: 0 24px; font-size: 14.5px; }
.btn-primary { background: var(--lime-400); color: var(--ink-900); box-shadow: var(--shadow-button-press); }
.btn-primary:hover { background: var(--lime-300); }
.btn-dark { background: var(--ink-900); color: white; }
.btn-dark:hover { background: var(--ink-800); }
.btn-soft { background: var(--paper); color: var(--ink-900); box-shadow: inset 0 0 0 1px var(--hairline); }
.btn-soft:hover { background: var(--ink-50); }
.btn-outline { background: transparent; color: var(--ink-900); box-shadow: inset 0 0 0 1px var(--hairline-strong); }
.btn-outline:hover { background: var(--ink-50); }
.btn-ghost { background: transparent; color: var(--ink-700); }
.btn-ghost:hover { background: var(--ink-100); color: var(--ink-900); }

/* ===== Header ========================================================== */
.header { position: sticky; top: 0; z-index: 50; background: rgba(244,244,239,0.85); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); box-shadow: inset 0 -1px 0 var(--hairline); }
.header-inner { max-width: 1180px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 16px; }
.header-logo { display: flex; align-items: center; gap: 8px; padding: 4px 0; text-decoration: none; }
.header-logo img { height: 52px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 4px; margin-left: 28px; }
.header-nav a { padding: 6px 12px; font: 500 13px var(--font-sans); color: var(--ink-700); border-radius: 999px; text-decoration: none; }
.header-nav a:hover { background: var(--ink-100); color: var(--ink-900); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }

/* ===== Hero ============================================================ */
.hero { padding: 72px 0 56px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -10% -5% auto -5%; height: 90%; background: radial-gradient(50% 60% at 80% 25%, rgba(217,234,44,0.32), rgba(244,244,239,0)); pointer-events: none; z-index: 0; }
.hero-grid { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 56px; }
.hero-h1 { font-size: clamp(44px, 5.4vw, 68px); font-weight: 600; letter-spacing: -0.022em; line-height: 1.0; color: var(--ink-900); margin: 18px 0 0; text-wrap: balance; }
.hero-lead { font-size: 17.5px; line-height: 1.55; color: var(--ink-700); max-width: 820px; margin: 22px 0 28px; }
.hero-lead strong { color: var(--ink-900); font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; font: 500 12.5px var(--font-sans); color: var(--ink-600); }
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ===== Hero persona selector ========================================== */
.persona { position: relative; width: 100%; display: flex; flex-direction: column; gap: 20px; }
.persona-prompt { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.persona-q { font: 600 clamp(22px, 2.4vw, 28px) var(--font-sans); letter-spacing: -0.015em; line-height: 1.2; color: var(--ink-900); margin: 6px 0 0; }
.persona-sub { font: 14px/1.5 var(--font-sans); color: var(--ink-600); margin: 0; max-width: 640px; }

.persona-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.persona-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 0; border-radius: 999px; background: var(--paper); color: var(--ink-700); box-shadow: inset 0 0 0 1px var(--hairline-strong); font: 500 13px var(--font-sans); cursor: pointer; transition: background-color .15s ease, box-shadow .15s ease, color .15s ease, transform .05s ease; text-align: left; }
.persona-chip svg { color: var(--ink-500); flex: 0 0 16px; transition: color .15s ease; }
.persona-chip:hover { background: var(--ink-50); color: var(--ink-900); box-shadow: inset 0 0 0 1px var(--ink-300); }
.persona-chip:hover svg { color: var(--ink-700); }
.persona-chip.is-active { background: var(--lime-300); color: var(--ink-900); box-shadow: inset 0 0 0 1px rgba(20,22,26,0.18), 0 4px 14px -6px rgba(20,22,26,0.18); }
.persona-chip.is-active svg { color: var(--ink-900); }
.persona-chip:focus-visible { outline: 2px solid var(--ink-900); outline-offset: 2px; }
.persona-chip:active { transform: translateY(1px); }

.persona-stage { position: relative; min-height: 420px; }
.persona-scene { position: relative; background: var(--paper); border-radius: 18px; box-shadow: inset 0 0 0 1px var(--hairline), var(--shadow-pop); padding: 24px 26px; display: flex; flex-direction: column; gap: 16px; animation: scene-in .28s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.persona-scene[hidden] { display: none; }
.persona-scene.scene-dark { background: var(--ink-900); color: rgba(255,255,255,0.92); box-shadow: var(--shadow-pop); }
.persona-scene.scene-dark .scene-cta-msg { color: rgba(255,255,255,0.78); }
.persona-scene.scene-dark .scene-cta-msg strong { color: white; }
.persona-scene.scene-dark .btn-soft { background: rgba(255,255,255,0.06); color: white; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18); }
.persona-scene.scene-dark .btn-soft:hover { background: rgba(255,255,255,0.10); }
.persona-scene.scene-dark .scene-note { color: rgba(255,255,255,0.55); }

@keyframes scene-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .persona-scene { animation: none; } }

.scene-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.scene-head-toggle-only { justify-content: flex-end; }
.scene-body { flex: 1; display: flex; flex-direction: column; gap: 14px; justify-content: center; min-height: 220px; }
.scene-note { font: 500 12.5px var(--font-mono); color: var(--ink-500); margin: 0; }
.persona-scene.scene-dark .pill.dark { background: rgba(255,255,255,0.08); color: white; }

.scene-cta { display: flex; flex-direction: column; gap: 10px; padding-top: 14px; border-top: 1px dashed var(--hairline-strong); }
.persona-scene.scene-dark .scene-cta { border-top-color: rgba(255,255,255,0.12); }
.scene-cta-msg { font: 13.5px/1.5 var(--font-sans); color: var(--ink-700); margin: 0; }
.scene-cta-msg strong { color: var(--ink-900); font-weight: 600; }
.scene-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Default scene — segmented toggle Chiffres / Récit */
.scene-toggle { display: inline-flex; padding: 3px; background: var(--ink-100); border-radius: 999px; gap: 2px; box-shadow: inset 0 0 0 1px var(--hairline); }
.scene-toggle-btn { border: 0; background: transparent; padding: 6px 14px; font: 500 12.5px var(--font-sans); color: var(--ink-600); border-radius: 999px; cursor: pointer; transition: background-color .18s ease, color .18s ease, box-shadow .18s ease; }
.scene-toggle-btn:hover { color: var(--ink-900); }
.scene-toggle-btn.is-active { background: var(--paper); color: var(--ink-900); box-shadow: 0 1px 2px rgba(16,20,28,0.08), inset 0 0 0 1px var(--hairline); }
.scene-toggle-btn:focus-visible { outline: 2px solid var(--ink-900); outline-offset: 2px; }
.scene-mode[hidden] { display: none; }
.scene-mode { animation: scene-in .25s ease-out both; }
@media (prefers-reduced-motion: reduce) { .scene-mode { animation: none; } }

.scene-title { font: 600 clamp(20px, 2vw, 26px) var(--font-sans); letter-spacing: -0.015em; line-height: 1.2; color: var(--ink-900); margin: 0; text-wrap: balance; }
.scene-lead { font: 14.5px/1.55 var(--font-sans); color: var(--ink-700); margin: 0; max-width: 720px; }

/* Mode Chiffres — 3 stats héros */
.scene-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 4px 0 0; padding: 0; }
.scene-stat { background: var(--canvas); border-radius: 14px; padding: 18px 18px 16px; box-shadow: inset 0 0 0 1px var(--hairline); display: flex; flex-direction: column; gap: 6px; position: relative; overflow: hidden; }
.scene-stat::before { content: ""; position: absolute; top: 0; left: 0; width: 36px; height: 3px; background: var(--lime-400); border-radius: 0 0 3px 0; }
.scene-stat-val { font: 600 clamp(38px, 4.6vw, 56px) var(--font-sans); letter-spacing: -0.025em; line-height: 1; color: var(--ink-900); margin: 0; }
.scene-stat-val .unit { font-weight: 500; font-size: 0.55em; color: var(--ink-600); margin-left: 2px; letter-spacing: 0; }
.scene-stat-label { font: 500 12.5px var(--font-sans); color: var(--ink-800); margin: 0; }
.scene-stat-meta { font: 11px var(--font-mono); color: var(--ink-500); margin: 0; letter-spacing: 0.02em; }
.scene-preview-hint { font: 500 12px var(--font-mono); color: var(--ink-500); margin: 4px 0 0; letter-spacing: 0.02em; }

/* Mode Récit — 3 vignettes narratives */
.scene-vignettes { list-style: none; padding: 0; margin: 4px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; counter-reset: vignette; }
.scene-vignette { background: var(--canvas); border-radius: 14px; padding: 16px 18px; box-shadow: inset 0 0 0 1px var(--hairline); position: relative; display: flex; flex-direction: column; gap: 8px; }
.scene-vignette::before { content: ""; position: absolute; top: 16px; left: -1px; width: 3px; height: 28px; background: var(--lime-400); border-radius: 0 3px 3px 0; }
.scene-vignette-time { font: 500 11px var(--font-mono); letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-500); padding-left: 6px; }
.scene-vignette p { font: 14px/1.5 var(--font-sans); color: var(--ink-800); margin: 0; padding-left: 6px; text-wrap: pretty; }
.scene-signature { font: 500 14px/1.5 var(--font-sans); color: var(--ink-700); margin: 4px 0 0; text-align: right; }
.scene-signature em { font-family: var(--font-serif); font-style: italic; color: var(--ink-900); font-size: 17px; letter-spacing: 0; }

/* Scene illustration (raster image with WebP + retina) — Documents flow */
.scene-illustration { width: 100%; display: flex; justify-content: center; align-items: center; padding: 4px 0; }
.scene-illustration img { width: 100%; max-width: 760px; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: contain; }
@media (max-width: 720px) {
  .scene-illustration img { aspect-ratio: 1 / 1; max-width: 380px; }
}

/* Dashboard tile */
.bento-kpis { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 10px; flex: 1; }
.bento-kpi { background: var(--canvas); border-radius: 10px; padding: 10px 12px; box-shadow: inset 0 0 0 1px var(--hairline); display: flex; flex-direction: column; gap: 2px; }
.bento-kpi-label { font: 500 10px var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-500); }
.bento-kpi-val { font: 600 28px var(--font-sans); letter-spacing: -0.02em; color: var(--ink-900); line-height: 1; }
.bento-kpi-val .unit { font-weight: 500; font-size: 16px; color: var(--ink-600); margin-left: 1px; }
.bento-kpi-spark { font: 500 11px var(--font-mono); color: var(--ink-600); margin-top: auto; }

/* Conversation tile (dark) */
.bento-chat { display: flex; flex-direction: column; gap: 6px; flex: 1; justify-content: center; padding: 4px 0; }
.bento-bubble { font: 12.5px/1.45 var(--font-sans); padding: 8px 11px; border-radius: 12px; max-width: 88%; }
.bento-bubble.bot { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.92); align-self: flex-start; border-bottom-left-radius: 3px; }
.bento-bubble.user { background: var(--lime-300); color: var(--ink-900); align-self: flex-end; border-bottom-right-radius: 3px; }

/* Avant / Après split */
.bento-split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; }
.bento-col { background: var(--canvas); border-radius: 10px; padding: 10px 12px; box-shadow: inset 0 0 0 1px var(--hairline); }
.bento-col-after { background: var(--lime-100); box-shadow: inset 0 0 0 1px rgba(20,22,26,0.10); }
.bento-col-label { font: 500 10px var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 6px; }
.bento-col-after .bento-col-label { color: var(--ink-700); }
.bento-col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 3px; font: 12.5px/1.4 var(--font-sans); color: var(--ink-800); }
.bento-col li em { font-family: var(--font-serif); font-style: italic; color: var(--ink-600); }
.bento-col-after li em { color: var(--ink-700); }

/* Timeline (Une journée) */
.bento-timeline { position: relative; height: 78px; flex: 1; padding: 8px 6px 0; }
.bento-tline-axis { position: absolute; left: 6%; right: 6%; top: 50%; height: 2px; background: var(--ink-200); border-radius: 2px; }
.bento-tline-axis::before, .bento-tline-axis::after { content: ""; position: absolute; top: -3px; width: 8px; height: 8px; border-radius: 999px; background: var(--ink-300); }
.bento-tline-axis::before { left: -6px; }
.bento-tline-axis::after { right: -6px; background: var(--lime-400); box-shadow: 0 0 0 4px rgba(217,234,44,0.20); }
.bento-tline-event { position: absolute; top: 6px; transform: translateX(-50%); text-align: center; }
.bento-tline-event::after { content: ""; display: block; margin: 4px auto 0; width: 9px; height: 9px; border-radius: 999px; background: var(--lime-400); box-shadow: 0 0 0 3px rgba(217,234,44,0.22); }
.bento-tline-h { font: 600 11px var(--font-mono); color: var(--ink-900); }
.bento-tline-l { font: 500 10.5px var(--font-sans); color: var(--ink-600); margin-top: 12px; white-space: nowrap; }

/* Documents entrants */
.bento-docs-flow { display: flex; flex-direction: column; gap: 6px; flex: 1; justify-content: center; align-items: center; padding: 4px 0; }
.bento-docs-row { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.bento-docs-chip { font: 500 11.5px var(--font-mono); padding: 5px 10px; border-radius: 999px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--hairline-strong); color: var(--ink-700); white-space: nowrap; }
.bento-docs-chip.lime { background: var(--lime-300); color: var(--ink-900); box-shadow: inset 0 0 0 1px rgba(20,22,26,0.14); }
.bento-docs-arrow { font: 600 18px var(--font-mono); color: var(--ink-400); line-height: 1; }

/* Process avant/après */
.bento-proc-row { display: flex; align-items: center; gap: 14px; padding: 6px 0; }
.bento-proc-row + .bento-proc-row { border-top: 1px dashed var(--hairline-strong); margin-top: 4px; padding-top: 10px; }
.bento-proc-label { flex: 0 0 200px; font: 500 11px var(--font-mono); color: var(--ink-500); letter-spacing: 0.04em; text-transform: uppercase; }
.bento-proc-row-after .bento-proc-label { color: var(--ink-900); }
.bento-proc-steps { display: flex; gap: 6px; flex-wrap: wrap; }
.bento-proc-steps span { font: 500 12.5px var(--font-sans); padding: 5px 10px; border-radius: 8px; background: var(--canvas); color: var(--ink-700); box-shadow: inset 0 0 0 1px var(--hairline); }
.bento-proc-row-after .bento-proc-steps span { background: var(--lime-200); color: var(--ink-900); box-shadow: inset 0 0 0 1px rgba(20,22,26,0.10); }

/* ===== Logos band ====================================================== */
.logos-band { padding: 40px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 64px; flex-wrap: wrap; color: var(--ink-400); }
.logos-row img { height: 36px; width: auto; opacity: 0.75; transition: opacity 0.2s ease; }
.logos-row img:hover { opacity: 1; }

/* ===== Why Now ========================================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { padding: 28px; background: var(--paper); border-radius: 14px; box-shadow: inset 0 0 0 1px var(--hairline); }
.why-stat { font: 600 44px var(--font-sans); letter-spacing: -0.025em; line-height: 1; color: var(--ink-900); font-variant-numeric: tabular-nums; margin-bottom: 8px; }
.why-stat .unit { font: 500 18px var(--font-sans); color: var(--ink-500); }

/* ===== Doors =========================================================== */
.doors-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; align-items: stretch; }
.door { padding: 36px; border-radius: 18px; display: flex; flex-direction: column; }
.door.primary { background: var(--ink-900); color: white; box-shadow: var(--shadow-pop); position: relative; }
.door.primary .h2 { color: white; }
.door.primary .p { color: rgba(255,255,255,0.74); }
.door.primary .pill.lime { background: var(--lime-400); color: var(--ink-900); }
.door.secondary { background: var(--paper); box-shadow: inset 0 0 0 1px var(--hairline); }
.door-price { font: 600 56px/1 var(--font-sans); letter-spacing: -0.025em; font-variant-numeric: tabular-nums; margin: 16px 0 4px; }
.door-price .unit { font: 500 16px var(--font-sans); color: var(--ink-500); margin-left: 4px; }
.door.primary .door-price .unit { color: rgba(255,255,255,0.55); }
.door-bullets { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.door-bullets li { display: flex; gap: 10px; align-items: flex-start; font: 14.5px/1.5 var(--font-sans); color: var(--ink-700); }
.door.primary .door-bullets li { color: rgba(255,255,255,0.78); }
.door-bullets li::before { content: "✓"; flex: 0 0 auto; color: var(--ink-900); font-weight: 600; line-height: 1.5; }
.door.primary .door-bullets li::before { color: var(--lime-400); }
.door-foot { margin-top: auto; }
.door-mini-list { list-style: none; padding: 0; margin: 16px 0 24px; display: flex; flex-direction: column; gap: 8px; }
.door-mini-list li { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed var(--hairline); font: 14px var(--font-sans); color: var(--ink-700); }
.door-mini-list li:last-child { border-bottom: 0; }
.door-mini-list .mini-price { font: 500 12.5px var(--font-mono); color: var(--ink-500); }

/* ===== Services ======================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-card { padding: 24px; background: var(--paper); border-radius: 14px; box-shadow: inset 0 0 0 1px var(--hairline); display: flex; flex-direction: column; gap: 14px; transition: box-shadow 0.15s ease; }
.svc-card:hover { box-shadow: inset 0 0 0 1px var(--hairline-strong); }
.svc-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--ink-50); display: grid; place-items: center; color: var(--ink-700); }
.svc-card.featured .svc-icon { background: var(--lime-200); color: var(--ink-900); }
.svc-tagline { color: var(--ink-700); font: 14px/1.5 var(--font-sans); }
.svc-foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--hairline); }
.svc-delay { font: 11.5px var(--font-mono); color: var(--ink-500); }

/* ===== Process ========================================================= */
.process-card { padding: 0 !important; border-radius: 18px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--hairline), var(--shadow-card); }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-step { padding: 24px 22px 22px; border-right: 1px dashed var(--hairline); position: relative; }
.process-step:last-child { border-right: 0; }
.process-num { font: 500 11px var(--font-mono); color: var(--ink-500); letter-spacing: 0.08em; }
.process-title { font: 600 17px/1.3 var(--font-sans); color: var(--ink-900); margin: 8px 0; }
.process-desc { font: 13.5px/1.5 var(--font-sans); color: var(--ink-700); }
.process-meta { font: 500 11.5px var(--font-mono); color: var(--ink-500); margin-top: 14px; }

/* ===== Pricing tiers =================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.tier { padding: 28px; border-radius: 16px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--hairline); display: flex; flex-direction: column; }
.tier.featured { box-shadow: inset 0 0 0 1.5px var(--ink-900), var(--shadow-pop); transform: translateY(-4px); }
.tier-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.tier-name { font: 600 18px var(--font-sans); color: var(--ink-900); }
.tier-tagline { font: 14px var(--font-sans); color: var(--ink-600); margin-bottom: 18px; }
.tier-price { font: 600 44px/1 var(--font-sans); letter-spacing: -0.022em; color: var(--ink-900); font-variant-numeric: tabular-nums; display: flex; align-items: baseline; gap: 4px; }
.tier-price .unit { font: 500 14px var(--font-sans); color: var(--ink-500); }
.tier-bullets { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier-bullets li { display: flex; gap: 10px; align-items: flex-start; font: 13.5px/1.5 var(--font-sans); color: var(--ink-700); }
.tier-bullets li::before { content: "✓"; flex: 0 0 auto; color: var(--ink-900); font-weight: 600; line-height: 1.5; }
.pricing-foot { text-align: center; margin-top: 24px; font: 13px var(--font-sans); color: var(--ink-500); }

/* ===== About =========================================================== */
.about-grid { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.about-photo { width: 240px; height: 240px; border-radius: 999px; background: var(--ink-50); box-shadow: inset 0 0 0 1px var(--hairline-strong), 0 12px 32px rgba(20,22,26,0.12); overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }

/* ===== Sectors ========================================================= */
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sector { padding: 20px; background: var(--paper); border-radius: 12px; box-shadow: inset 0 0 0 1px var(--hairline); display: flex; align-items: center; gap: 14px; }
.sector-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--ink-50); display: grid; place-items: center; color: var(--ink-700); flex: 0 0 32px; }
.sector-name { font: 500 14px var(--font-sans); color: var(--ink-900); }

/* ===== Form ============================================================ */
.form { background: var(--paper); border-radius: 18px; box-shadow: inset 0 0 0 1px var(--hairline), var(--shadow-card); padding: 40px; max-width: 760px; margin: 0 auto; }
.form-row { display: grid; gap: 20px; margin-bottom: 22px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font: 500 12px var(--font-sans); color: var(--ink-700); letter-spacing: 0.01em; }
.field-label .req { color: var(--brick); margin-left: 2px; }
.field-input, .field-select, .field-textarea { background: var(--canvas); border: 0; border-radius: 10px; box-shadow: inset 0 0 0 1px var(--hairline); padding: 12px 14px; font: 14px var(--font-sans); color: var(--ink-900); outline: 0; transition: box-shadow 0.15s ease, background 0.15s ease; width: 100%; }
.field-input:hover, .field-select:hover, .field-textarea:hover { box-shadow: inset 0 0 0 1px var(--hairline-strong); }
.field-input:focus, .field-select:focus, .field-textarea:focus { background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--ink-900); }
.field-input::placeholder, .field-textarea::placeholder { color: var(--ink-400); }
.field-textarea { resize: vertical; min-height: 100px; font-family: var(--font-sans); }
.field-help { font: 11.5px var(--font-mono); color: var(--ink-500); margin-top: 4px; }
.field-checks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.field-check { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--canvas); border-radius: 999px; box-shadow: inset 0 0 0 1px var(--hairline); cursor: pointer; font: 500 12.5px var(--font-sans); color: var(--ink-700); transition: all 0.15s ease; user-select: none; }
.field-check:hover { box-shadow: inset 0 0 0 1px var(--hairline-strong); }
.field-check input { display: none; }
.field-check.checked { background: var(--ink-900); color: white; box-shadow: inset 0 0 0 1px var(--ink-900); }
.field-radios { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.field-radio { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--canvas); border-radius: 10px; box-shadow: inset 0 0 0 1px var(--hairline); cursor: pointer; font: 14px var(--font-sans); color: var(--ink-700); transition: all 0.15s ease; }
.field-radio:hover { box-shadow: inset 0 0 0 1px var(--hairline-strong); }
.field-radio input { display: none; }
.radio-dot { width: 14px; height: 14px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px var(--ink-300); flex: 0 0 14px; transition: all 0.15s ease; }
.field-radio.checked { background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--ink-900); color: var(--ink-900); }
.field-radio.checked .radio-dot { background: var(--ink-900); box-shadow: inset 0 0 0 4px var(--paper), inset 0 0 0 5px var(--ink-900); }
.form-success { padding: 56px 32px; text-align: center; }
.form-success .check-circle { width: 72px; height: 72px; border-radius: 999px; background: var(--lime-200); margin: 0 auto 24px; display: grid; place-items: center; color: var(--ink-900); }

/* Form wizard */
.form-wizard { padding-top: 32px; }
.form-wizard.shake { animation: form-shake 0.4s cubic-bezier(.36,.07,.19,.97); }
@keyframes form-shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}
.wiz-progress { margin-bottom: 32px; }
.wiz-steps { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 14px; }
.wiz-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; min-width: 0; background: transparent; border: 0; padding: 4px 2px; cursor: pointer; font-family: var(--font-sans); }
.wiz-step:disabled { cursor: not-allowed; }
.wiz-step-dot { width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; background: var(--canvas); box-shadow: inset 0 0 0 1px var(--hairline); color: var(--ink-500); font: 600 12px var(--font-mono); transition: all 0.2s ease; }
.wiz-step-label { font: 500 11.5px var(--font-sans); color: var(--ink-500); letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; transition: color 0.15s ease; }
.wiz-step.done .wiz-step-dot { background: var(--ink-900); color: var(--paper); box-shadow: inset 0 0 0 1px var(--ink-900); }
.wiz-step.done .wiz-step-label { color: var(--ink-700); }
.wiz-step.current .wiz-step-dot { background: var(--paper); color: var(--ink-900); box-shadow: inset 0 0 0 1.5px var(--ink-900), 0 0 0 4px rgba(20,22,26,0.06); }
.wiz-step.current .wiz-step-label { color: var(--ink-900); font-weight: 600; }
.wiz-bar { height: 3px; background: var(--ink-100); border-radius: 999px; overflow: hidden; }
.wiz-bar-fill { height: 100%; background: var(--ink-900); border-radius: 999px; transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.wiz-head { margin-bottom: 28px; }
.wiz-body { animation: wiz-slide 0.28s cubic-bezier(0.22, 1, 0.36, 1); }
.wiz-pane { display: none; }
.wiz-pane.active { display: block; }
@keyframes wiz-slide {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}
.wiz-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 28px; margin-top: 12px; border-top: 1px solid var(--hairline); flex-wrap: wrap; }
.wiz-foot-note { flex: 1; min-width: 200px; text-align: center; color: var(--ink-500); }
.wiz-foot .btn-ghost { background: transparent; color: var(--ink-700); height: 44px; padding: 0 18px; }
.wiz-foot .btn-ghost:hover:not(:disabled) { background: var(--ink-100); color: var(--ink-900); }
.wiz-foot .btn-ghost:disabled { opacity: 0.35; }
.wiz-divider { display: flex; align-items: center; gap: 14px; margin: 28px 0 22px; color: var(--ink-500); font: 500 11px var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; }
.wiz-divider::before, .wiz-divider::after { content: ""; flex: 1; height: 1px; background: var(--hairline); }

.subj-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 6px; }
.subj-card { position: relative; display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--canvas); border-radius: 12px; box-shadow: inset 0 0 0 1px var(--hairline); cursor: pointer; transition: all 0.15s ease; }
.subj-card:hover { box-shadow: inset 0 0 0 1px var(--hairline-strong); background: var(--paper); }
.subj-card input { position: absolute; opacity: 0; pointer-events: none; }
.subj-card-tick { width: 18px; height: 18px; border-radius: 6px; background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--ink-300); display: grid; place-items: center; color: transparent; flex: 0 0 18px; margin-top: 2px; transition: all 0.15s ease; }
.subj-card.checked { background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--ink-900); }
.subj-card.checked .subj-card-tick { background: var(--ink-900); box-shadow: inset 0 0 0 1.5px var(--ink-900); color: var(--paper); }
.subj-card-body { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.subj-card-title { font: 600 14px var(--font-sans); color: var(--ink-900); letter-spacing: -0.005em; }
.subj-card-desc { font: 13px/1.45 var(--font-sans); color: var(--ink-600); }

.tier-banner { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--ink-900); color: rgba(255,255,255,0.92); border-radius: 12px; margin-bottom: 22px; transition: box-shadow 0.3s ease; }
.tier-banner.flash { box-shadow: 0 0 0 4px rgba(160,184,32,0.45); animation: tier-flash 1.6s ease; }
@keyframes tier-flash {
  0% { box-shadow: 0 0 0 0 rgba(160,184,32,0.6); }
  40% { box-shadow: 0 0 0 6px rgba(160,184,32,0.45); }
  100% { box-shadow: 0 0 0 0 rgba(160,184,32,0); }
}
.tier-banner-icon { width: 28px; height: 28px; border-radius: 999px; background: var(--lime-200); color: var(--ink-900); display: grid; place-items: center; flex: 0 0 28px; }
.tier-banner-body { flex: 1; min-width: 0; }
.tier-banner-title { font: 500 14px var(--font-sans); }
.tier-banner-title strong { color: var(--lime-200); font-weight: 600; }
.tier-banner-sub { font: 12.5px var(--font-sans); color: rgba(255,255,255,0.55); margin-top: 2px; }
.tier-banner-clear { background: transparent; border: 0; color: rgba(255,255,255,0.55); cursor: pointer; padding: 6px; border-radius: 999px; display: grid; place-items: center; transition: all 0.15s ease; }
.tier-banner-clear:hover { background: rgba(255,255,255,0.08); color: white; }

@media (max-width: 720px) {
  .subj-cards { grid-template-columns: 1fr; }
  .wiz-step-label { display: none; }
}

/* ===== FAQ ============================================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); padding: 0; }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-q { width: 100%; background: transparent; border: 0; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; text-align: left; font: 600 17px var(--font-sans); color: var(--ink-900); }
.faq-q .chev { transition: transform 0.2s ease; color: var(--ink-500); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--ink-900); }
.faq-a { font: 15px/1.6 var(--font-sans); color: var(--ink-700); padding: 0 0 22px; max-width: 720px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ===== Footer ========================================================== */
.footer { background: var(--ink-900); color: rgba(255,255,255,0.72); padding: 64px 0 48px; }
.footer .h3, .footer .h4 { color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-link { color: rgba(255,255,255,0.6); font: 13.5px var(--font-sans); text-decoration: none; display: block; padding: 4px 0; }
.footer-link:hover { color: white; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font: 12.5px var(--font-mono); color: rgba(255,255,255,0.45); }

/* ===== Chatbot ========================================================= */
.cbt-toggle { position: fixed; right: 24px; bottom: 24px; z-index: 90; height: 56px; min-width: 56px; padding: 0 22px 0 18px; border-radius: 999px; background: var(--ink-900); color: white; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 12px; box-shadow: 0 12px 28px rgba(20,22,26,0.22), inset 0 0 0 1px rgba(255,255,255,0.08); transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease; font-family: var(--font-sans); }
.cbt-toggle:hover { background: var(--ink-800); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(20,22,26,0.28), inset 0 0 0 1px rgba(255,255,255,0.08); }
.cbt-toggle.open { background: var(--lime-400); color: var(--ink-900); width: 56px; min-width: 56px; padding: 0; justify-content: center; }
.cbt-toggle-icon { position: relative; display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; }
.cbt-toggle-label { font: 600 14.5px var(--font-sans); letter-spacing: -0.005em; }
.cbt-toggle-pulse { position: absolute; top: -3px; right: -3px; width: 10px; height: 10px; border-radius: 999px; background: var(--lime-400); box-shadow: 0 0 0 2px var(--ink-900); }
.cbt-toggle-pulse::after { content: ""; position: absolute; inset: 0; border-radius: 999px; background: var(--lime-400); animation: cbt-pulse 2s ease-out infinite; }
@keyframes cbt-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  80%, 100% { transform: scale(2.4); opacity: 0; }
}
.cbt-peek { position: fixed; right: 24px; bottom: 96px; z-index: 85; width: 300px; padding: 16px 18px 18px; background: var(--paper); border-radius: 16px; box-shadow: 0 18px 40px rgba(20,22,26,0.18), inset 0 0 0 1px var(--hairline); display: flex; flex-direction: column; gap: 12px; transform-origin: bottom right; animation: cbt-peek-in 0.32s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes cbt-peek-in {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cbt-peek-close { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; border-radius: 999px; background: transparent; border: 0; color: var(--ink-500); cursor: pointer; display: grid; place-items: center; transition: all 0.15s ease; }
.cbt-peek-close:hover { background: var(--ink-100); color: var(--ink-900); }
.cbt-peek-row { display: flex; align-items: center; gap: 10px; }
.cbt-peek-avatar { width: 28px; height: 28px; border-radius: 999px; background: var(--ink-900); color: var(--lime-400); display: grid; place-items: center; flex: 0 0 28px; }
.cbt-peek-name { font: 600 13px var(--font-sans); color: var(--ink-900); }
.cbt-peek-status { display: inline-flex; align-items: center; gap: 5px; font: 11px var(--font-mono); color: var(--ink-500); margin-top: 1px; }
.cbt-peek-dot { width: 6px; height: 6px; border-radius: 999px; background: #10B981; }
.cbt-peek-msg { font: 13.5px/1.5 var(--font-sans); color: var(--ink-700); margin: 0; }
.cbt-panel { position: fixed; right: 24px; bottom: 92px; z-index: 80; width: 440px; height: 640px; max-height: calc(100vh - 120px); max-width: calc(100vw - 48px); background: var(--paper); border-radius: 18px; box-shadow: inset 0 0 0 1px var(--hairline), var(--shadow-pop); display: flex; flex-direction: column; overflow: hidden; transform-origin: bottom right; animation: cbt-peek-in 0.28s cubic-bezier(0.22, 1, 0.36, 1); }
.cbt-head { padding: 18px 20px; border-bottom: 1px solid var(--hairline); display: flex; align-items: center; gap: 12px; }
.cbt-avatar { width: 36px; height: 36px; border-radius: 999px; background: var(--ink-900); display: grid; place-items: center; color: var(--lime-400); font: 600 13px var(--font-sans); flex: 0 0 36px; }
.cbt-head-title { font: 600 14px var(--font-sans); color: var(--ink-900); }
.cbt-head-sub { font: 12px var(--font-sans); color: var(--ink-500); }
.cbt-status { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font: 11px var(--font-mono); color: var(--ink-500); }
.cbt-dot { width: 6px; height: 6px; border-radius: 999px; background: #10B981; }
.cbt-body { flex: 1; padding: 16px 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.cbt-msg { max-width: 85%; padding: 12px 14px; border-radius: 14px; font: 13.5px/1.5 var(--font-sans); }
.cbt-msg.bot { background: var(--ink-50); color: var(--ink-800); align-self: flex-start; border-bottom-left-radius: 4px; }
.cbt-msg.user { background: var(--ink-900); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.cbt-msg.typing { color: var(--ink-500); font-style: italic; }
.cbt-quick { display: flex; flex-direction: column; gap: 6px; padding: 4px 20px 12px; }
.cbt-quick button { background: var(--paper); border: 0; box-shadow: inset 0 0 0 1px var(--hairline); border-radius: 999px; padding: 8px 14px; font: 500 12.5px var(--font-sans); color: var(--ink-800); cursor: pointer; text-align: left; transition: box-shadow 0.15s ease, background 0.15s ease; }
.cbt-quick button:hover { background: var(--ink-50); box-shadow: inset 0 0 0 1px var(--hairline-strong); }
/* Dynamic in-conversation chips emitted by the LLM via [OPTIONS: a | b | c] marker.
   Differs from welcome cbt-quick: horizontal flow-wrap, smaller padding, aligned left. */
.cbt-quick-inline { flex-direction: row; flex-wrap: wrap; padding: 0 14px 12px; gap: 6px; align-self: flex-start; max-width: 100%; }
.cbt-quick-inline button { padding: 6px 12px; font-size: 12px; }

/* Booking confirmation card — emitted when LLM outputs [BOOK: slot_iso=… | email=… | name=…].
   Visually distinct from regular bot bubbles (paper bg + accent border) to draw attention. */
.cbt-book-card { margin: 6px 14px 12px; padding: 14px; border-radius: 12px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--hairline-strong); font: 13px/1.5 var(--font-sans); color: var(--ink-800); align-self: stretch; }
.cbt-book-card.cbt-book-ok { box-shadow: inset 0 0 0 1.5px var(--lime, #c5e063); background: color-mix(in srgb, var(--lime, #c5e063) 12%, var(--paper)); }
.cbt-book-card.cbt-book-fail { box-shadow: inset 0 0 0 1.5px #d97a6c; }
.cbt-book-title { font-weight: 600; font-size: 13.5px; margin-bottom: 10px; color: var(--ink-900); }
.cbt-book-row { display: flex; justify-content: space-between; align-items: baseline; padding: 4px 0; gap: 10px; border-bottom: 1px dashed var(--hairline); }
.cbt-book-row:last-of-type { border-bottom: 0; }
.cbt-book-row strong { color: var(--ink-500); font-weight: 500; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em; }
.cbt-book-row span { color: var(--ink-900); font-weight: 500; text-align: right; }
.cbt-book-actions { display: flex; gap: 8px; margin-top: 12px; }
.cbt-book-actions button { flex: 1; padding: 8px 12px; border: 0; border-radius: 999px; font: 600 12.5px var(--font-sans); cursor: pointer; transition: filter 0.15s ease, box-shadow 0.15s ease; }
.cbt-book-actions .cbt-book-confirm { background: var(--ink-900); color: white; }
.cbt-book-actions .cbt-book-confirm:hover:not(:disabled) { filter: brightness(1.1); }
.cbt-book-actions .cbt-book-confirm:disabled { opacity: 0.5; cursor: wait; }
.cbt-book-actions .cbt-book-cancel { background: transparent; color: var(--ink-700); box-shadow: inset 0 0 0 1px var(--hairline-strong); }
.cbt-book-actions .cbt-book-cancel:hover:not(:disabled) { background: var(--ink-50); }
.cbt-book-actions .cbt-book-cancel:disabled { opacity: 0.5; cursor: wait; }
.cbt-book-status { margin-top: 12px; padding-top: 10px; border-top: 1px dashed var(--hairline); font-size: 12.5px; color: var(--ink-700); }
.cbt-foot { padding: 12px 16px 16px; border-top: 1px solid var(--hairline); display: flex; gap: 8px; align-items: center; }
.cbt-input { flex: 1; background: var(--canvas); border: 0; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--hairline); padding: 10px 16px; font: 13.5px var(--font-sans); color: var(--ink-900); outline: 0; }
.cbt-input:focus { box-shadow: inset 0 0 0 1.5px var(--ink-900); background: var(--paper); }
.cbt-send { width: 36px; height: 36px; border-radius: 999px; background: var(--ink-900); color: white; border: 0; cursor: pointer; display: grid; place-items: center; flex: 0 0 36px; }
.cbt-send:hover { background: var(--ink-800); }
.cbt-send:disabled { opacity: 0.4; cursor: not-allowed; }
.cbt-hidden { display: none !important; }

/* ===== Page-enter ====================================================== */
@keyframes pe { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.page-enter { animation: pe 0.4s ease-out both; }

/* ===== Responsive ====================================================== */
@media (max-width: 960px) {
  .hero-grid { gap: 32px; }
  .persona-stage { min-height: 480px; }
  .persona-scene { padding: 20px 18px; border-radius: 14px; }
  .persona-chip { font-size: 12.5px; padding: 8px 12px; }
  .persona-chip svg { flex: 0 0 14px; }
  .scene-head { gap: 8px; }
  .bento-proc-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .bento-proc-label { flex: 0 0 auto; }
  .bento-kpi-val { font-size: 24px; }
  .bento-kpis { grid-template-columns: 1fr 1fr; }
  .scene-cta-btns .btn { flex: 1 1 auto; }
  .scene-stats { grid-template-columns: 1fr; gap: 10px; }
  .scene-stat { padding: 14px 16px 12px; flex-direction: row; align-items: baseline; gap: 12px; flex-wrap: wrap; }
  .scene-stat::before { width: 24px; }
  .scene-stat-val { font-size: 36px; flex: 0 0 auto; }
  .scene-stat-label { flex: 1 1 auto; min-width: 0; }
  .scene-stat-meta { flex: 1 1 100%; }
  .scene-vignettes { grid-template-columns: 1fr; gap: 10px; }
  .scene-head { flex-direction: column; align-items: flex-start; }
  .doors-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: 0; border-bottom: 1px dashed var(--hairline); }
  .pricing-grid { grid-template-columns: 1fr; }
  .tier.featured { transform: none; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-photo { margin: 0; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form { padding: 28px; }
  .form-row.cols-2 { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .cbt-panel { width: calc(100vw - 32px); right: 16px; bottom: 84px; }
  .cbt-toggle { right: 16px; bottom: 16px; }
  .cbt-peek { right: 16px; bottom: 88px; width: calc(100vw - 32px); max-width: 320px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-actions .btn-soft { display: none; }
}
