:root {
  /* Claude Design tokens (source of truth - extracted directly from
     אתר דוגמה/AUTO OFFICE.dc.html). --gold/--gold-dark keep their old names
     to avoid touching ~60 call sites, but now resolve to the design's
     near-black monochrome accent instead of a gold color. --on-dark is new:
     the small set of components that render this accent as foreground text
     on a DARK panel (header, questionnaire sidebar, badges) need a light
     color instead, or they'd render as invisible near-black-on-near-black. */
  --ink: #0b0b0c;
  --muted: #5a5a5e;
  --muted-2: #9a9a9e;
  --paper: #fff;
  --canvas: #f2f0eb;
  --dark: #0b0b0c;
  --dark-2: #1a1a1a;
  --line: #e7e5e0;
  --gold: #0b0b0c;
  --gold-dark: #0b0b0c;
  --on-dark: #fff;
  --green: #1f8a62;
  --red: #c94b48;
  --orange: #d98332;
  --shadow: 0 22px 70px rgba(11, 11, 12, .14);
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); filter: blur(4px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--canvas); font-family: "Assistant", system-ui, -apple-system, sans-serif; line-height: 1.55; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.hidden { display: none !important; }
.skip-link { position: fixed; top: -100px; right: 1rem; z-index: 100; background: white; color: black; padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header { height: 82px; padding: 0 clamp(20px, 5vw, 78px); background: var(--dark); color: white; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.09); }
.brand { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; border: 1px solid var(--on-dark); border-radius: 50%; display: grid; place-items: center; color: var(--on-dark); font-weight: 800; }
.brand b { display: block; letter-spacing: .08em; }
.brand small { display: block; color: #aeb7c1; font-size: .72rem; }
.source-pill { display: none; }
.source-pill.good { border-color: rgba(61,191,139,.55); color: #8ce0bb; }
.header-nav { display: flex; align-items: center; gap: 20px; }
.header-nav a { color: #c7d0d9; text-decoration: none; font-size: .86rem; font-weight: 700; }
.header-nav a:hover, .header-nav a:focus-visible { color: var(--on-dark); }

/* Homepage-only header: logo + hamburger menu + contact link, matching the
   approved reference design - kept distinct from .site-header's full-nav
   pattern used on every other page, not a site-wide change. */
.home-header { position: absolute; top: 0; left: 0; right: 0; z-index: 20; height: auto; min-height: 82px; padding: 28px 48px; align-items: flex-start; background: transparent; border-bottom: none; }
.home-header-start { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.home-header .brand-mark { width: 40px; height: 40px; font-size: .82rem; border-radius: 8px; background: var(--dark); border-color: rgba(255,255,255,.5); }
.home-menu-toggle { position: absolute; opacity: 0; pointer-events: none; }
.home-menu-btn { display: grid; place-items: center; width: 36px; height: 30px; border-radius: 8px; border: none; background: #0b0b0c; color: white; cursor: pointer; }
.home-menu-btn:hover { background: #1a1a1a; }
.header-contact { color: white; text-decoration: none; font-size: .86rem; font-weight: 700; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: .5rem 1.1rem; align-self: flex-start; }
.header-contact:hover, .header-contact:focus-visible { border-color: white; }
.home-menu-backdrop { position: fixed; inset: 0; z-index: 45; background: rgba(0,0,0,.55); opacity: 0; pointer-events: none; transition: opacity .22s ease; }
.home-menu-panel { position: fixed; top: 0; bottom: 0; inset-inline-end: 0; z-index: 46; width: min(78vw, 340px); display: flex; flex-direction: column; gap: 2px; background: var(--dark); padding: 26px 22px; box-shadow: -22px 0 50px rgba(0,0,0,.4); transform: translateX(100%); transition: transform .26s ease; overflow-y: auto; }
[dir="rtl"] .home-menu-panel { transform: translateX(-100%); }
.home-menu-panel-title { color: white; font-weight: 800; letter-spacing: .06em; margin-bottom: 18px; }
.home-menu-panel a { color: #e4e8ec; text-decoration: none; font-size: 1rem; font-weight: 700; padding: 14px 4px; border-top: 1px solid rgba(255,255,255,.12); }
.home-menu-panel a:hover, .home-menu-panel a:focus-visible { color: white; }
.home-menu-toggle:checked ~ .home-menu-backdrop { opacity: 1; pointer-events: auto; }
.home-menu-toggle:checked ~ .home-menu-panel { transform: translateX(0); }
.home-desktop-nav { display: none; }
@media (min-width: 861px) {
  .home-desktop-nav { display: flex; align-items: center; gap: 36px; }
  .home-desktop-nav a { font-size: 15px; font-weight: 500; }
  .home-menu-btn { display: none; }
  .home-header-start { flex-direction: row; }
}
.home-header .header-contact { font-size: 14px; font-weight: 600; padding: 13px 26px; border-color: #fff; }

.view { min-height: calc(100vh - 82px); }
.welcome-view { background: radial-gradient(circle at 18% 12%, rgba(214,171,98,.13), transparent 38%), var(--dark); color: white; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 8vw; align-items: center; padding: clamp(48px, 7vw, 110px) clamp(24px, 8vw, 130px); }
/* Minimal entry screen (post-landing-page), not a second homepage: single
   column, no hero-card/benefit-grid, short copy only. Dark theme with a
   looping background video, matching the approved reference design
   (אתר דוגמה/AUTO OFFICE.dc.html) rather than the site's light canvas. */
.welcome-view--entry { grid-template-columns: 1fr; min-height: calc(100vh - 82px); background: var(--dark); color: white; position: relative; overflow: hidden; display: grid; place-items: center; }
.welcome-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.welcome-bg-dim { position: absolute; inset: 0; background: #000; opacity: .72; z-index: 1; }
.welcome-view--entry .hero-copy { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; text-align: center; }
.welcome-view--entry .eyebrow { color: #c9c7c2; }
.welcome-view--entry h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); color: white; }
.welcome-view--entry > .hero-copy > p { color: rgba(255,255,255,.75); margin: 0 auto 1.8rem; }
.welcome-view--entry .privacy-note { color: rgba(255,255,255,.55) !important; }
.welcome-view--entry .button-ghost { color: white; border-color: rgba(255,255,255,.4); }
@media (prefers-reduced-motion: reduce) {
  .welcome-bg-video { display: none; }
}
.hero-copy { max-width: 760px; }
.eyebrow { color: var(--gold-dark); font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.welcome-view .eyebrow { color: var(--gold); }
h1 { font-size: clamp(2.6rem, 6.3vw, 6.5rem); line-height: .98; margin: .7rem 0 1.4rem; letter-spacing: -.045em; }
h1 span { color: var(--gold); }
.hero-copy > p { max-width: 650px; color: #c7ced5; font-size: clamp(1rem, 1.4vw, 1.22rem); }
.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 1.5rem 0 2.1rem; }
.hero-points li { border: 1px solid #36414d; background: rgba(255,255,255,.025); border-radius: 999px; padding: .45rem .8rem; font-size: .86rem; color: #dce2e8; }
.privacy-note { font-size: .76rem !important; color: #909aa5 !important; }
.hero-card { min-height: 430px; border: 1px solid rgba(214,171,98,.3); border-radius: 28px; padding: 35px; background: linear-gradient(145deg, #1b222a, #11161c); box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: flex-end; gap: 1px; transform: rotate(-1.5deg); }
.score-orbit { flex: 1; display: grid; place-items: center; }
.score-orbit span { width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 3rem; font-weight: 800; box-shadow: 0 0 0 30px rgba(214,171,98,.04), 0 0 0 60px rgba(214,171,98,.02); }
.hero-card-row { display: flex; align-items: baseline; gap: 1rem; padding: 15px 0; border-top: 1px solid #303943; }
.hero-card-row b { color: var(--gold); font-size: 1.5rem; min-width: 80px; }
.hero-card-row span { color: #bec6ce; }
.how-it-works { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.09); padding-top: clamp(30px, 4vw, 52px); }
.section-heading { max-width: 760px; margin-bottom: 22px; }
.section-heading h2 { margin: .3rem 0 .5rem; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.1; }
.section-heading p { color: #aeb7c1; margin: 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.benefit-card { border: 1px solid #313b46; border-radius: 18px; padding: 22px; background: rgba(255,255,255,.025); }
.benefit-card span { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--gold); border: 1px solid var(--gold-dark); font-weight: 900; }
.benefit-card h3 { margin: 15px 0 6px; }
.benefit-card p { margin: 0; color: #aeb7c1; font-size: .9rem; }

.button { border: 1px solid transparent; border-radius: 999px; padding: .75rem 1.25rem; font-weight: 800; transition: transform .15s, background .15s, opacity .15s; }
.button:hover { transform: translateY(-1px); }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.button-primary { background: var(--gold); color: #fff; }
.button-primary:hover { background: #2a2a2c; }
.button-ghost { color: inherit; background: transparent; border-color: #9da5ad; }
.welcome-view .button-ghost { color: white; margin-inline-start: .5rem; }
.button-large { padding: 1rem 2rem; font-size: 1.05rem; }

.questionnaire-shell { display: grid; grid-template-columns: 310px minmax(0, 780px); gap: clamp(30px, 6vw, 90px); justify-content: center; align-items: start; padding: clamp(38px, 6vw, 80px) 24px; }
.steps-panel { position: sticky; top: 28px; background: var(--dark); color: white; border-radius: 22px; padding: 24px; box-shadow: var(--shadow); }
.steps-heading { display: flex; justify-content: space-between; }
.steps-heading b { color: var(--on-dark); }
.progress-track { height: 6px; border-radius: 999px; overflow: hidden; background: #343d47; margin: 14px 0 24px; }
.progress-track span { display: block; height: 100%; width: 0; background: var(--on-dark); transition: width .3s; }
.sections-list { list-style: none; padding: 0; margin: 0; }
.sections-list li { display: grid; grid-template-columns: 30px 1fr; gap: 9px; align-items: center; color: #8995a0; padding: 11px 0; }
.sections-list .step-number { width: 27px; height: 27px; border: 1px solid #48535f; border-radius: 50%; display: grid; place-items: center; font-size: .75rem; }
.sections-list li.active { color: white; font-weight: 700; }
.sections-list li.active .step-number { border-color: var(--on-dark); color: var(--on-dark); }
.sections-list li.done { color: #8ce0bb; }
.sections-list li.done .step-number { background: var(--green); border-color: var(--green); color: white; }
.trust-box { margin-top: 25px; border-top: 1px solid #343d47; padding-top: 20px; }
.trust-box b, .trust-box span { display: block; }
.trust-box span { color: #aeb7c1; font-size: .78rem; margin-top: 5px; }

.question-card { background: var(--paper); border-radius: 26px; padding: clamp(28px, 5vw, 60px); min-height: 620px; box-shadow: var(--shadow); }
.question-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: .82rem; }
.question-card h2 { font-size: clamp(1.8rem, 4vw, 3.1rem); line-height: 1.15; margin: 20px 0 9px; letter-spacing: -.025em; }
.question-help { color: var(--muted); margin: 0; }
.question-why { display: inline-block; margin: 14px 0 30px; padding: .45rem .7rem; background: #f4f0e8; color: #725d39; border-radius: 8px; font-size: .8rem; }
.question-why:before { content: "למה אנחנו שואלים? "; font-weight: 800; }
.form-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 32px; }
.form-actions .button-primary { min-width: 190px; }
.form-error { color: #972f2c; background: #fff0ee; border: 1px solid #f1c1be; border-radius: 10px; padding: .8rem 1rem; margin-top: 16px; font-weight: 700; }

.field, .field-group { margin: 0 0 14px; }
.field label, .field-group > label { display: block; font-weight: 800; margin-bottom: 7px; }
.input { width: 100%; min-height: 58px; border: 1.5px solid #cbd1d6; border-radius: 12px; padding: .85rem 1rem; background: white; color: var(--ink); outline: none; }
.input:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(214,171,98,.16); }
.input-hint { color: var(--muted); font-size: .75rem; margin-top: .35rem; }
.city-field { position: relative; }
.city-suggestions { position: absolute; z-index: 20; top: calc(100% + 4px); right: 0; left: 0; margin: 0; padding: 6px; list-style: none; background: white; border: 1.5px solid #d2d7dc; border-radius: 12px; box-shadow: 0 12px 28px rgba(11,11,12,.14); max-height: 240px; overflow-y: auto; }
.city-suggestions li { padding: .6rem .7rem; border-radius: 8px; cursor: pointer; }
.city-suggestions li:hover { background: #f2f0eb; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.choice { min-height: 64px; border: 1.5px solid #d2d7dc; border-radius: 13px; display: flex; align-items: center; gap: 10px; padding: .75rem .9rem; cursor: pointer; background: white; }
.choice:hover { border-color: #9ca6af; }
.choice input { accent-color: var(--gold-dark); width: 19px; height: 19px; }
.choice:has(input:checked) { border-color: var(--gold-dark); background: #fbf7ef; box-shadow: inset 0 0 0 1px var(--gold-dark); }
.choice-wide { grid-column: 1 / -1; }

/* Approved questionnaire design (dark theme) - scoped to #questionnaire-view only,
   never leaks into .welcome-view or any other page. Tokens extracted directly from
   the approved reference: אתר דוגמה/AUTO OFFICE AI.dc.html (dist/ai-analysis.html).
   One continuous panel (badge/icon/dots flow straight into the question/intro
   content, no separate boxed sub-cards) - matches the reference 1:1. */
body.qv-active { background: #121316; }
#questionnaire-view { --q-bg: #121316; --q-card: #151517; --q-line: #2e2e32; --q-accent: #7dd3fc; --q-accent-wash: rgba(125,211,252,.14); min-height: 100vh; }
#questionnaire-view .questionnaire-shell { display: block; max-width: 620px; margin: 0 auto; padding: clamp(28px, 6vw, 64px) 24px; }
#questionnaire-view .q-panel { background: var(--q-bg); color: #fff; border-radius: 26px; padding: 0; }
#questionnaire-view .steps-panel, #questionnaire-view .question-card, #questionnaire-view .section-intro-card { background: none; box-shadow: none; border-radius: 0; padding: 0; position: static; min-height: 0; }
#questionnaire-view .steps-panel { margin-bottom: 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
#questionnaire-view .dot-row { width: 100%; align-self: stretch; }
#questionnaire-view .question-meta { justify-content: flex-start; }
#questionnaire-view .steps-badge, #questionnaire-view .intro-badge { display: inline-block; border: 1px solid var(--q-line); border-radius: 999px; padding: .3rem .9rem; font-size: .72rem; font-weight: 800; letter-spacing: .08em; color: #fff; margin-bottom: 14px; }
#questionnaire-view .steps-app-title { color: #fff; font-size: 1.4rem; font-weight: 800; margin: 0 0 10px; }
#questionnaire-view .steps-questionnaire-label { color: #8995a0; font-size: .8rem; margin: 0 0 4px; }
#questionnaire-view .steps-icon, #questionnaire-view .intro-icon { width: 44px; height: 44px; border: 1px solid var(--q-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--q-accent); margin: 14px 0 10px; }
#questionnaire-view .steps-icon { display: none; }
#questionnaire-view .steps-icon svg, #questionnaire-view .intro-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
#questionnaire-view .steps-part, #questionnaire-view .intro-part { color: #8995a0; font-size: .78rem; margin: 0 0 4px; }
#questionnaire-view .steps-title { color: #fff; font-size: 1.15rem; font-weight: 800; margin: 0 0 12px; }
#questionnaire-view .dot-row { display: flex; direction: rtl; gap: 8px; margin-bottom: 44px; }
#questionnaire-view .dot-row .dot { flex: 1; height: 4px; border-radius: 100px; background: var(--q-line); }
#questionnaire-view .dot-row .dot.filled { background: var(--q-accent); }
#questionnaire-view .sections-list, #questionnaire-view .trust-box { display: none; }

#questionnaire-view .question-meta { color: #8995a0; }
#questionnaire-view .question-card h2 { font-size: 23px; font-weight: 800; margin: 0 0 12px; letter-spacing: normal; line-height: 1.3; }
#questionnaire-view .question-help { color: #b7bcc2; }
#questionnaire-view .question-why { background: var(--q-accent-wash); color: var(--q-accent); }
#questionnaire-view .input { background: var(--q-card); border-color: var(--q-line); color: #fff; }
#questionnaire-view .input::placeholder { color: #6b6f75; }
#questionnaire-view .input:focus { border-color: var(--q-accent); box-shadow: 0 0 0 3px var(--q-accent-wash); }
#questionnaire-view .input-hint { color: #8995a0; }
#questionnaire-view .city-suggestions { background: var(--q-card); border-color: var(--q-line); box-shadow: 0 12px 28px rgba(0,0,0,.4); }
#questionnaire-view .city-suggestions li { color: #fff; }
#questionnaire-view .city-suggestions li:hover { background: var(--q-accent-wash); color: var(--q-accent); }
#questionnaire-view .choice { background: var(--q-card); border-color: var(--q-line); color: #fff; min-height: 0; padding: 16px 20px; font-size: 15.5px; }
#questionnaire-view .choice:hover { border-color: #444952; }
#questionnaire-view .choice input { accent-color: var(--q-accent); }
#questionnaire-view .choice:has(input:checked) { border-color: var(--q-accent); background: var(--q-accent-wash); box-shadow: inset 0 0 0 1px var(--q-accent); }
#questionnaire-view .button-primary { background: #fff; color: #0b0b0c; border-radius: 100px; font-weight: 700; }
#questionnaire-view .button-primary:hover { background: #e4e4e4; }
#questionnaire-view .button-ghost { color: #b7bcc2; border-color: var(--q-line); }
#questionnaire-view .form-error { background: rgba(224,90,86,.14); border-color: rgba(224,90,86,.4); color: #f0a19e; }

#questionnaire-view .section-intro-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
#questionnaire-view .intro-badge { margin-bottom: 16px; }
#questionnaire-view .intro-icon { width: 60px; height: 60px; margin: 0 0 14px; }
#questionnaire-view .intro-icon svg { width: 26px; height: 26px; }
#questionnaire-view #intro-title { font-size: 1.5rem; font-weight: 800; margin: 0 0 28px; }
#questionnaire-view .intro-tips { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 16px; max-width: 560px; text-align: right; }
#questionnaire-view .intro-tips li { display: flex; gap: 12px; align-items: flex-start; color: #d7dade; font-size: .92rem; line-height: 1.6; }
#questionnaire-view .intro-tips .tip-number { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--q-accent-wash); color: var(--q-accent); font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
#questionnaire-view .intro-cta { padding: 1rem 2.5rem; }

#questionnaire-view .rank-choice { background: var(--q-card); border-color: var(--q-line); color: #fff; }
#questionnaire-view .rank-badge { background: var(--q-accent-wash); color: var(--q-accent); }
#questionnaire-view .rank-choice.selected { border-color: var(--q-accent); background: var(--q-accent-wash); }
#questionnaire-view .stepper button { background: var(--q-card); border-color: var(--q-line); color: #fff; }
#questionnaire-view .confirmation { background: var(--q-card); border-color: var(--q-line); color: #fff; }
#questionnaire-view .fact-row { border-bottom-color: var(--q-line); }
#questionnaire-view .fact-row span { color: #8995a0; }
#questionnaire-view .vehicle-verified-card { background: var(--q-card); border-color: var(--q-line); color: #fff; }
#questionnaire-view .vehicle-identity-head p { color: #b7bcc2; }
#questionnaire-view .vehicle-eyebrow { color: #8995a0; }
#questionnaire-view .vehicle-source { border-color: var(--q-line); }
#questionnaire-view .vehicle-source span { color: #8995a0; }
#questionnaire-view .catalog-intro { background: var(--q-card); border-color: var(--q-line); color: #fff; }
#questionnaire-view .catalog-intro p { color: #b7bcc2; }
#questionnaire-view .catalog-field > span { color: #fff; }
#questionnaire-view .catalog-select-input:disabled { color: #6b6f75; background: var(--q-card); border-color: var(--q-line); }
#questionnaire-view .vehicle-status { background: rgba(250,193,58,.15); color: #fac13a; }
#questionnaire-view .vehicle-status.verified { background: rgba(74,222,128,.15); color: #4ade80; }
#questionnaire-view .vehicle-spec { background: #1c1d20; border-color: var(--q-line); }
#questionnaire-view .vehicle-spec span { color: #8995a0; }
#questionnaire-view .vehicle-spec b { color: #fff; }
#questionnaire-view .vehicle-spec.unavailable { background: #1c1d20; }
#questionnaire-view .vehicle-spec.unavailable b { color: #6f7881; }
.rank-list { display: grid; gap: 9px; }
.rank-choice { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); padding: 11px; border-radius: 12px; }
.rank-badge { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #eceff1; font-weight: 800; }
.rank-choice.selected { border-color: var(--gold-dark); background: #fbf7ef; }
.stepper { display: grid; grid-template-columns: 58px minmax(100px, 1fr) 58px; max-width: 360px; gap: 8px; }
.stepper button { border: 1px solid var(--line); background: white; border-radius: 12px; font-size: 1.6rem; }
.stepper input { text-align: center; }
.subgrid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.confirmation { border: 1px solid var(--line); background: #faf9f6; border-radius: 16px; padding: 20px; }
.confirmation h3 { margin-top: 0; }
.fact-list { display: grid; gap: 8px; }
.fact-row { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid #e5e6e7; padding-bottom: 7px; }
.fact-row span { color: var(--muted); }
.special-choice { margin-top: 10px; }
.vehicle-verified-card { border: 1px solid var(--line); background: #faf9f6; border-radius: 18px; padding: 20px; }
.vehicle-identity-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.vehicle-identity-head h3 { margin: .25rem 0; font-size: clamp(1.35rem,3vw,2rem); }
.vehicle-identity-head p { margin: 0; color: var(--muted); }
.vehicle-eyebrow { color: var(--muted); font-size: .75rem; font-weight: 800; }
.vehicle-status { border-radius: 999px; padding: .45rem .7rem; background: #fff3df; color: #8f551a; font-size: .75rem; font-weight: 900; }
.vehicle-status.verified { background: #e5f6ef; color: #146643; }
.vehicle-source { display: flex; flex-wrap: wrap; gap: 8px 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 17px 0; padding: 12px 0; font-size: .8rem; }
.vehicle-source span { color: var(--muted); }
.vehicle-spec-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.vehicle-spec { border: 1px solid #e3e5e7; border-radius: 11px; padding: 11px; background: white; }
.vehicle-spec span { display: block; color: var(--muted); font-size: .72rem; margin-bottom: 3px; }
.vehicle-spec b { font-size: .88rem; }
.vehicle-spec.unavailable { background: #f4f5f6; }
.vehicle-spec.unavailable b { color: #6f7881; font-weight: 700; }
.vehicle-warnings { margin-top: 14px; border-right: 3px solid #c78d35; padding: 7px 12px; background: #fff8eb; border-radius: 8px; }
.vehicle-warnings p { margin: 0 0 4px; font-size: .82rem; }
.official-catalog { display: grid; gap: 16px; }
.catalog-intro { border: 1px solid var(--line); background: #faf9f6; border-radius: 16px; padding: 17px; }
.catalog-intro p { margin: .4rem 0 0; color: var(--muted); font-size: .88rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.catalog-field { display: grid; gap: 6px; }
.catalog-field > span { font-size: .8rem; font-weight: 900; }
.catalog-select-input:disabled { color: #7a838c; background: #f0f2f3; cursor: not-allowed; }
.catalog-status { display: flex; gap: 9px; align-items: center; color: var(--gold-dark); font-weight: 800; }
.catalog-spinner { width: 17px; height: 17px; border: 2px solid #dbc89f; border-top-color: var(--gold-dark); border-radius: 50%; animation: spin .8s linear infinite; }
.catalog-error { display: grid; gap: 5px; border: 1px solid #e6b2ad; background: #fff2f0; border-radius: 12px; padding: 13px; color: #8d2b28; }
.catalog-error button { width: max-content; border: 0; background: #8d2b28; color: white; border-radius: 8px; padding: .45rem .7rem; font-weight: 800; }
.catalog-ambiguity { border: 1px solid #d8ba76; background: #fff8e8; border-radius: 13px; padding: 14px; display: grid; gap: 8px; }
.catalog-ambiguity legend { font-weight: 900; padding: 0 5px; }
.catalog-candidate { display: flex; align-items: center; gap: 9px; background: white; border: 1px solid #eadbb6; border-radius: 10px; padding: 10px; }
.catalog-provenance { display: flex; flex-wrap: wrap; gap: 8px 18px; padding-top: 10px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.upload-box { border: 2px dashed #b8c0c8; border-radius: 14px; padding: 25px; text-align: center; background: #fafbfc; }
.loading-inline { color: var(--gold-dark); font-weight: 800; margin-top: 12px; }

.loading-view { display: grid; place-items: center; text-align: center; align-content: center; background: var(--dark); color: white; }
.ao-logo-mark { margin: 0 auto 28px; width: 140px; }
.ao-logo-a, .ao-logo-o { stroke-dasharray: 1; stroke-dashoffset: 1; animation: ao-draw-a 2.2s ease-in-out infinite; }
.ao-logo-o { animation-name: ao-draw-o; }
@keyframes ao-draw-a { 0%, 5% { stroke-dashoffset: 1; } 45% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; } }
@keyframes ao-draw-o { 0%, 50% { stroke-dashoffset: 1; } 90% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .ao-logo-a, .ao-logo-o { animation: none !important; stroke-dashoffset: 0 !important; }
}
.ao-progress-wrap { max-width: 280px; margin: 0 auto; width: 100%; }
.ao-progress-labels { display: flex; justify-content: space-between; font-size: 12px; color: #8a8a8e; margin-bottom: 6px; }
.ao-progress-track { height: 4px; border-radius: 100px; background: #232326; overflow: hidden; }
.ao-progress-fill { height: 100%; width: 0%; background: #fff; border-radius: 100px; transition: width .4s ease; }
.loading-view h2 { margin-bottom: 0; }
.loading-view p { color: #aeb7c1; margin-top: 18px; font-size: 15px; }

.site-extra { scroll-margin-top: 24px; }
.booking-section { max-width: 1180px; margin: clamp(28px, 5vw, 60px) auto; padding: 0 clamp(18px, 4vw, 48px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.booking-copy, .booking-card { border-radius: 20px; padding: clamp(20px, 3vw, 32px); }
.booking-copy { background: var(--dark); color: white; }
.booking-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.15; margin: .4rem 0 .8rem; }
.booking-copy p { color: #bdc6ce; }
.booking-copy ul { padding-right: 20px; color: #dce2e8; }
.booking-card { background: white; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center; }
.booking-card h3 { margin-top: 0; }
.booking-status { color: var(--muted); min-height: 28px; }
.slot-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; margin: 18px 0; }
.slot-button { border: 1px solid var(--line); border-radius: 12px; background: #faf9f6; color: var(--ink); padding: .7rem .55rem; font-weight: 800; }
.slot-button:hover, .slot-button:focus-visible { border-color: var(--gold-dark); }
.slot-button.selected { color: #fff; background: var(--gold); border-color: var(--gold); }
.booking-form { display: grid; gap: 12px; margin-top: 18px; }
.booking-form .field { margin: 0; }
.booking-form .button { justify-self: start; }
.booking-error { color: #972f2c; font-weight: 800; }

.site-footer { background: var(--dark); color: #aeb7c1; padding: 28px clamp(20px, 6vw, 90px); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.site-footer a { color: #dce2e8; text-decoration: none; margin-inline-start: 16px; }
.site-footer a:hover { color: #fff; }
.whatsapp-float { position: fixed; left: 20px; bottom: 20px; z-index: 25; border-radius: 999px; background: #20a866; color: white; text-decoration: none; font-weight: 900; padding: .82rem 1.12rem; box-shadow: 0 12px 32px rgba(20,105,68,.28); }
.whatsapp-float:hover { background: #178c54; }

.report-view { padding: clamp(24px, 4vw, 60px); max-width: 1180px; margin: auto; }

/* ₪149 checkout/payment states - layout-only wrapper, no new visual
   language. The card itself is .booking-card reused as-is. */
.checkout-view { max-width: 620px; margin: clamp(40px, 8vh, 90px) auto; padding: 0 clamp(18px, 4vw, 32px); }
.checkout-card { text-align: center; gap: 14px; }
.checkout-card h2 { margin: 0 0 4px; }
.checkout-price { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; color: var(--gold-dark); margin: 0; }
.checkout-includes { list-style: none; padding: 0; margin: 4px 0; display: flex; flex-direction: column; gap: 6px; text-align: right; }
.checkout-includes li { padding-inline-start: 22px; position: relative; color: var(--ink); }
.checkout-includes li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--gold-dark); font-weight: 800; }
.checkout-card .button-large { align-self: center; }
.report-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 20px; }
.report-toolbar h2 { margin: 3px 0 0; }
.toolbar-actions { display: flex; gap: 8px; }
.report-pages { min-height: 760px; }
.report-page { min-height: 760px; background: white; border-radius: 24px; box-shadow: var(--shadow); padding: clamp(28px, 5vw, 65px); display: none; }
.report-page.active { display: block; }
.report-page-header { display: flex; justify-content: space-between; align-items: start; border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 28px; }
.report-page-footer { display: none; }
.page-kicker { color: var(--gold-dark); font-weight: 800; font-size: .8rem; }
.page-number { color: var(--muted); font-size: .8rem; }
.report-page h3 { font-size: clamp(1.8rem, 4vw, 3.2rem); margin: 6px 0; line-height: 1.1; }
.verdict-grid { display: grid; grid-template-columns: 240px 1fr; gap: 35px; align-items: center; }
.score-gauge { text-align: center; }
.score-gauge-svg { margin: 0 auto; display: block; }
.score-gauge-svg g { transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.score-gauge-label { font-size: 12.5px; font-weight: 700; color: #7a7a7e; margin-top: 2px; }
.score-gauge-value { font-size: 40px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.score-gauge-sub { font-size: 12px; color: #9a9a9e; }
.score-gauge.unavailable .score-gauge-value { color: var(--muted); }
.score-gauge.unavailable .score-gauge-sub { max-width: 200px; margin: 0 auto; font-size: .82rem; line-height: 1.3; }
.score-coverage { color: var(--muted); font-size: .9rem; font-weight: 700; }
.verdict { padding: 6px 18px; border-radius: 100px; display: inline-block; border: 1.5px solid; font-weight: 800; font-size: 13.5px; }
.verdict.success { border-color: #1f8a62; color: #1f8a62; }
.verdict.warning { border-color: #d98332; color: #d98332; }
.verdict.danger { border-color: #c94b48; color: #c94b48; }
.status-strip { display: flex; flex-wrap: wrap; gap: 9px; margin: 15px 0 25px; }
.status-chip { border-radius: 999px; padding: .35rem .65rem; font-size: .78rem; background: #eef0f2; }
.status-chip.good { background: #e5f6ef; color: #146643; }
.status-chip.warn { background: #fff3df; color: #8f551a; }
.status-chip.bad { background: #ffe8e6; color: #9b302d; }
.status-chip.neutral { background: #eef0f2; color: #4f5962; }
.report-columns { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.report-block { border-top: 3px solid var(--gold); padding-top: 13px; }
.report-block h4 { margin: 0 0 10px; }
.report-block ul { margin: 0; padding-right: 18px; }
.report-block li { margin-bottom: 8px; }
.trade-economics-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px 20px; font-size: 13px; margin-bottom: 14px; }
.trade-economics-meta span { color: var(--muted); display: block; }
.trade-economics-meta b { font-weight: 700; }
.trade-economics-rows { background: #f7f6f3; border-radius: 14px; padding: 16px 18px; }
.trade-economics-row { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; }
.trade-economics-row.total { font-size: 13.5px; padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--line); }
.trade-economics-row.total span, .trade-economics-row.total b { font-weight: 800; }
.trade-analogs { display: grid; }
.trade-analog-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 6px 0; border-bottom: 1px solid #f1efeb; }
.trade-analog-row:last-child { border-bottom: none; }
.action-list { display: grid; gap: 12px; }
.action-card { border: 1px solid var(--line); border-radius: 15px; padding: 18px; display: grid; grid-template-columns: 42px 1fr; gap: 13px; }
.action-index { width: 38px; height: 38px; border-radius: 50%; background: var(--dark); color: var(--on-dark); display: grid; place-items: center; font-weight: 900; }
.action-card h4 { margin: 0 0 4px; }
.action-target { color: #146643; font-weight: 800; }
.action-redline { color: #9b302d; font-size: .86rem; }
.script-box { background: var(--dark); color: white; border-radius: 16px; padding: 20px; }
.script-box li { margin-bottom: 12px; color: #dce2e8; }
.report-subsection { margin-top: 44px; padding-top: 34px; border-top: 2px solid var(--line); }
.report-subsection:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.report-subsection > h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin: 0 0 20px; line-height: 1.2; }
.report-subsection > .report-block:first-of-type,
.report-subsection > .status-strip:first-of-type { margin-top: 0; }
.negotiation-list { display: grid; gap: 14px; margin-bottom: 20px; }
.negotiation-card { background: var(--dark); color: white; border-radius: 16px; padding: 20px; }
.negotiation-card h4 { margin: 0 0 12px; color: white; }
.negotiation-row { display: grid; grid-template-columns: 90px 1fr; gap: 10px; padding: 9px 0; border-top: 1px solid rgba(255,255,255,.14); }
.negotiation-row:first-of-type { border-top: none; padding-top: 0; }
.negotiation-row span { color: #9aa5b1; font-size: .8rem; font-weight: 700; }
.negotiation-row p { margin: 0; color: #dce2e8; }
.negotiation-row.redline span, .negotiation-row.redline p { color: #ff9d94; }
.source-table { width: 100%; border-collapse: collapse; }
.source-table th, .source-table td { text-align: right; border-bottom: 1px solid var(--line); padding: 12px 8px; vertical-align: top; }
.source-table th { color: var(--muted); font-size: .78rem; }
.source-table a { color: var(--gold-dark); }
.page-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; padding: 22px 5px; }
.page-nav #report-next { justify-self: end; }
.page-nav #report-prev { justify-self: start; }

.advisor-insight { border-right: 3px solid var(--gold); background: #fbf7ef; border-radius: 10px; padding: 12px 14px; margin-top: 16px; }
.advisor-hero { border: 1px solid #303943; color: white; background: linear-gradient(135deg, var(--dark), #222b35); border-radius: 20px; padding: clamp(22px, 4vw, 38px); margin-bottom: 22px; }
.advisor-hero .eyebrow { color: var(--on-dark); }
.advisor-hero h4 { font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.15; margin: .45rem 0 .7rem; }
.advisor-hero p { color: #c7d0d9; margin-bottom: 0; }
.advisor-targets { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin: 18px 0 28px; }
.advisor-target { border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.advisor-target span { display: block; color: var(--muted); font-size: .78rem; }
.advisor-target b { display: block; margin-top: 4px; }
.advisor-target.positive { border-color: #a9d9c5; background: #f0faf6; }
.advisor-target.negative { border-color: #edbbb7; background: #fff5f4; }
.score-breakdown { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; margin: 18px 0 28px; }
.score-breakdown-card { background: #f4f5f6; border-radius: 12px; padding: 13px; }
.score-breakdown-card span { color: var(--muted); font-size: .74rem; display: block; }
.score-breakdown-card b { display: block; font-size: 1.35rem; }
.strategy-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.strategy-card { border: 1px solid var(--line); border-radius: 16px; padding: 19px; }
.strategy-card h4 { margin: 0 0 6px; }
.strategy-card ol { padding-right: 20px; }
.strategy-card li { margin-bottom: 6px; }
.strategy-number { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--dark); color: var(--on-dark); font-weight: 900; margin-bottom: 12px; }
.strategy-value { color: #146643; font-weight: 800; }
.checklist { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; padding: 0; list-style: none; }
.checklist li { background: #f6f7f8; border-radius: 10px; padding: 10px 12px; }
.checklist li:before { content: "✓"; color: var(--green); font-weight: 900; margin-left: 8px; }
.report-booking-cta { border: 1px solid #d9c59d; background: #fbf7ef; border-radius: 16px; padding: 20px; margin-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.report-booking-cta h4, .report-booking-cta p { margin: 0; }
.feedback-block { max-width: 720px; }
.feedback-block fieldset { border: 0; padding: 0; margin: 22px 0; }
.feedback-block legend { font-weight: 900; margin-bottom: 10px; }
.rating-row { display: flex; flex-wrap: wrap; gap: 8px; }
.rating-row label { min-width: 54px; display: grid; place-items: center; padding: .7rem; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.rating-row label:has(input:checked) { background: var(--gold); border-color: var(--gold); color: #fff; }
.rating-row input { position: absolute; opacity: 0; }
.outcome-details { margin: 22px 0; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #f8f9fa; }
.outcome-details h4 { margin: 0 0 8px; }
.outcome-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
textarea.input { resize: vertical; min-height: 110px; }
.success-box { color: #146643; background: #e5f6ef; border: 1px solid #a9d9c5; border-radius: 12px; padding: 14px; font-weight: 800; }

.legal-page { max-width: 900px; margin: 45px auto; background: white; border-radius: 22px; padding: clamp(24px, 5vw, 58px); box-shadow: var(--shadow); }
.legal-page h1 { font-size: clamp(2.1rem, 5vw, 4.2rem); }
.legal-page h2 { margin-top: 2rem; }

.contact-methods { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 28px 0; }
.contact-method { background: var(--canvas); border-radius: 14px; padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.contact-method__label { font-size: .8rem; color: var(--muted); font-weight: 700; }
.contact-method__value { font-size: 1.05rem; font-weight: 800; color: var(--ink); text-decoration: none; }
.contact-method__value:hover { text-decoration: underline; }
@media (max-width: 560px) { .contact-methods { grid-template-columns: 1fr; } }

.admin-page { min-height: 100vh; background: #eef0f2; padding: clamp(20px, 4vw, 55px); }
.admin-shell { max-width: 1280px; margin: auto; }
.admin-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 25px; }
.admin-header h1 { font-size: clamp(2rem, 4vw, 3.6rem); margin: 0; }
.admin-login { max-width: 480px; margin: 12vh auto; background: white; border-radius: 20px; padding: 36px; box-shadow: var(--shadow); }
/* Admin-only button palette to match the approved design handoff exactly
   (primary = ink/black fill, not the public site's gold brand accent) -
   scoped to .admin-page so every public-facing CTA elsewhere keeps using
   the real brand color unchanged. */
.admin-page .button { border-radius: 100px; }
.admin-page .button-primary { background: var(--ink); }
.admin-page .button-primary:hover { background: var(--dark-2, #1a1a1a); }
.admin-page .button-ghost { border-color: var(--line); color: var(--ink); }
.admin-login h1 { font-size: 2.4rem; }
.metric-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.metric-card { background: var(--paper); border-radius: 20px; padding: 30px 32px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.metric-card:hover { transform: translateY(-7px); box-shadow: 0 30px 80px rgba(11,11,12,.18); }
.metric-card span { color: var(--muted); font-size: 14px; font-weight: 600; }
.metric-card b { display: block; font-size: 44px; font-weight: 800; margin-top: 10px; }
.admin-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; margin-top: 14px; }
.admin-panel { background: var(--paper); border-radius: 20px; padding: 24px 26px; box-shadow: var(--shadow); overflow: auto; }
.admin-panel h2 { margin-top: 0; }
.admin-panel table { width: 100%; border-collapse: collapse; min-width: 520px; }
.admin-row-clickable { cursor: pointer; }
.admin-row-clickable:hover { background: var(--canvas); }
.admin-panel th, .admin-panel td { text-align: right; border-bottom: 1px solid var(--line); padding: 9px 7px; font-size: .84rem; }
.admin-empty { color: var(--muted); }
.admin-panel-wide { grid-column: 1 / -1; }
.access-code-form { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; align-items: end; margin-bottom: 18px; }
.access-code-form button { grid-column: span 1; height: fit-content; }
@media (max-width: 640px) { .access-code-form { grid-template-columns: 1fr; } }

/* Admin dashboard v2 - tabbed sections, status badges, leads, trend chart, modals */
.admin-header-bar { background: var(--dark); color: #fff; border-radius: 20px; padding: 22px 28px; margin-bottom: 18px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.admin-header-bar .eyebrow { color: rgba(255,255,255,.55); }
.admin-header-bar h1 { margin: 4px 0 0; font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; }
.admin-header-bar p { margin: 4px 0 0; color: rgba(255,255,255,.6); font-size: .82rem; }
.admin-header-bar-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-header-bar .button-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.admin-header-bar .button-ghost:hover { background: rgba(255,255,255,.1); }
.admin-header-bar .button-primary { background: #fff; color: var(--ink); }

.admin-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.admin-tab { border: 1.5px solid var(--line); background: #fff; color: var(--muted); font-weight: 700; font-size: .84rem; padding: .55rem 1.1rem; border-radius: 999px; cursor: pointer; white-space: nowrap; transition: background .15s ease, color .15s ease, border-color .15s ease; }
.admin-tab:hover { border-color: var(--ink); color: var(--ink); }
.admin-tab.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.admin-section { display: none; }
.admin-section.active { display: block; }
@media (max-width: 720px) { .admin-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; } }

.status-badge { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 800; letter-spacing: .02em; padding: .3rem .65rem; border-radius: 999px; white-space: nowrap; }
.status-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-badge--success { background: rgba(31,138,98,.12); color: var(--green); }
.status-badge--warn { background: rgba(217,131,50,.12); color: var(--orange); }
.status-badge--danger { background: rgba(201,75,72,.12); color: var(--red); }
.status-badge--neutral { background: rgba(154,154,158,.15); color: var(--muted); }

.admin-toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.admin-toolbar input[type="search"] { flex: 1 1 220px; min-height: 42px; border: 1.5px solid var(--line); border-radius: 10px; padding: 0 .9rem; font-family: inherit; font-size: .88rem; background: #fff; color: var(--ink); }
.admin-toolbar input[type="search"]:focus { outline: none; border-color: var(--ink); }
.admin-filter-pill { border: 1.5px solid var(--line); background: #fff; color: var(--muted); font-size: .8rem; font-weight: 700; padding: .45rem .9rem; border-radius: 999px; cursor: pointer; }
.admin-filter-pill.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.admin-panel table td, .admin-panel table th { white-space: nowrap; }
.admin-panel-scroll { overflow-x: auto; }
.admin-pagination { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: .82rem; color: var(--muted); }

.trend-chart-wrap { overflow-x: auto; }
.trend-chart-legend { display: flex; gap: 16px; font-size: .78rem; color: var(--muted); margin-top: 8px; }
.trend-chart-legend span { display: inline-flex; align-items: center; gap: 6px; }
.trend-chart-legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }

.admin-modal-overlay { position: fixed; inset: 0; background: rgba(11,11,12,.5); display: flex; align-items: center; justify-content: center; z-index: 200; padding: 20px; }
.admin-modal-overlay.hidden { display: none; }
.admin-modal { background: #fff; border-radius: 20px; padding: 28px; max-width: 560px; width: 100%; max-height: 86vh; overflow-y: auto; box-shadow: var(--shadow); }
.admin-modal h3 { margin-top: 0; }
.admin-modal-close { position: absolute; top: 18px; left: 18px; }
.admin-modal-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.admin-modal-form .field-wide { grid-column: 1 / -1; }
@media (max-width: 520px) { .admin-modal-form { grid-template-columns: 1fr; } }
/* Case detail needs more room than the coupon edit/history modals (identity,
   journey, uploads, payments, report, notes, timeline) - same modal chrome,
   just wider, not a new component. */
.admin-modal--wide { max-width: 900px; }
.admin-case-section { margin-top: 20px; }
.admin-case-section:first-child { margin-top: 0; }
.admin-case-section h4 { margin: 0 0 8px; font-size: .95rem; }
.admin-case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.admin-case-kv { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 10px 20px; font-size: .86rem; }
.admin-case-kv dt { color: var(--muted); font-size: .76rem; }
.admin-case-kv dd { margin: 2px 0 0; font-weight: 600; }
.admin-case-timeline { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.admin-case-timeline li { display: flex; justify-content: space-between; gap: 10px; font-size: .82rem; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.admin-case-timeline li:last-child { border-bottom: none; }
@media (max-width: 640px) { .admin-modal--wide { max-width: 100%; } }

.admin-toast-stack { position: fixed; left: 24px; bottom: 24px; z-index: 300; display: flex; flex-direction: column; gap: 8px; }
.admin-toast { background: var(--ink); color: #fff; padding: .75rem 1.1rem; border-radius: 10px; box-shadow: var(--shadow); font-size: .86rem; animation: admin-toast-in .2s ease; }
.admin-toast.admin-toast--error { background: #c0392b; }
@keyframes admin-toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.admin-row-link { background: none; border: none; padding: 0; color: var(--ink); font-weight: 700; text-decoration: underline; cursor: pointer; font-family: inherit; font-size: inherit; }

/* The admin sidebar (#admin-tabs) deliberately does NOT stack into a
   horizontal strip on narrow screens - matching the recovered Claude Design
   handoff exactly (design_handoff_auto_office_admin/README.md: "no explicit
   breakpoints... the sidebar collapses via its own toggle - width 260px/72px
   - never a layout switch"). It stays a fixed, sticky side column at every
   width; the hamburger button (#admin-sidebar-toggle) is the only way it
   ever changes size. This is a deliberate reversal of an earlier, separate
   mobile-usability fix that predated this design file. */
@media (max-width: 860px) {
  .admin-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .metric-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  /* Wide data tables (min-width:520px, nowrap cells) force an internal
     horizontal scroll on phones that can default to a scrolled-away,
     unreadable position in RTL - letting cells wrap removes the need for
     that scroll entirely instead of trying to control its start position. */
  .admin-panel table { min-width: 0; table-layout: fixed; width: 100%; }
  .admin-panel table td, .admin-panel table th { white-space: normal; overflow-wrap: anywhere; }
}
@media (max-width: 400px) {
  .metric-grid { grid-template-columns: 1fr; }
}

/* Business and SEO landing pages */
.header-cta { color: #fff; background: var(--gold); border-radius: 999px; padding: .58rem .95rem; text-decoration: none; font-weight: 900; font-size: .84rem; white-space: nowrap; }
.header-cta:hover, .header-cta:focus-visible { background: #e0bc7e; }
.business-body, .seo-page { background: #f5f3ee; }
/* Design-authority pass (2026-08-09): business.html/consultation.html's hero
   and summary card used to be the pre-Claude-Design dark/gold treatment
   (see the :root comment above - the rest of the site moved to the
   monochrome light system, these two pages didn't). Brought onto the same
   light system as the homepage (var(--canvas)/var(--ink), .ao-chooser-card's
   white-card recipe) - reusing existing tokens only, no new visual language.
   Top padding floor kept at 84px to clear the fixed .ao-nav (64px tall on
   mobile). */
/* business.html's hero (only remaining user of this class - consultation.html
   moved to the shared .ao-hero--contained pattern) gets the same branded
   video background, contained/scoped to this box only (position:relative +
   overflow:hidden here, same reasoning as .ao-hero--contained above) while
   keeping its own existing 2-column grid/buttons/copy untouched. */
.business-hero { position: relative; overflow: hidden; min-height: 680px; color: #fff; background: #0b0b0c; padding: clamp(84px, 8vw, 112px) clamp(22px, 8vw, 130px); display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.7fr); gap: clamp(30px,7vw,100px); align-items: center; }
.business-hero.video-ready { background: transparent; }
.business-hero .ao-hero__video, .business-hero .ao-hero__overlay { position: absolute; }
.business-hero h1, .seo-hero h1 { font-size: clamp(2.6rem, 6vw, 5.9rem); }
/* Matches .ao-hero__title's exact weight/tracking (the video-hero standard,
   see the design-authority pass above) - .seo-hero intentionally excluded,
   out of scope (unrelated SEO landing pages, left exactly as they were). */
.business-hero h1 { font-weight: 800; letter-spacing: -1px; }
.business-hero p { max-width: 720px; color: rgba(255,255,255,.85); font-size: clamp(1.05rem,1.45vw,1.25rem); }
.business-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.business-proof { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.business-proof li { border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); border-radius: 999px; padding: .45rem .75rem; color: #fff; font-size: .83rem; }
.business-summary-card { border: 1.5px solid var(--line); background: #fff; border-radius: 26px; padding: clamp(26px,4vw,44px); box-shadow: var(--shadow); }
.business-summary-card span { color: var(--ink); font-size: .8rem; font-weight: 900; }
.business-summary-card b { display: block; font-size: clamp(1.5rem,3vw,2.5rem); line-height: 1.15; margin: 18px 0; color: var(--ink); }
.business-summary-card p { font-size: .95rem; color: var(--muted); }
.business-section { max-width: 1180px; margin: 0 auto; padding: clamp(58px,8vw,100px) clamp(18px,4vw,48px); scroll-margin-top: 20px; }
.center-heading { max-width: 760px; margin: 0 auto 35px; text-align: center; }
.center-heading h2, .business-value h2, .lead-copy h2 { font-size: clamp(2rem,4.5vw,4rem); line-height: 1.08; margin: .45rem 0 .8rem; }
.center-heading p, .lead-copy p { color: var(--muted); }
.track-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.track-card { position: relative; background: white; border: 1px solid var(--line); border-radius: 24px; padding: clamp(25px,4vw,42px); box-shadow: 0 16px 46px rgba(12,18,24,.07); }
.pricing-grid .track-card { box-shadow: none; }
.pricing-grid .track-card.featured { color: inherit; background: transparent; border-color: var(--line); }
.pricing-grid .track-card.featured .track-number { color: var(--gold-dark); }
.pricing-grid .track-card.featured .track-for, .pricing-grid .track-card.featured > p { color: var(--muted); }
.pricing-grid .track-number { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.pricing-grid .track-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 12px; line-height: 1.3; }
.pricing-grid .track-card > p { font-size: 15.5px; color: #5a5a5e; line-height: 1.8; }
.track-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 15px; font-weight: 700; color: var(--ink); text-decoration: none; }
.track-cta:hover { text-decoration: underline; }
.track-card.featured .track-cta { color: inherit; }
.home-page .center-heading h2 { font-size: clamp(1.8rem, 3.1vw, 44px); line-height: 1.25; margin: 0 0 28px; }
.home-page .center-heading p { font-size: 17px; line-height: 1.85; }
.home-page .business-section { padding: clamp(58px,9.7vw,140px) clamp(18px,4vw,48px); background: rgba(247,246,243,.6); position: relative; z-index: 1; }
.home-page .faq-section details { background: transparent; border: none; border-radius: 0; border-bottom: 1px solid var(--line); padding: 0; margin-bottom: 0; }
.home-page .faq-section summary { padding: 24px 0; font-size: 18px; font-weight: 600; }
.home-page .faq-section details p { padding-bottom: 24px; }
.track-card.featured { color: white; background: var(--dark); border-color: #303943; }
.track-number { color: var(--gold-dark); font-weight: 900; }
.track-card.featured .track-number { color: var(--on-dark); }
.track-for { color: var(--muted); font-size: .82rem; font-weight: 800; }
.track-card.featured .track-for, .track-card.featured > p { color: #bfc8d1; }
.track-card h3 { font-size: clamp(1.55rem,3vw,2.4rem); line-height: 1.15; margin: 12px 0; }
.track-card ul { padding-right: 20px; margin: 22px 0 28px; }
.track-card li { margin-bottom: 9px; }
.track-card .button { width: 100%; }
.process-section { border-top: 1px solid var(--line); }
.business-process { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; counter-reset: none; }
.business-process li { background: white; border-radius: 18px; padding: 22px; border-top: 3px solid var(--gold); }
.business-process li > b { color: var(--gold-dark); }
.business-process h3 { margin: 13px 0 5px; }
.business-process p { color: var(--muted); font-size: .9rem; margin: 0; }
.business-value { max-width: none; padding-inline: max(clamp(18px,8vw,130px), calc((100vw - 1180px)/2)); color: white; background: var(--dark); display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.value-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.value-grid article { border: 1px solid #343e49; border-radius: 15px; padding: 18px; }
.value-grid b { color: var(--on-dark); }
.value-grid p { color: #bfc8d1; font-size: .87rem; }
.who-wants-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; margin-bottom: 24px; }
.who-wants-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px,3vw,36px) 24px; text-align: center; }
.who-wants-icon { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 14px; color: var(--ink); }
.who-wants-card b { display: block; font-size: 19px; margin-bottom: 4px; }
.who-wants-card p { color: #9a9a9e; margin: 0; font-size: 14px; }
.only-you-pill { display: block; width: fit-content; margin: 0 auto; background: var(--dark); color: white; border-radius: 999px; padding: 18px 32px; font-weight: 800; font-size: 16px; }
.price-example { text-align: center; }
.cost-viz { position: relative; width: 100%; max-width: 900px; margin: 0 auto 100px; aspect-ratio: 1000 / 620; }
.cost-viz-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.cost-viz-lines path { stroke: #d8d6d0; stroke-width: 1.5; fill: none; }
.cost-viz-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; z-index: 1; }
.cost-viz-total { font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; color: var(--ink); }
.cost-viz-caption { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; color: #9a9a9e; margin-top: 6px; }
.ao-cost-card { position: absolute; background: #fff; border: 1.5px solid var(--line); border-radius: 16px; padding: clamp(14px,2.2vw,26px) clamp(18px,3vw,34px); text-align: center; min-width: clamp(120px,22%,190px); box-shadow: 0 12px 32px rgba(0,0,0,.06); }
.ao-cost-card--bottom { transform: translateX(-50%); }
.ao-cost-card span { display: block; font-size: clamp(14px,1.6vw,18px); font-weight: 700; color: var(--ink); }
.ao-cost-card b { display: block; font-size: clamp(16px,1.9vw,23px); font-weight: 800; color: #c0392b; margin-top: 2px; }
.process-section-dark { position: relative; overflow: hidden; padding: 100px 24px; }
.process-list { list-style: none; padding: 0; margin: 0 auto; max-width: 980px; }
.process-list li { display: flex; gap: 28px; align-items: baseline; padding: 24px 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list-num { color: #9a9a9e; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.process-list-title { display: block; color: var(--ink); font-weight: 600; font-size: 20px; margin-bottom: 6px; }
.process-list li p { margin: 0; color: #6a6a6e; font-size: 14.5px; line-height: 1.55; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; }
.why-us-card { background: white; border: 1px solid var(--line); border-radius: 20px; padding: clamp(22px,3vw,44px); }
.why-us-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--ink); margin-bottom: 16px; }
.why-us-icon::after { content: ""; width: 16px; height: 16px; background: var(--ink); border-radius: 2px; }
.why-us-icon--circle::after { border-radius: 50%; }
.why-us-card h3 { margin: 0 0 12px; font-size: 21px; font-weight: 700; }
.why-us-card p { color: #5a5a5e; margin: 0; font-size: 15.5px; line-height: 1.75; }
.testimonial-card { background: #f7f6f3; border: none; border-radius: 20px; padding: 40px 34px; }
.testimonial-card q { display: block; font-size: 16.5px; line-height: 1.75; color: #2b2b2e; quotes: none; }
.testimonial-card cite { display: block; margin-top: 16px; font-style: normal; font-weight: 700; font-size: 15px; }
.testimonial-card cite span { display: block; font-weight: 500; color: var(--muted); font-size: .84rem; }
.home-cta-band { background: rgba(11,11,12,.85); color: white; border-radius: 28px; padding: clamp(36px,6vw,64px); text-align: center; margin: 0 auto; max-width: 1180px; position: relative; z-index: 1; }
.home-cta-band h2 { color: white; font-size: clamp(2rem, 5.5vw, 42px); font-weight: 800; margin: 0 0 20px; }
.home-cta-band p { font-size: 17px; }
.final-cta-band { background: rgba(11,11,12,.82); padding: clamp(64px,18vw,160px) 24px; text-align: center; }
.final-cta-band h2 { color: white; font-size: clamp(2.2rem, 6.5vw, 50px); font-weight: 800; margin: 0 0 20px; }
.final-cta-band p { color: #9a9a9e; font-size: 18px; margin: 0 0 24px; }
.final-cta-band .button { padding: 18px 52px; font-size: 17px; }
.final-cta-band .button-primary { background: #fff; color: #0b0b0c; font-weight: 700; }
.final-cta-band .button-primary:hover { background: #e4e4e4; }
.final-cta-band .button-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); font-weight: 600; }
.home-cta-band .button-ghost { color: white; border-color: rgba(255,255,255,.4); }
.lead-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(28px,6vw,80px); align-items: start; }
.business-form { background: white; border-radius: 24px; padding: clamp(24px,4vw,42px); box-shadow: var(--shadow); }
.business-form fieldset { border: 0; padding: 0; margin: 0 0 22px; }
.business-form legend { font-weight: 900; margin-bottom: 10px; }
.track-choice-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.track-choice-row label { cursor: pointer; }
.track-choice-row input { position: absolute; opacity: 0; }
.track-choice-row span { display: block; min-height: 82px; border: 1.5px solid var(--line); border-radius: 13px; padding: 13px; }
.track-choice-row small { display: block; color: var(--muted); }
.track-choice-row label:has(input:checked) span { border-color: var(--gold-dark); background: var(--canvas); box-shadow: inset 0 0 0 1px var(--gold-dark); }
.consent-row { display: flex; gap: 9px; align-items: flex-start; margin: 15px 0 22px; font-size: .84rem; }
.consent-row input { width: 20px; height: 20px; accent-color: var(--gold-dark); }
.ao-section.qdc-hero { padding-bottom: 8px; }
.qdc-card { background: white; border-radius: 22px; box-shadow: var(--shadow); padding: clamp(24px, 4vw, 40px); margin: 0 auto 20px; max-width: 640px; }
.qdc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.qdc-fieldset { border: none; padding: 0; margin: 0 0 16px; }
.qdc-fieldset legend { font-size: .82rem; font-weight: 700; color: var(--muted); margin-bottom: 8px; padding: 0; }
.qdc-choice-row { display: flex; gap: 10px; }
.qdc-choice { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--line); border-radius: 12px; padding: 12px; font-weight: 700; cursor: pointer; min-height: 44px; }
.qdc-choice input { accent-color: var(--gold-dark); width: 19px; height: 19px; }
.qdc-choice:has(input:checked) { border-color: var(--ink); background: var(--canvas); }
.qdc-submit { width: 100%; justify-content: center; min-height: 48px; margin-top: 6px; }
.qdc-loading { text-align: center; padding: 48px clamp(24px, 4vw, 40px); }
.qdc-spinner { width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--line); border-top-color: var(--ink); margin: 0 auto 18px; animation: qdc-spin 0.9s linear infinite; }
@media (prefers-reduced-motion: reduce) { .qdc-spinner { animation: none; } }
@keyframes qdc-spin { to { transform: rotate(360deg); } }
.qdc-loading-title { font-weight: 800; margin: 0 0 4px; }
.qdc-loading-sub { color: var(--muted); font-size: .88rem; margin: 0; }
.qdc-score-wrap { text-align: center; margin-bottom: 22px; }
.qdc-score-circle { --qdc-score: 0; width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; background: conic-gradient(var(--ink) calc(var(--qdc-score) * 1%), var(--line) 0); }
.qdc-score-circle span { width: 82px; height: 82px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; }
.qdc-score-label { color: var(--muted); font-size: .85rem; margin: 0; }
.qdc-indicators { display: grid; gap: 8px; margin-bottom: 18px; }
.qdc-indicator { display: flex; align-items: flex-start; gap: 10px; background: var(--canvas); border-radius: 12px; padding: 12px 14px; }
.qdc-indicator-dot { width: 9px; height: 9px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; background: var(--muted-2); }
.qdc-indicator.qdc-status-good .qdc-indicator-dot { background: var(--green); }
.qdc-indicator.qdc-status-warning .qdc-indicator-dot { background: var(--orange); }
.qdc-indicator.qdc-status-alert .qdc-indicator-dot { background: var(--red); }
.qdc-indicator b { font-size: .88rem; }
.qdc-indicator p { margin: 2px 0 0; font-size: .82rem; color: var(--muted); line-height: 1.5; }
.qdc-upsell { border-top: 1px solid var(--line); padding-top: 18px; text-align: center; }
.qdc-upsell-title { font-weight: 800; margin: 0 0 6px; }
.qdc-upsell-sub { color: var(--muted); font-size: .82rem; line-height: 1.6; margin: 0 0 16px; }
.qdc-cta { width: 100%; justify-content: center; min-height: 48px; }
@media (max-width: 560px) { .qdc-grid, .qdc-choice-row { grid-template-columns: 1fr; flex-direction: column; } }

.faq-section details, .faq-list details { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 0 18px; margin-bottom: 9px; }
.faq-section summary, .faq-list summary { cursor: pointer; font-weight: 900; padding: 17px 0; }
.faq-section details p, .faq-list details p { color: var(--muted); margin-top: 0; }

.seo-hero { color: white; background: radial-gradient(circle at 15% 20%, rgba(214,171,98,.14), transparent 38%), var(--dark); padding: clamp(48px,8vw,100px) clamp(20px,8vw,130px); }
.seo-hero-inner, .seo-hero > div { max-width: 1000px; }
.seo-hero p { max-width: 770px; color: #c7d0d9; font-size: clamp(1.05rem,1.5vw,1.25rem); }
.home-hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; padding-top: 0; padding-bottom: 0; background: #0b0b0c; }
.home-hero.video-ready { background: transparent; }
.home-hero .welcome-bg-video { opacity: 0; transition: opacity .3s ease; }
.home-hero.video-ready .welcome-bg-video { opacity: 1; }
.home-hero-content { position: relative; z-index: 2; margin: 0 auto; text-align: center; }
.home-hero .home-hero-content { max-width: 820px; }
.home-hero-content h1 { font-size: clamp(2.1rem, 4vw, 58px); font-weight: 800; letter-spacing: -1px; line-height: 1.4; margin: 0 0 32px; }
.home-hero-content .business-hero-actions { justify-content: center; }
.home-hero-content .button, .home-cta-band .button { padding: 16px 40px; font-size: 16px; line-height: 1.5; }
.home-hero-content .button-primary, .home-cta-band .button-primary { background: #fff; color: #0b0b0c; }
.home-hero-content .button-primary:hover, .home-cta-band .button-primary:hover { background: #e4e4e4; }
.home-hero-content .button-ghost { color: white; border-color: rgba(255,255,255,.5); }
.home-hero .home-hero-content .eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,.6); margin-bottom: 24px; display: block; }
.home-hero .welcome-bg-video { position: fixed; z-index: -2; }
.home-hero .welcome-bg-dim { position: fixed; z-index: -1; background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.2) 40%, rgba(0,0,0,.5)), rgba(10,10,10,.42); opacity: 1; }
/* .eyebrow and h1 span both default to var(--gold)/(--gold-dark) (#0b0b0c),
   correct on the site's light pages but invisible against a dark hero
   background - still true for .seo-hero (SEO landing pages, out of scope for
   the design-authority pass, left dark on purpose). .business-hero is light
   now (see above), so it no longer needs this override - the default ink
   color already reads correctly there. */
.business-hero .eyebrow, .seo-hero .eyebrow { color: #c9c7c2; }
.business-hero h1 span, .seo-hero h1 span { color: #fff; }
.breadcrumbs { color: #9ba6b0; font-size: .8rem; margin-bottom: 24px; }
.breadcrumbs a { color: #cfd6dc; }
.seo-layout { max-width: 1180px; margin: 0 auto; padding: clamp(42px,7vw,90px) clamp(18px,4vw,48px); display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: clamp(25px,5vw,65px); align-items: start; }
.seo-main, .seo-article { min-width: 0; }
.seo-section, .seo-article > section { background: white; border-radius: 20px; padding: clamp(23px,4vw,42px); margin-bottom: 16px; scroll-margin-top: 20px; }
.seo-section h2, .seo-article > section h2 { font-size: clamp(1.8rem,3.5vw,3rem); line-height: 1.12; margin-top: 0; }
.seo-section h3, .seo-article > section h3 { margin-top: 1.8rem; }
.seo-section p, .seo-section li, .seo-article > section p, .seo-article > section li { color: #3f4a55; }
.seo-section li, .seo-article > section li { margin-bottom: 8px; }
.seo-aside { position: sticky; top: 22px; background: var(--dark); color: white; border-radius: 20px; padding: 25px; }
.seo-aside h2 { margin-top: 0; }
.seo-aside p { color: #bdc6ce; }
.seo-aside a:not(.button) { color: #f2d39c; }
.seo-aside .button { width: 100%; text-align: center; text-decoration: none; display: block; }
.content-nav { max-width: 1180px; margin: 18px auto 0; padding: 13px clamp(18px,4vw,48px); display: flex; flex-wrap: wrap; gap: 8px; }
.content-nav a { color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 999px; padding: .55rem .85rem; text-decoration: none; font-size: .84rem; font-weight: 800; }
.content-nav a:hover, .content-nav a:focus-visible { color: var(--gold-dark); border-color: var(--gold-dark); }
.seo-check-grid, .seo-card-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.seo-check-grid div, .seo-card-grid article { border: 1px solid var(--line); border-radius: 13px; padding: 16px; background: #faf9f6; }
.seo-check-grid b, .seo-card-grid b { display: block; margin-bottom: 5px; }
.seo-cta { max-width: 1180px; color: white; background: linear-gradient(135deg,#171d24,#242e38); border-radius: 20px; padding: clamp(25px,4vw,42px); margin: 0 auto clamp(42px,7vw,90px); display: flex; justify-content: space-between; gap: 25px; align-items: center; }
.seo-cta h2 { margin: 0 0 6px; }
.seo-cta p { color: #c7d0d9; margin: 0; }
.seo-cta .button { white-space: nowrap; text-decoration: none; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { text-align: right; padding: 12px 9px; border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table th { color: var(--muted); font-size: .8rem; }
.seo-table { width: 100%; border-collapse: collapse; margin: 22px 0; }
.seo-table th, .seo-table td { text-align: right; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.seo-table th { color: var(--muted); font-size: .8rem; }
.seo-steps { list-style: none; padding: 0; counter-reset: seo-step; }
.seo-steps li { position: relative; padding: 13px 52px 13px 0; counter-increment: seo-step; }
.seo-steps li::before { content: counter(seo-step); position: absolute; right: 0; top: 8px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--gold); font-weight: 900; }
.callout, .formula-box { border-right: 4px solid var(--gold); background: #fbf7ef; border-radius: 10px; padding: 18px 20px; margin: 20px 0; }
.callout.warning { border-right-color: #c55b49; background: #fff4f1; }
.formula-box { direction: rtl; font-size: 1.05rem; }
.seo-source-note { border-right: 3px solid var(--gold); background: #fbf7ef; padding: 12px 14px; border-radius: 8px; font-size: .85rem; }
.home-content-hub { grid-column: 1 / -1; margin-top: clamp(30px,5vw,60px); border-top: 1px solid rgba(255,255,255,.09); padding-top: clamp(28px,4vw,48px); }
.home-content-links { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 9px; }
.home-content-links a { color: white; text-decoration: none; border: 1px solid #313b46; border-radius: 14px; padding: 16px; background: rgba(255,255,255,.025); }
.home-content-links b { display: block; color: var(--on-dark); margin-bottom: 5px; }
.home-content-links span { color: #aeb7c1; font-size: .8rem; }

.toast { position: fixed; left: 24px; bottom: 24px; z-index: 30; background: #171c22; color: white; padding: .8rem 1rem; border-radius: 10px; box-shadow: var(--shadow); }

@media (max-width: 860px) {
  .home-hero .home-hero-content h1 { font-size: 35.328px; line-height: 49.46px; }
  .welcome-view { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .questionnaire-shell { grid-template-columns: minmax(0, 1fr); }
  .steps-panel { position: static; }
  .sections-list { display: flex; overflow: auto; gap: 16px; }
  .sections-list li { min-width: 140px; }
  .trust-box { display: none; }
  .verdict-grid { grid-template-columns: 1fr; }
  .score-gauge { margin: auto; }
  .outcome-grid { grid-template-columns: 1fr; }
  .report-columns { grid-template-columns: 1fr; }
  .benefit-grid, .booking-section { grid-template-columns: 1fr; }
  .advisor-targets { grid-template-columns: 1fr; }
  .score-breakdown { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .strategy-grid, .admin-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .who-wants-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .business-hero, .business-value, .lead-section, .seo-layout { grid-template-columns: 1fr; }
  .track-grid, .seo-check-grid, .seo-card-grid, .pricing-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .business-process { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .value-grid { grid-template-columns: 1fr; }
  .seo-aside { position: static; }
  .home-content-links { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 580px) {
  .home-hero .home-hero-content h1 { font-size: 30px; line-height: 42px; }
  .cost-viz { aspect-ratio: 1000 / 1500; max-width: 420px; }
  .ao-cost-card { min-width: 0; width: 44%; padding: 14px 10px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .vehicle-identity-head { flex-direction: column; }
  .vehicle-spec-grid { grid-template-columns: 1fr; }
  .site-header { height: 68px; padding: 0 15px; }
  .brand small { display: none; }
  .header-nav { display: none; }
  .view { min-height: calc(100vh - 68px); }
  .choice-grid, .subgrid { grid-template-columns: 1fr; }
  .question-card { padding: 26px 20px; border-radius: 18px; }
  .questionnaire-shell { padding: 15px 10px 30px; gap: 14px; }
  .steps-panel { border-radius: 15px; padding: 17px; }
  .report-toolbar { align-items: start; flex-direction: column; }
  .toolbar-actions { width: 100%; }
  .toolbar-actions .button { flex: 1; }
  .report-view { padding: 14px 8px; }
  .report-page { padding: 25px 18px; border-radius: 16px; }
  .page-nav { grid-template-columns: 1fr 1fr; }
  .page-nav span { grid-column: 1 / -1; grid-row: 1; text-align: center; }
  .welcome-view { padding: 42px 19px; }
  .how-it-works { margin-top: 30px; }
  .booking-section { padding: 0 10px; }
  .booking-copy, .booking-card { border-radius: 16px; padding: 23px 18px; }
  .slot-list, .checklist { grid-template-columns: 1fr; }
  .report-booking-cta, .site-footer, .admin-header { align-items: stretch; flex-direction: column; }
  .score-breakdown { grid-template-columns: 1fr 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  .whatsapp-float { left: 12px; bottom: 12px; padding: .7rem .9rem; }
  .header-cta { display: none; }
  .business-hero { min-height: auto; padding: 82px 19px 48px; }
  .business-hero h1, .seo-hero h1 { font-size: clamp(2.45rem,13vw,4.2rem); }
  .business-hero-actions .button { width: 100%; text-align: center; }
  .business-section { padding: 48px 15px; }
  .track-choice-row, .business-process, .home-content-links { grid-template-columns: 1fr; }
  .seo-layout { padding: 24px 10px 50px; }
  .seo-section, .seo-article > section { border-radius: 15px; padding: 23px 18px; }
  .seo-cta { align-items: stretch; flex-direction: column; }
  .seo-cta .button { text-align: center; }
  .content-nav { padding: 10px; overflow-x: auto; flex-wrap: nowrap; }
  .content-nav a { flex: 0 0 auto; }
  .seo-table { display: block; overflow-x: auto; white-space: normal; }
}

@media print {
  body { background: white; }
  .site-header, .ao-nav, .report-toolbar, .page-nav, .site-extra, .site-footer, .ao-footer, .whatsapp-float, .feedback-block, .report-booking-cta { display: none !important; }
  .report-view { max-width: none; padding: 0; }
  .report-pages { display: block; }
  .report-page { display: block !important; box-shadow: none; border-radius: 0; min-height: 0; break-after: page; padding: 15mm; position: relative; padding-bottom: 30mm; }
  .report-page-footer {
    display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center;
    position: absolute; bottom: 10mm; right: 15mm; left: 15mm;
    border-top: 1px solid var(--line); padding-top: 8px;
  }
  .report-page-footer__brand { font-weight: 800; font-size: .78rem; letter-spacing: .04em; }
  .report-page-footer__meta { color: var(--muted); font-size: .68rem; }
  .report-page-footer__disclaimer { color: var(--muted); font-size: .6rem; line-height: 1.4; max-width: 140mm; }
}

/* ===================================================================
   Homepage v2 — imported from the Claude Design "website 0.2" handoff
   (react-source/src/pages/Home.jsx + components/Nav.jsx), reproduced as
   static markup. Nav deviates from the handoff by explicit request:
   background is always white (not transparent-over-hero), links sit next
   to the existing "AO" logo mark on the right instead of centered.
   =================================================================== */
.ao-home { position: relative; background: transparent; overflow-x: hidden; }

.ao-nav {
  position: fixed; top: 0; right: 0; left: 0; z-index: 50;
  display: flex; align-items: center; gap: 36px;
  padding: 10px 48px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0);
  transition: background .4s, box-shadow .3s ease, padding .4s;
}
.ao-nav.is-scrolled { box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.ao-nav__brand { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin: -2px; }
.ao-nav .brand-mark { width: 40px; height: 40px; font-size: .82rem; font-weight: 700; border-radius: 8px; background: var(--dark); color: var(--on-dark); border-color: rgba(255,255,255,.5); }
.ao-nav__links { display: flex; align-items: center; gap: 30px; }
.ao-nav__links a { font-size: 15px; font-weight: 500; color: var(--ink); transition: color .2s ease; }
.ao-nav__links a:hover { color: var(--muted); }
.ao-nav__links a:active { color: var(--ink); }
.ao-nav__actions { display: flex; align-items: center; gap: 20px; margin-inline-start: auto; }
.ao-nav__cta { border: 1.5px solid var(--ink); color: var(--ink); padding: 7px 21px; border-radius: 100px; font-size: 14px; font-weight: 600; min-height: 36px; display: inline-flex; align-items: center; transition: background-color .2s ease, color .2s ease; }
.ao-nav__cta:hover { background: var(--ink); color: #fff; }
.ao-nav__cta:active { background: var(--muted); }
.ao-nav__burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--canvas); color: var(--ink); align-items: center; justify-content: center; cursor: pointer; }
.ao-nav__mobile-backdrop { position: fixed; inset: 0; z-index: 9996; background: rgba(11,11,12,.4); }
.ao-nav__mobile-backdrop[hidden] { display: none; }
.ao-nav__mobile { position: fixed; top: 0; bottom: 0; right: 0; width: 50%; z-index: 9997; background: #fff; display: flex; flex-direction: column; padding: 24px 28px 32px; box-shadow: -8px 0 32px rgba(0,0,0,.18); }
.ao-nav__mobile[hidden] { display: none; }
.ao-nav__mobile-head { display: flex; align-items: center; justify-content: space-between; }
.ao-nav__mobile-title { font-size: 15px; font-weight: 800; letter-spacing: 1px; color: var(--ink); text-decoration: none; }
.ao-nav__mobile-close { display: flex; flex-shrink: 0; align-items: center; justify-content: center; width: 44px; height: 44px; margin-inline-end: -10px; background: none; border: none; color: var(--ink); cursor: pointer; }
.ao-nav__mobile-links { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.ao-nav__mobile-links a { display: block; font-size: 19px; font-weight: 600; letter-spacing: -.2px; color: var(--ink); text-decoration: none; padding: 8px 0; }
.ao-nav__mobile-cta { margin-top: auto; display: flex; align-items: center; justify-content: center; background: var(--ink); color: #fff; text-decoration: none; padding: 16px; border-radius: 100px; font-size: 15px; font-weight: 700; }
@media (max-width: 860px) {
  .ao-nav__links, .ao-nav__actions .ao-nav__cta, .ao-nav__brand { display: none; }
  .ao-nav__burger { display: flex; }
  .ao-nav { flex-direction: row; align-items: center; justify-content: flex-start; padding: 10px 20px; }
  .ao-nav__actions { margin-inline-start: 0; }
}
.ao-floating { position: fixed; bottom: 24px; right: 24px; z-index: 9998; display: flex; flex-direction: column; gap: 12px; }
.ao-floating__whatsapp { width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,.25); }

.ao-tel-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(8px); z-index: 9999; background: var(--ink); color: #fff; font-size: 14px; font-weight: 700; padding: 12px 22px; border-radius: 100px; box-shadow: 0 12px 32px rgba(0,0,0,.22); opacity: 0; transition: opacity .25s ease, transform .25s ease; pointer-events: none; }
.ao-tel-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (prefers-reduced-motion: reduce) { .ao-tel-toast { transition: opacity .01ms; } }

.ao-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.ao-container--narrow { max-width: 840px; }
.ao-center { text-align: center; }
.ao-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; color: var(--muted-2); margin-bottom: 16px; text-transform: uppercase; }
.ao-h2 { font-size: clamp(28px, 3.2vw, 44px); font-weight: 800; line-height: 1.25; margin: 0 0 28px; color: var(--ink); letter-spacing: -0.5px; }
.ao-h2--light { color: #fff; }
.ao-lead { font-size: 17px; line-height: 1.85; color: var(--muted); margin: 0 0 14px; }

.ao-btn { display: inline-flex; align-items: center; padding: 16px 40px; border-radius: 100px; font-size: 16px; font-weight: 700; min-height: 44px; transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, border-color .28s ease, background-color .28s ease; }
.ao-btn--primary-light { background: #fff; color: #0b0b0c; }
.ao-btn--primary-light:hover { transform: translateY(-3px) scale(1.02); color: #0b0b0c; box-shadow: 0 14px 32px rgba(0,0,0,.16), 0 0 38px rgba(255,255,255,.4); }
.ao-btn--primary-light:active { transform: translateY(-1px) scale(.99); box-shadow: 0 6px 16px rgba(0,0,0,.14); }
.ao-btn--outline-light { border: 1.5px solid rgba(255,255,255,.5); color: #fff; font-weight: 600; }
.ao-btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; transform: translateY(-3px) scale(1.02); box-shadow: 0 0 32px rgba(255,255,255,.22); }
.ao-btn--outline-light:active { transform: translateY(-1px) scale(.99); background: rgba(255,255,255,.16); }

.ao-hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; background: #0b0b0c; }
.ao-hero.video-ready { background: transparent; }
.ao-hero__video { position: fixed; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; background: #0b0b0c; opacity: 0; transition: opacity .3s ease; }
.ao-hero.video-ready .ao-hero__video { opacity: 1; }
.ao-hero__overlay { position: fixed; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.2) 40%, rgba(0,0,0,.55)); }
.ao-hero__content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.ao-hero__tag { font-size: 12.5px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,.6); margin-bottom: 24px; text-transform: uppercase; }
.ao-hero__title { margin: 0 0 32px; font-size: clamp(30px, 4.6vw, 58px); font-weight: 800; line-height: 1.4; color: #fff; letter-spacing: -1px; max-width: 820px; }
.ao-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.ao-hero__scroll {
  position: absolute; bottom: 32px; left: 50%; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-inline-start: -20px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.8);
}
.ao-hero__scroll-bob { display: flex; }
.ao-hero.hero-in .ao-hero__scroll-bob { animation: ao-hero-scroll-bob 2.2s ease-in-out .8s infinite; }
@keyframes ao-hero-scroll-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

.ao-hero__tag, .ao-hero__scroll {
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.ao-hero.hero-in .ao-hero__tag { opacity: 1; transform: translateY(0); transition-delay: .1s; }
.ao-hero.hero-in .ao-hero__scroll { opacity: 1; transform: translateY(0); transition-delay: .65s; }

/* Headline reveals line by line: each .ao-hero__title-line owns its own
   fade/rise/blur-in with a JS-assigned delay, instead of the title fading
   in as one block. */
.ao-hero__title-line {
  display: inline-block; color: inherit; opacity: 0; transform: translateY(16px); filter: blur(5px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1), filter .5s ease;
}
.ao-hero.hero-in .ao-hero__title-line { opacity: 1; transform: translateY(0); filter: blur(0); }

/* .ao-hero__actions .ao-btn entrance is handled via inline style in JS
   (see script below the markup) so the delay never lingers into hover. */
.ao-hero__actions .ao-btn.ao-entrance-hidden { opacity: 0; transform: translateY(16px); }

/* Shared video-hero pattern, reused (not duplicated) on service entry pages
   whose form must sit inside the hero itself (quick-check/consultation/
   business - see each page's <div class="ao-hero ao-hero--contained">).
   Two deliberate differences from the homepage hero: min-height instead of
   a strict 100vh (a long form must never be clipped), and the video/overlay
   are absolute/contained to this box instead of homepage's fixed/viewport-
   pinned version (so the video never bleeds into unrelated content further
   down these longer pages - it's the opening section's background only). */
.ao-hero--contained { height: auto; min-height: 100vh; overflow: hidden; display: block; padding: clamp(140px,16vw,180px) 24px 64px; }
.ao-hero--contained .ao-hero__video, .ao-hero--contained .ao-hero__overlay { position: absolute; }
.ao-hero--contained .ao-hero__content { max-width: none; }
.ao-hero--contained .ao-hero__lead { max-width: 640px; margin: 0 auto 40px; color: rgba(255,255,255,.85); font-size: clamp(15px,1.6vw,18px); line-height: 1.75; }
.ao-hero--contained .ao-hero__form-wrap { text-align: initial; max-width: 640px; margin: 32px auto 0; }
.ao-hero--contained .ao-hero__form-wrap.ao-hero__form-wrap--wide { max-width: 860px; }
.ao-hero--contained .ao-hero__form-wrap--split { max-width: 900px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: start; }
@media (max-width: 720px) { .ao-hero--contained .ao-hero__form-wrap--split { grid-template-columns: 1fr; } }
.lead-form-title { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.lead-form-sub { margin: 0 0 20px; color: var(--muted); font-size: 14.5px; }

@media (prefers-reduced-motion: reduce) {
  .ao-hero__tag, .ao-hero__scroll, .ao-hero__title-line { opacity: 1; transform: none; filter: none; transition: none; }
  .ao-hero.hero-in .ao-hero__scroll-bob { animation: none; }
  .ao-hero__video { display: none; }
}

.ao-section { padding: 100px 24px; position: relative; z-index: 1; background: rgba(255,255,255,.6); }
.ao-section--tint { background: rgba(247,246,243,.6); }

.ao-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ao-interest-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 36px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, border-color .28s ease; }
.ao-interest-card:hover { transform: translateY(-7px); box-shadow: 0 20px 44px rgba(0,0,0,.13); border-color: rgba(11,11,12,.2); }
.ao-interest-card__who { font-size: 19px; font-weight: 700; color: var(--ink); }
.ao-interest-card__interest { font-size: 14px; color: var(--muted-2); }

.ao-price-car { text-align: center; margin-bottom: 32px; }
.ao-price-car.ao-reveal { transform: scale(.95); }
.ao-price-car.ao-reveal.is-visible { transform: scale(1); }
.ao-price-car__img {
  max-width: 100%; width: 420px; height: auto; aspect-ratio: 793 / 460;
  margin: 0 auto 20px; display: block;
  filter: drop-shadow(0 4px 8px rgba(11,11,12,.15)) drop-shadow(0 18px 30px rgba(11,11,12,.22));
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.ao-price-car:hover .ao-price-car__img { transform: scale(1.03); }
.ao-price-car__price { font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: var(--ink); letter-spacing: -.5px; }
.ao-price-car__caption { font-size: 14px; color: var(--muted-2); margin-top: 6px; }
.ao-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ao-price-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; text-align: center; }
.ao-price-card span { display: block; font-size: 14px; color: var(--muted-2); margin-bottom: 8px; }
.ao-price-card b { font-size: 22px; font-weight: 800; color: #c0392b; }
.ao-price-card--full { grid-column: 1 / -1; }
@media (max-width: 580px) { .ao-price-grid { grid-template-columns: 1fr 1fr; } }

.ao-step-row { display: flex; align-items: center; gap: 28px; padding: 24px 0; border-bottom: 1px solid var(--line); transition: opacity .4s ease; }
.ao-step-row__n { font-size: 13px; font-weight: 700; color: var(--muted-2); width: 26px; flex: none; transition: color .35s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.ao-step-row__title { font-size: clamp(16px, 1.8vw, 20px); font-weight: 600; color: var(--ink); flex: 1; }
.ao-step-row__desc { font-size: 14.5px; line-height: 1.55; color: #6a6a6e; max-width: 320px; text-align: left; flex: none; }
.ao-steps-active .ao-step-row:not(.is-active) { opacity: .55; }
.ao-step-row.is-active .ao-step-row__n { color: #7dd3fc; transform: scale(1.15); }
@media (prefers-reduced-motion: reduce) {
  .ao-steps-active .ao-step-row:not(.is-active) { opacity: 1; }
  .ao-step-row.is-active .ao-step-row__n { transform: none; }
}

.ao-chooser-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 56px; gap: 20px; flex-wrap: wrap; }
.ao-chooser-arrows { display: flex; gap: 10px; flex-shrink: 0; }
.ao-chooser-arrow { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.ao-chooser-arrow:hover { border-color: var(--ink); }
.ao-chooser-arrow:disabled { opacity: .35; cursor: default; pointer-events: none; }
.ao-chooser-track { display: flex; gap: 28px; overflow-x: auto; padding: 8px 4px 24px; scrollbar-width: none; -ms-overflow-style: none; }
.ao-chooser-track::-webkit-scrollbar { display: none; }
.ao-chooser-card { flex: 0 0 340px; display: flex; flex-direction: column; gap: 20px; border: 1.5px solid var(--line); border-radius: 24px; padding: 52px 36px; color: inherit; background: #fff; transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease, border-color .25s ease; }
.ao-chooser-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,.15); border-color: #7dd3fc; }
.ao-chooser-card h3 { font-size: 22px; font-weight: 700; margin: 0; color: var(--ink); }
.ao-chooser-card p { font-size: 15.5px; line-height: 1.8; color: var(--muted); margin: 0; flex: 1; }
.ao-chooser-card__price { display: inline-flex; align-self: flex-start; font-size: 14px; font-weight: 700; color: var(--ink); background: var(--canvas); padding: 6px 14px; border-radius: 100px; }
.ao-chooser-card__cta { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--ink); }

.ao-ai-teaser { display: block; background: rgba(11,11,12,.9); border-radius: 28px; padding: 80px 56px; text-align: center; color: #fff; }
.ao-ai-teaser__badge { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; color: #0b0b0c; background: #fff; padding: 8px 18px; border-radius: 100px; margin-bottom: 28px; }
.ao-ai-teaser p { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }
.ao-ai-teaser__cta { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: #fff; margin-top: 28px; }

.ao-value-row { display: flex; align-items: flex-start; gap: 32px; padding: 36px 0; border-top: 1px solid var(--line); max-width: 760px; margin: 0 auto; }
.ao-value-row__num { flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: #0b0b0c; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 800; color: #fff; }
.ao-value-row h3 { font-size: 21px; font-weight: 700; margin: 0 0 10px; color: var(--ink); }
.ao-value-row p { font-size: 15.5px; line-height: 1.75; color: var(--muted); margin: 0; }

.ao-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ao-testimonial { background: #f7f6f3; border-radius: 20px; padding: 40px 34px; display: flex; flex-direction: column; gap: 24px; }
.ao-testimonial__mark { font-size: 28px; color: #c9c7c2; font-weight: 800; }
.ao-testimonial p { font-size: 16.5px; line-height: 1.75; color: #2b2b2e; margin: 0; flex: 1; }
.ao-testimonial__meta { border-top: 1px solid var(--line); padding-top: 18px; }
.ao-testimonial__name { font-size: 15px; font-weight: 700; color: var(--ink); }
.ao-testimonial__location { font-size: 13.5px; color: var(--muted-2); margin-top: 2px; }

.ao-faq-item { border-bottom: 1px solid #e0ddd6; }
.ao-faq-item__q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 28px 0; text-align: right; font-size: 18px; font-weight: 600; color: var(--ink); }
.ao-faq-item__plus { font-size: 22px; font-weight: 300; color: var(--muted-2); transition: transform .3s ease; }
.ao-faq-item__a { font-size: 16px; line-height: 1.8; color: var(--muted); margin: 0 0 28px; }

.ao-final-cta { position: relative; z-index: 1; padding: 160px 24px; text-align: center; background: rgba(11,11,12,.95); }
.ao-final-cta__sub { font-size: 18px; color: var(--muted-2); margin: 0 0 44px; }
.ao-final-cta__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 860px) {
  .ao-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ao-grid-3 { grid-template-columns: 1fr; }
  .ao-step-row__desc { display: none; }
  .ao-chooser-card { flex-basis: calc(100vw - 88px); padding: 40px 26px; }
  .ao-section { padding: 64px 20px; }
  .ao-interest-card { padding: 28px 16px; }
  .ao-ai-teaser { padding: 48px 28px; }
  .ao-final-cta { padding: 96px 20px; }
}

/* ===================================================================
   Finance Calculator — imported from the Claude Design "website 0.2"
   handoff (react-source/src/pages/FinanceCalculator.jsx), reproduced as
   static markup wired to the shared loan-payment formula in
   public/assets/finance-math.mjs (same module src/finance.mjs imports).
   =================================================================== */
.ao-fin { font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif; background: #f7f6f3; min-height: 100vh; color: var(--ink); }
.ao-fin__nav { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; background: #0b0b0c; }
.ao-fin__logo-link { display: flex; align-items: center; }
.ao-fin__logo { font-size: 13px; }
.ao-fin__back { display: flex; align-items: center; font-size: 14px; color: rgba(255,255,255,.65); padding: 12px 0; margin: -12px 0; }
.ao-fin__header { padding: 56px 24px 20px; max-width: 960px; margin: 0 auto; text-align: center; }
.ao-fin__header h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin: 0 0 14px; letter-spacing: -.5px; }
.ao-fin__header p { font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 600px; margin: 0 auto; }

.ao-fin__rates { max-width: 960px; margin: 24px auto 8px; padding: 10px 24px; background: #0b0b0c; border-radius: 100px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; font-size: 12.5px; color: rgba(255,255,255,.85); }
.ao-fin__rates strong { color: #fff; }
.ao-fin__dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; margin-inline-end: 6px; background: #f59e0b; }
.ao-fin__updated { color: rgba(255,255,255,.35); font-size: 11px; }
.ao-fin__fallback-note { max-width: 960px; margin: 10px auto 0; padding: 10px 24px; font-size: 12.5px; color: #92400e; background: #fef3c7; border-radius: 12px; text-align: center; }

.ao-fin__card { max-width: 960px; margin: 20px auto 0; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.ao-fin__step-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.ao-fin__step-num { width: 20px; height: 20px; border-radius: 50%; background: #0b0b0c; color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ao-fin__step-head h2 { font-size: 14.5px; font-weight: 700; margin: 0; }
.ao-fin__tracks { display: flex; flex-direction: column; gap: 8px; }
.ao-fin__track { display: flex; align-items: center; gap: 14px; text-align: right; padding: 16px 18px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; width: 100%; font-family: inherit; }
.ao-fin__track.is-selected { border-color: #0b0b0c; background: #0b0b0c; color: #fff; }
.ao-fin__radio { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; border: 2px solid #c7c5c0; display: inline-block; }
.ao-fin__track.is-selected .ao-fin__radio { border-color: #fff; background: #0b0b0c; }
.ao-fin__track-label { font-size: 13.5px; font-weight: 700; display: block; }
.ao-fin__track-desc { font-size: 12px; display: block; margin-top: 2px; opacity: .85; line-height: 1.4; }
.ao-fin__field { margin-top: 18px; }
.ao-fin__field label, .ao-fin__label { display: block; font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.ao-fin__field input { width: 100%; box-sizing: border-box; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); font-size: 16px; font-family: inherit; }
.ao-fin__error { color: #c0392b; font-size: 13px; margin-top: 6px; }
.ao-fin__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ao-fin__pill { padding: 11px 18px; border-radius: 100px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; }
.ao-fin__pill.is-selected { border-color: #0b0b0c; background: #0b0b0c; color: #fff; }
.ao-fin__note { margin-top: 14px; font-size: 13px; color: var(--muted); }

.ao-fin__slider-box { margin: 6px 0 14px; padding: 12px; background: #f7f6f3; border-radius: 12px; }
.ao-fin__slider-value { text-align: center; font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.ao-fin__balloon-amt { font-size: 13px; color: #8a8a8e; margin-inline-start: 6px; font-weight: 600; }
.ao-fin__slider-labels { display: flex; justify-content: space-between; font-size: 11px; color: #8a8a8e; margin-top: 4px; direction: ltr; }
.ao-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 10px; border-radius: 100px; background: linear-gradient(to right, #0b0b0c 0%, #0b0b0c var(--pct), var(--line) var(--pct), var(--line) 100%); outline: none; cursor: pointer; direction: ltr; }
.ao-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #0b0b0c; cursor: grab; }
.ao-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #0b0b0c; border: none; cursor: grab; }

.ao-fin__result { margin-top: 16px; background: #0b0b0c; border-radius: 16px; padding: 20px; color: #fff; }
.ao-fin__result-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; font-size: 12.5px; color: rgba(255,255,255,.5); }
.ao-fin__result-brand { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,.35); text-transform: uppercase; }
.ao-fin__result-main { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.ao-fin__result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.15); font-size: 16px; font-weight: 700; }
.ao-fin__result-grid div div { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 400; margin-bottom: 4px; }

.ao-fin__compare { max-width: 960px; margin: 32px auto 0; padding: 0 24px 32px; }
.ao-fin__compare h2 { font-size: 20px; font-weight: 800; margin: 0 0 6px; }
.ao-fin__compare > p { font-size: 13.5px; color: #8a8a8e; margin: 0 0 18px; }
.ao-fin__table-wrap { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 12px; overflow-x: auto; }
.ao-fin__table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 640px; }
.ao-fin__table th { text-align: right; padding: 12px 10px; color: #8a8a8e; border-bottom: 1px solid var(--line); }
.ao-fin__table td { padding: 12px 10px; border-bottom: 1px solid #f0efec; }
.ao-fin__table td:first-child { font-weight: 700; }
.ao-fin__disclaimer { font-size: 13px; color: #8a8a8e; line-height: 1.7; margin: 16px 0 0; }

.ao-fin__cta { max-width: 960px; margin: 0 auto; padding: 0 24px 60px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.ao-fin__cta p { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 22px auto 14px; max-width: 480px; }
.ao-fin__cta-btn { display: inline-flex; align-items: center; justify-content: center; background: #0b0b0c; color: #fff; padding: 16px 40px; border-radius: 100px; font-size: 15px; font-weight: 700; min-height: 44px; margin-bottom: 22px; }

@media (max-width: 720px) { .ao-fin__rates { grid-template-columns: repeat(2,1fr); } }

/* Homepage footer — imported from components/Footer.jsx, homepage-scoped
   (production's shared .site-footer on other pages is untouched). */
.ao-footer { position: relative; z-index: 1; padding: 80px 24px 40px; border-top: 1px solid var(--line); background: #fff; }
.ao-footer__inner { max-width: 1160px; margin: 0 auto; }
.ao-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.ao-footer__logo { width: 24px; height: 24px; font-size: .68rem; border-radius: 6px; margin-bottom: 18px; }
.ao-footer__grid p { font-size: 14.5px; line-height: 1.75; color: var(--muted-2); margin: 0; max-width: 280px; }
.ao-footer__heading { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.ao-footer__links, .ao-footer__contact { display: flex; flex-direction: column; margin: -12px 0; }
.ao-footer__links a, .ao-footer__contact a { font-size: 14px; color: var(--muted); padding: 12px 0; }
.ao-footer__bottom { border-top: 1px solid var(--line); padding-top: 12px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 4px 12px; font-size: 13.5px; color: var(--muted-2); }
.ao-footer__legal { display: flex; gap: 4px; margin: -12px -6px; }
.ao-footer__legal a { color: var(--muted-2); text-decoration: underline; padding: 12px 6px; }
.ao-footer__legal a:hover { color: var(--muted); }
@media (max-width: 860px) { .ao-footer__grid { grid-template-columns: 1fr; } }

.ao-reveal { opacity: 0; transform: translateY(28px); filter: blur(5px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.ao-reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.ao-reveal-scale { opacity: 0; transform: scale(.96); filter: blur(5px); transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.ao-reveal-scale.is-visible { opacity: 1; transform: scale(1); filter: blur(0); }

/* Storytelling reveal: label -> headline (line by line) -> copy -> CTA, each
   step staggered a little further via a JS-assigned transition-delay. */
.ao-story__step, .ao-story-line { opacity: 0; transform: translateY(14px); filter: blur(6px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.ao-story.is-visible .ao-story__step,
.ao-story.is-visible .ao-story-line { opacity: 1; transform: translateY(0); filter: blur(0); }

.ao-focus-section { opacity: .92; filter: brightness(.98); transition: opacity .6s ease, filter .6s ease; }
.ao-focus-section.is-focused { opacity: 1; filter: brightness(1); }

@media (prefers-reduced-motion: reduce) {
  .ao-reveal, .ao-reveal-scale, .ao-story__step, .ao-story-line { opacity: 1; transform: none; filter: none; transition: none; }
  .ao-focus-section { opacity: 1; filter: none; transition: none; }
}

/* Selection + focus-visible — ported from react-source/src/styles/global.css,
   scoped to the v2-imported surfaces (homepage + finance calculator) only. */
.ao-home ::selection, .ao-fin ::selection { background: #111; color: #fff; }
.ao-home a:focus-visible, .ao-home button:focus-visible,
.ao-fin a:focus-visible, .ao-fin button:focus-visible {
  outline: 2px solid var(--dark); outline-offset: 3px; border-radius: 4px;
}
