/* ==========================================================
   АВТО108 · Стили для 3 направлений + общих компонентов
   ========================================================== */
:root {
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --bg: oklch(0.98 0.005 240);
  --panel: #ffffff;
  --ink-900: oklch(0.18 0.03 240);
  --ink-800: oklch(0.28 0.025 240);
  --ink-600: oklch(0.45 0.02 240);
  --ink-500: oklch(0.58 0.02 240);
  --ink-400: oklch(0.72 0.015 240);
  --ink-150: oklch(0.93 0.01 240);
  --ink-100: oklch(0.96 0.007 240);

  --line: oklch(0.90 0.012 240);
  --line-soft: oklch(0.94 0.01 240);

  --accent: oklch(0.55 0.16 240);
  --accent-ink: oklch(0.36 0.14 240);
  --accent-soft: oklch(0.94 0.04 240);
  --accent-hover: oklch(0.48 0.17 240);

  --ok: oklch(0.62 0.14 155);
  --ok-soft: oklch(0.94 0.05 155);
  --warn: oklch(0.75 0.15 70);

  --radius: 10px;
  --density: 1;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11', 'ss01';
}

/* ---------- Variant chooser / Tweaks panel ---------- */
.variant-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #0B0E14; color: #fff;
  padding: 8px 20px;
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.variant-bar .brand { font-weight: 700; letter-spacing: 0.08em; color: #fff; margin-right: auto; }
.variant-bar .brand em { color: oklch(0.78 0.14 222); font-style: normal; }
.variant-tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.06); padding: 3px; border-radius: 8px; }
.variant-tab { padding: 6px 14px; border-radius: 5px; color: rgba(255,255,255,0.6); cursor: pointer; border: none; background: transparent; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; }
.variant-tab:hover { color: #fff; }
.variant-tab.active { background: #fff; color: #0B0E14; font-weight: 600; }
.screen-tabs { display: flex; gap: 2px; background: rgba(255,255,255,0.04); padding: 2px; border-radius: 7px; }
.screen-tab { padding: 5px 10px; border-radius: 5px; background: transparent; border: 0; color: rgba(255,255,255,0.55); font-size: 11px; font-family: var(--font-mono); cursor: pointer; text-transform: uppercase; letter-spacing: 0.04em; }
.screen-tab.active { background: rgba(255,255,255,0.12); color: #fff; }

.stage { padding-top: 44px; }

/* ---------- Tweaks panel ---------- */
.tweaks-panel {
  position: fixed; right: 16px; bottom: 16px; z-index: 300;
  width: 280px; background: #0B0E14; color: #fff; border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  padding: 16px; display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h4 { margin: 0 0 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.tweak-row { margin-bottom: 14px; }
.tweak-row label { display: block; font-size: 11px; color: rgba(255,255,255,0.6); margin-bottom: 6px; font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; }
.tweak-swatches { display: flex; gap: 8px; }
.tweak-sw { width: 28px; height: 28px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; }
.tweak-sw.sel { border-color: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,0.2) inset; }
.tweak-seg { display: flex; gap: 2px; background: rgba(255,255,255,0.06); padding: 2px; border-radius: 6px; }
.tweak-seg button { flex: 1; padding: 5px; background: transparent; border: 0; color: rgba(255,255,255,0.55); font-size: 11px; font-family: var(--font-mono); border-radius: 4px; cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase; }
.tweak-seg button.on { background: rgba(255,255,255,0.14); color: #fff; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 14px; border-radius: 8px; font-weight: 600; font-size: 13px; border: 1px solid transparent; cursor: pointer; background: var(--ink-100); color: var(--ink-800); font-family: inherit; transition: all 0.15s; }
.btn svg { flex-shrink: 0; }
.btn:hover { background: var(--ink-150); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--ink-800); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink-800); }
.btn-outline:hover { background: var(--ink-100); }
.btn-lg { padding: 12px 20px; font-size: 14px; }
.btn-block { width: 100%; display: flex; }

/* ---------- Chips ---------- */
.chip { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 5px; background: var(--ink-100); color: var(--ink-600); font-size: 11px; font-weight: 600; letter-spacing: 0.02em; }
.chip-accent { background: oklch(0.94 0.05 30); color: oklch(0.5 0.18 30); }
.chip-ok { background: var(--ok-soft); color: oklch(0.35 0.12 155); }

/* ---------- Topbar ---------- */
.topbar { position: sticky; top: 44px; background: #fff; border-bottom: 1px solid var(--line); z-index: 100; }
.topbar-inner { max-width: var(--container-max); margin: 0 auto; padding: 14px 24px; display: grid; grid-template-columns: auto auto 1fr auto; gap: 20px; align-items: center; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink-900); }
.brand-logo { display: block; height: 64px; width: auto; max-width: 260px; }
.brand-mark { width: 42px; height: 42px; border-radius: 10px; background: var(--ink-900); color: #fff; display: grid; place-items: center; font-family: var(--font-mono); font-weight: 700; font-size: 13px; letter-spacing: -0.02em; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; color: var(--ink-900); }
.brand-sub { font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-500); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 1px; }

.search-bar { display: flex; align-items: center; gap: 8px; background: var(--ink-100); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.search-bar-icon { color: var(--ink-500); display: flex; }
.search-bar input { flex: 1; border: 0; background: transparent; outline: none; font-family: inherit; font-size: 13px; color: var(--ink-900); }
.search-bar input::placeholder { color: var(--ink-500); }
.search-bar kbd { font-family: var(--font-mono); font-size: 10px; background: var(--panel); border: 1px solid var(--line); border-radius: 4px; padding: 2px 6px; color: var(--ink-500); }

.top-actions { display: flex; align-items: center; gap: 6px; }
.top-action { display: flex; flex-direction: column; align-items: center; padding: 6px 12px; text-decoration: none; color: var(--ink-600); font-size: 11px; gap: 3px; cursor: pointer; border-radius: 6px; position: relative; }
.top-action:hover { background: var(--ink-100); color: var(--ink-900); }
.top-action .badge { position: absolute; top: 2px; right: 4px; background: var(--accent); color: #fff; font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 8px; min-width: 14px; text-align: center; }
.top-phone { padding-left: 16px; margin-left: 6px; border-left: 1px solid var(--line); font-weight: 700; color: var(--ink-900); font-size: 14px; display: flex; align-items: center; letter-spacing: -0.01em; }

/* ---------- Category strip ---------- */
.cat-strip { background: var(--panel); border-bottom: 1px solid var(--line); margin-top: 14px; padding-bottom: 3px; }
.cat-strip-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 2px; overflow-x: auto; }
.cat-strip-link { padding: 12px 14px; font-size: 13px; font-weight: 500; color: var(--ink-600); text-decoration: none; white-space: nowrap; border-bottom: 2px solid transparent; display: flex; align-items: center; gap: 6px; }
.cat-strip-link:hover { color: var(--ink-900); }
.cat-strip-link.active { color: var(--ink-900); border-bottom-color: var(--ink-900); font-weight: 600; }
.cat-strip-link .ico { display: inline-flex; color: var(--accent); }
.cat-strip-group { display: flex; align-items: center; gap: 2px; }
/* Стиль перенесён из прототипа Claude Design (.cat-strip-info / .cat-strip-info-cta):
 * скруглённый прямоугольник (10px) вместо пилюли, CTA «Оптовикам» — бренд-синий
 * var(--accent) с белой точкой-ореолом, hover → var(--ink-900). */
.cat-strip-group--right { margin-left: auto; gap: 2px; background: var(--accent-soft); border-radius: 10px; padding: 4px; }
.cat-strip-group--right .cat-strip-link { background: transparent; color: var(--accent-ink); border-radius: 7px; border-bottom: none; padding: 7px 12px; font-size: 12.5px; font-weight: 600; letter-spacing: -0.005em; transition: background 0.15s, color 0.15s; }
.cat-strip-group--right .cat-strip-link:hover { background: var(--accent); color: #fff; }
.cat-strip-group--right .cat-strip-link:last-child { background: var(--accent); color: #fff; }
.cat-strip-group--right .cat-strip-link:last-child::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.25); }
.cat-strip-group--right .cat-strip-link:last-child:hover { background: var(--ink-900); }

/* ---------- Section head ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 24px; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; margin: 16px 0 12px; }
.sec-head--gap-lg { margin-top: 26px; }
.sec-head h2 { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--ink-900); }
.sec-head .sub { font-size: 12.5px; color: var(--ink-500); margin-top: 4px; }
.sec-head-link { color: var(--accent); font-weight: 600; font-size: 13px; text-decoration: none; }

/* ---------- Crumbs ---------- */
.crumbs { max-width: var(--container-max); margin: 0 auto; padding: 14px 24px 0; font-size: 12px; color: var(--ink-500); }
.crumbs a { color: var(--ink-600); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { margin: 0 8px; color: var(--ink-400); }
.crumbs .cur { color: var(--ink-900); font-weight: 500; }

/* ---------- SVG placeholders ---------- */
.hl-svg-wrap { width: 100%; height: 100%; display: grid; place-items: center; position: relative; }
.hl-svg { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; }
.hl-svg-tag { position: absolute; bottom: 8px; left: 8px; font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-500); letter-spacing: 0.08em; background: rgba(255,255,255,0.85); padding: 3px 6px; border-radius: 3px; backdrop-filter: blur(4px); text-transform: uppercase; }

/* ============================================================
   V1 · MARKETPLACE STANDARD
   ============================================================ */
.v1-hero { background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 100%); padding: 32px 24px 16px; }
.v1-hero-inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 480px; gap: 32px; align-items: stretch; }
.v1-hero-eyebrow { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.v1-hero-h1 { font-family: var(--font-display); font-size: 44px; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--ink-900); margin: 0 0 14px; }
.v1-hero-h1 em { font-style: normal; color: var(--accent); }
.v1-hero-pitch p { font-size: 15px; color: var(--ink-600); line-height: 1.55; max-width: 560px; margin: 0 0 24px; }
.v1-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 500px; }
.v1-hero-cta { display: flex; flex-wrap: wrap; gap: 10px; max-width: 540px; }
.v1-hero-cta .btn { flex: 1 1 auto; min-width: 180px; }
.v1-svc { background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 10px; padding: 14px; }
.v1-svc-title { font-weight: 700; color: var(--ink-900); font-size: 15px; }
.v1-svc-sub { font-size: 11px; color: var(--ink-500); margin-top: 3px; font-family: var(--font-mono); }

.v1-finder { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; box-shadow: 0 4px 18px rgba(0,0,0,0.04); }
.v1-finder h3 { margin: 0 0 4px; font-family: var(--font-display); font-size: 18px; letter-spacing: -0.01em; color: var(--ink-900); display: flex; align-items: center; gap: 10px; }
.v1-finder h3 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px var(--ok-soft); }
.v1-finder .hint { font-size: 12px; color: var(--ink-500); margin-bottom: 18px; }
.v1-finder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.v1-sel { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.v1-sel span { font-size: 11px; color: var(--ink-500); font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.v1-sel select { appearance: none; width: 100%; max-width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--ink-100); font-size: 13px; color: var(--ink-900); font-family: inherit; cursor: pointer; }
.v1-sel select:disabled { cursor: not-allowed; opacity: 0.5; background: #f5f5f7; color: var(--ink-500); }

/* ——— Поисковый комбобокс (combobox.js) — апгрейд нативных select в finder'е ——— */
.v1-combo-native { display: none; }
.v1-combo { position: relative; width: 100%; }
.v1-combo-input {
  appearance: none; width: 100%; max-width: 100%;
  padding: 10px 32px 10px 12px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--ink-100); font-size: 13px; color: var(--ink-900);
  font-family: inherit; cursor: pointer; box-sizing: border-box;
}
.v1-combo-input::placeholder { color: var(--ink-500); }
.v1-combo-input:focus { outline: none; border-color: var(--accent); background: #fff; }
.v1-combo-input:disabled { cursor: not-allowed; opacity: 0.5; background: #f5f5f7; color: var(--ink-500); }
.v1-combo-chev {
  position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
  color: var(--ink-500); pointer-events: none; display: flex;
  transition: transform 0.15s ease;
}
.v1-combo.is-open .v1-combo-chev { transform: translateY(-50%) rotate(180deg); }
.v1-combo.is-disabled .v1-combo-chev { opacity: 0.4; }
.v1-combo-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 60;
  margin: 0; padding: 4px; list-style: none;
  max-height: 248px; overflow-y: auto;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 8px 28px rgba(2, 17, 56, 0.14);
}
.v1-combo-opt {
  padding: 9px 10px; border-radius: 6px; font-size: 13px; color: var(--ink-900);
  cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v1-combo-opt:hover, .v1-combo-opt.is-active { background: var(--ink-100); }
.v1-combo-opt.is-selected { color: var(--accent); font-weight: 600; }
.v1-combo-empty { padding: 9px 10px; font-size: 12.5px; color: var(--ink-500); }
.v1-finder-actions { display: flex; align-items: center; gap: 16px; }
.v1-finder-actions .btn { flex: 1; }
.v1-finder-actions .btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.by-vin { color: var(--accent); font-size: 12.5px; font-weight: 600; text-decoration: none; white-space: nowrap; cursor: pointer; }

.v1-promo-row { max-width: var(--container-max); margin: 24px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.v1-promo { display: flex; align-items: center; gap: 12px; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.v1-promo-ico { width: 38px; height: 38px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; flex-shrink: 0; }
.v1-promo b { display: block; font-size: 13px; color: var(--ink-900); }
.v1-promo small { font-size: 11px; color: var(--ink-500); font-family: var(--font-mono); }

.v1-cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.v1-cat { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0; cursor: pointer; text-decoration: none; color: inherit; transition: all 0.15s; overflow: hidden; }
.v1-cat:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.v1-cat-img { position: relative; aspect-ratio: 5/3; background: var(--ink-100); overflow: hidden; }
.v1-cat-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.v1-cat-img .hl-svg { width: 100%; height: 100%; display: block; }
.v1-cat-count { position: absolute; top: 8px; right: 8px; z-index: 2; font-family: var(--font-mono); font-size: 10px; background: var(--ink-900); color: #fff; padding: 3px 7px; border-radius: 4px; letter-spacing: 0.04em; }
.v1-cat-name { padding: 10px 12px 12px; text-align: center; font-weight: 700; color: var(--ink-900); font-size: 14px; }
.v1-cat-price { font-size: 11.5px; color: var(--ink-500); font-family: var(--font-mono); letter-spacing: 0.02em; }

.v1-prods { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.v1-prod { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px; cursor: pointer; transition: all 0.15s; }
.v1-prod:hover { border-color: var(--ink-400); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.v1-prod-img { position: relative; aspect-ratio: 4/3; background: var(--ink-100); border-radius: 8px; overflow: hidden; margin-bottom: 10px; }
.v1-prod-flags { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.v1-prod-fav { position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; background: rgba(255,255,255,0.9); border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink-500); cursor: pointer; }
.v1-prod-fav:hover { color: var(--accent); }
.v1-prod-art { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-500); letter-spacing: 0.02em; margin-bottom: 4px; }
.v1-prod-name { font-weight: 600; color: var(--ink-900); font-size: 13px; line-height: 1.35; margin-bottom: 8px; text-wrap: pretty; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; height: calc(1.35em * 3); }
.v1-prod-meta { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.v1-prod-stock { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--ok); margin-bottom: 10px; font-family: var(--font-mono); }
.v1-prod-stock .dot { width: 6px; height: 6px; background: var(--ok); border-radius: 50%; box-shadow: 0 0 0 3px var(--ok-soft); }
.v1-prod-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.v1-prod-price .price { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--ink-900); letter-spacing: -0.01em; }
.v1-prod-price .old { text-decoration: line-through; color: var(--ink-400); font-size: 12px; }
.v1-prod-buy { display: flex; gap: 6px; margin-top: auto; }
.v1-prod-buy .btn-primary { flex: 1; padding: 9px; font-size: 12px; }
.v1-prod-buy .btn-outline { padding: 9px 12px; }

/* V1 Results */
.v1-car-banner { display: flex; align-items: center; gap: 14px; background: var(--accent-soft); border: 1px solid oklch(0.85 0.08 240); border-radius: 12px; padding: 16px 20px; margin-bottom: 20px; }
.v1-car-banner-ico { width: 44px; height: 44px; background: var(--accent); color: #fff; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.v1-car-banner-text { flex: 1; }
.v1-car-banner-text b { color: var(--ink-900); font-size: 15px; display: block; }
.v1-car-banner-text p { margin: 2px 0 0; font-size: 12px; color: var(--ink-600); font-family: var(--font-mono); }
.v1-car-banner-btn { padding: 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-size: 12.5px; font-weight: 600; color: var(--accent); cursor: pointer; text-decoration: none; }

.v1-results { display: grid; grid-template-columns: 260px 1fr; gap: 20px; }
.v1-filters { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; position: sticky; top: 156px; align-self: start; }
.v1-filters h4 { margin: 0 0 14px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-900); display: flex; justify-content: space-between; }
.v1-filters h4 a { font-size: 11px; color: var(--accent); text-transform: none; letter-spacing: 0; font-weight: 500; text-decoration: none; }
.v1-fgroup { border-top: 1px solid var(--line-soft); padding: 14px 0; }
.v1-fgroup h5 { margin: 0 0 10px; font-size: 12px; font-weight: 700; color: var(--ink-900); letter-spacing: 0.02em; }
.v1-fopt { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 12.5px; color: var(--ink-700); cursor: pointer; }
.v1-fopt input { margin: 0; accent-color: var(--accent); }
.v1-fopt span { flex: 1; }
.v1-fopt .count { color: var(--ink-400); font-family: var(--font-mono); font-size: 11px; }

.v1-results-main { min-width: 0; }
.v1-results-head { display: flex; justify-content: space-between; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 16px; margin-bottom: 10px; }
.v1-results-head .left { font-size: 13px; color: var(--ink-600); }
.v1-results-head .left b { color: var(--ink-900); }
.v1-results-head .right { display: flex; align-items: center; gap: 10px; }
.v1-results-head select { padding: 6px 26px 6px 10px; font-size: 12.5px; background: var(--ink-100); border: 1px solid var(--line); border-radius: 6px; color: var(--ink-800); }

/* V1 PDP — полные стили в css/blocks/pdp.css */
.v1-pdp-tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.v1-pdp-tab { padding: 14px 18px; font-size: 13px; font-weight: 600; color: var(--ink-600); cursor: pointer; border-bottom: 2px solid transparent; text-decoration: none; }
.v1-pdp-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.v1-pdp-body { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.v1-pdp-body h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 18px; letter-spacing: -0.01em; color: var(--ink-900); }
.v1-pdp-body p { margin: 0 0 10px; font-size: 13.5px; line-height: 1.65; color: var(--ink-700); text-wrap: pretty; }
.v1-fit-list { list-style: none; padding: 0; margin: 0; }
.v1-fit-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line-soft); font-size: 13px; }
.v1-fit-list .k { font-weight: 600; color: var(--ink-900); }
.v1-fit-list .v { color: var(--ink-500); font-family: var(--font-mono); font-size: 11.5px; }
.v1-stars { color: var(--warn); font-size: 14px; letter-spacing: -0.03em; }
.v1-buybox .price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.v1-buybox .price { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--ink-900); letter-spacing: -0.02em; }
.v1-buybox .old { text-decoration: line-through; color: var(--ink-400); font-size: 15px; }
.v1-buybox .disc { background: oklch(0.94 0.07 30); color: oklch(0.5 0.18 30); font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 5px; }
.v1-avail { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ok); margin-bottom: 14px; font-weight: 500; }
.v1-buy-row { display: flex; gap: 8px; margin-bottom: 10px; }
.v1-qty { display: flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.v1-qty button { width: 36px; background: var(--ink-100); border: 0; font-size: 18px; color: var(--ink-700); cursor: pointer; }
.v1-qty input { width: 44px; border: 0; text-align: center; font-weight: 700; font-family: inherit; font-size: 14px; }
.v1-delivery { border-top: 1px solid var(--line-soft); margin-top: 12px; padding-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.v1-deliv-row { display: flex; align-items: flex-start; gap: 8px; font-size: 11.5px; }
.v1-deliv-row svg { color: var(--accent); margin-top: 1px; flex-shrink: 0; }
.v1-deliv-row b { display: block; color: var(--ink-900); font-size: 12px; }
.v1-deliv-row span { color: var(--ink-500); font-family: var(--font-mono); }
.v1-service-card { display: flex; align-items: center; gap: 12px; margin-top: 14px; padding: 14px; background: var(--accent-soft); border: 1px dashed var(--accent); border-radius: 12px; }
.v1-service-card .ico { width: 40px; height: 40px; border-radius: 8px; background: var(--accent); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.v1-service-card b { display: block; font-size: 13px; color: var(--ink-900); }
.v1-service-card small { font-size: 11.5px; color: var(--ink-600); font-family: var(--font-mono); }

/* ============================================================
   V2 · TECHNICAL DATASHEET
   ============================================================ */
.v2-hero { background: #0B0E14; color: #fff; padding: 48px 24px 36px; position: relative; overflow: hidden; }
.v2-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 48px 48px; }
.v2-hero-inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; position: relative; }
.v2-hero-eyebrow { font-family: var(--font-mono); font-size: 11px; color: oklch(0.78 0.14 222); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.v2-hero h1 { font-family: var(--font-display); font-size: 48px; font-weight: 800; line-height: 1.05; letter-spacing: -0.028em; margin: 0 0 18px; color: #fff; }
.v2-hero h1 em { font-style: normal; color: oklch(0.78 0.14 222); }
.v2-hero p { color: rgba(255,255,255,0.65); max-width: 560px; font-size: 15px; line-height: 1.55; margin: 0 0 28px; }
.v2-hero-meta { display: grid; grid-template-columns: repeat(4, auto); gap: 28px; margin-bottom: 28px; }
.v2-meta-item .label { font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.v2-meta-item .val { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.v2-meta-item .val small { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.45); margin-left: 3px; }
.v2-hero-cta { display: flex; gap: 10px; }
.v2-hero-cta .btn-outline { border-color: rgba(255,255,255,0.2); color: #fff; }
.v2-hero-cta .btn-outline:hover { background: rgba(255,255,255,0.08); }

.v2-spec-panel { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; backdrop-filter: blur(10px); }
.v2-spec-panel-head { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08); font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; }
.v2-spec-panel-head .dot { width: 8px; height: 8px; border-radius: 50%; background: oklch(0.72 0.18 150); box-shadow: 0 0 12px oklch(0.72 0.18 150); }
.v2-spec-panel-body { padding: 4px 0; }
.v2-spec-row { display: grid; grid-template-columns: 1fr auto 72px; gap: 14px; padding: 10px 18px; border-bottom: 1px solid rgba(255,255,255,0.04); align-items: center; }
.v2-spec-row:last-child { border-bottom: 0; }
.v2-spec-row .k { font-size: 12.5px; color: rgba(255,255,255,0.6); }
.v2-spec-row .v { font-family: var(--font-mono); font-size: 13px; color: #fff; font-weight: 600; }
.v2-spec-row .tag { font-family: var(--font-mono); font-size: 9.5px; color: oklch(0.78 0.14 222); letter-spacing: 0.08em; text-align: right; }
.v2-spec-panel-foot { display: flex; justify-content: space-between; padding: 12px 18px; background: rgba(0,0,0,0.25); font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; border-top: 1px solid rgba(255,255,255,0.05); }

.v2-finder-wrap { background: #0B0E14; padding: 0 24px 36px; }
.v2-finder { max-width: var(--container-max); margin: 0 auto; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.v2-finder-head { padding: 18px 22px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; background: rgba(0,0,0,0.25); }
.v2-finder-head h2 { margin: 0; font-size: 18px; color: #fff; letter-spacing: -0.01em; font-family: var(--font-display); }
.v2-finder-head p { margin: 4px 0 0; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; }
.v2-finder-row { display: grid; grid-template-columns: 40px repeat(4, 1fr) 180px; }
.v2-finder-idx { display: grid; place-items: center; font-family: var(--font-mono); color: oklch(0.78 0.14 222); font-size: 14px; background: rgba(255,255,255,0.04); }
.v2-finder-cell { padding: 14px 18px; border-right: 1px solid rgba(255,255,255,0.06); }
.v2-finder-cell label { display: block; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.v2-finder-cell select { width: 100%; background: transparent; border: 0; color: #fff; font-size: 14px; font-weight: 600; font-family: inherit; appearance: none; outline: none; }
.v2-finder-cell select option { background: #0B0E14; }
.v2-finder-btn { background: oklch(0.55 0.16 222); color: #fff; border: 0; font-family: var(--font-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; cursor: pointer; }
.v2-finder-btn:hover { background: oklch(0.6 0.17 222); }

.v2-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 6px; }
.v2-service { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 20px; }
.v2-service-n { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 12px; }
.v2-service h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; color: var(--ink-900); }
.v2-service p { font-size: 13px; color: var(--ink-600); line-height: 1.55; margin: 0 0 16px; }
.v2-service-stats { display: flex; gap: 16px; padding-top: 14px; border-top: 1px solid var(--line-soft); font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-500); letter-spacing: 0.06em; }
.v2-service-stats b { color: var(--ink-900); font-family: var(--font-display); font-size: 13px; letter-spacing: -0.01em; display: block; margin-top: 2px; }

.v2-cat-table { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.v2-cat-table table { width: 100%; border-collapse: collapse; }
.v2-cat-table th { text-align: left; padding: 12px 14px; background: var(--ink-100); font-size: 10.5px; font-family: var(--font-mono); color: var(--ink-500); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; border-bottom: 1px solid var(--line); }
.v2-cat-table td { padding: 12px 14px; border-bottom: 1px solid var(--line-soft); font-size: 13px; vertical-align: middle; color: var(--ink-800); }
.v2-cat-table tr { cursor: pointer; }
.v2-cat-table tr:hover td { background: var(--ink-100); }
.v2-cat-table tr:last-child td { border-bottom: 0; }
.v2-cat-thumb { width: 56px; height: 40px; background: var(--ink-100); border-radius: 6px; overflow: hidden; }
.v2-cat-table .mono { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-600); }

/* V2 Results */
.v2-vehicle-bar { background: #0B0E14; color: #fff; border-radius: 10px; padding: 16px 20px; display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.v2-vehicle-bar .ico { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; color: oklch(0.78 0.14 222); }
.v2-vehicle-bar > div:nth-child(2) { flex: 1; }
.v2-vehicle-bar b { font-size: 14px; }
.v2-vehicle-bar .mono { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; margin-top: 3px; display: block; }
.v2-vehicle-bar .edit { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 8px 14px; border-radius: 8px; cursor: pointer; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; }

.v2-results { display: grid; grid-template-columns: 240px 1fr; gap: 14px; }
.v2-filters { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 0; align-self: start; position: sticky; top: 156px; overflow: hidden; }
.v2-filters-head { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--ink-900); color: #fff; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; }
.v2-fgroup { padding: 14px 16px; border-bottom: 1px solid var(--line-soft); }
.v2-fgroup:last-child { border-bottom: 0; }
.v2-fgroup h5 { margin: 0 0 10px; font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-500); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.v2-fopt { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 12.5px; color: var(--ink-700); cursor: pointer; }
.v2-fopt input { margin: 0; accent-color: var(--ink-900); }
.v2-fopt span { flex: 1; }
.v2-fopt .count { color: var(--ink-400); font-family: var(--font-mono); font-size: 10.5px; }
.v2-range { display: flex; gap: 6px; font-size: 12px; }
.v2-range input { flex: 1; padding: 7px 10px; background: var(--ink-100); border: 1px solid var(--line); border-radius: 6px; font-family: var(--font-mono); }

.v2-results-list { display: flex; flex-direction: column; gap: 6px; }
.v2-result-row { display: grid; grid-template-columns: 140px 1fr 220px 160px 160px; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px; align-items: center; cursor: pointer; transition: all 0.15s; }
.v2-result-row:hover { border-color: var(--ink-400); box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.v2-result-img { width: 140px; height: 96px; background: var(--ink-100); border-radius: 6px; overflow: hidden; }
.v2-result-name { font-weight: 700; color: var(--ink-900); font-size: 14px; margin-bottom: 4px; }
.v2-result-art { font-family: var(--font-mono); font-size: 11px; color: var(--ink-500); letter-spacing: 0.04em; margin-bottom: 8px; }
.v2-result-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.v2-result-fit { font-size: 11.5px; color: var(--ink-600); font-family: var(--font-mono); line-height: 1.5; }
.v2-result-fit b { display: block; font-size: 9.5px; color: var(--ink-400); letter-spacing: 0.1em; margin-bottom: 4px; }
.v2-result-price .p { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--ink-900); letter-spacing: -0.02em; }
.v2-result-price .s { font-family: var(--font-mono); font-size: 10.5px; color: var(--ok); margin-top: 4px; }
.v2-result-actions { display: flex; flex-direction: column; gap: 6px; }

/* V2 PDP */
.v2-pdp { display: grid; grid-template-columns: 1fr 420px; gap: 32px; }
.v2-gallery-main { aspect-ratio: 4/3; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-bottom: 10px; position: relative; }
.v2-gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-bottom: 20px; }
.v2-thumb { aspect-ratio: 1; background: var(--ink-100); border: 2px solid transparent; border-radius: 8px; overflow: hidden; cursor: pointer; }
.v2-thumb.active { border-color: var(--ink-900); }
.v2-pdp-specs { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.v2-pdp-specs h3 { margin: 0; padding: 12px 18px; background: var(--ink-900); color: #fff; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.v2-pdp-specs table { width: 100%; border-collapse: collapse; }
.v2-pdp-specs td { padding: 10px 18px; font-size: 13px; border-bottom: 1px solid var(--line-soft); }
.v2-pdp-specs td:first-child { color: var(--ink-500); width: 45%; }
.v2-pdp-specs td:last-child { color: var(--ink-900); font-weight: 600; }
.v2-pdp-specs td.mono, .v2-pdp-specs tr td.mono { font-family: var(--font-mono); font-size: 12px; }

.v2-pdp-title { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.v2-pdp h1 { margin: 0 0 14px; font-family: var(--font-display); font-size: 28px; letter-spacing: -0.02em; color: var(--ink-900); line-height: 1.2; }
.v2-pdp-ids { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 14px; padding: 14px; background: var(--ink-100); border-radius: 8px; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-500); margin-bottom: 16px; }
.v2-pdp-ids b { color: var(--ink-900); font-weight: 700; }
.v2-buybox { background: #0B0E14; color: #fff; border-radius: 12px; padding: 20px; }
.v2-buybox .sub { font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.v2-buybox .price { font-family: var(--font-display); font-size: 36px; font-weight: 800; letter-spacing: -0.025em; color: #fff; }
.v2-buybox hr { border: 0; border-top: 1px solid rgba(255,255,255,0.1); margin: 16px 0; }
.v2-buybox .row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 12.5px; }
.v2-buybox .row .k { color: rgba(255,255,255,0.55); }
.v2-buybox .row .v { color: #fff; font-weight: 600; font-family: var(--font-mono); font-size: 12px; }
.v2-buybox .btn-primary { background: oklch(0.65 0.18 222); }

/* ============================================================
   V3 · BOLD EDITORIAL
   ============================================================ */
.v3-wrap { --v3-accent: oklch(0.68 0.18 42); font-family: var(--font-sans); }

.v3-hero { padding: 24px 24px 0; }
.v3-hero-card { max-width: var(--container-max); margin: 0 auto; background: #0B0E14; color: #fff; border-radius: 28px; padding: 42px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; position: relative; overflow: hidden; min-height: 540px; }
.v3-hero-card::after { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, oklch(0.35 0.1 222 / 0.5), transparent 70%); pointer-events: none; }
.v3-hero-left { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; position: relative; z-index: 2; }
.v3-hero-top { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.v3-hero-year { color: oklch(0.78 0.14 222); }
.v3-hero-h1 { font-family: var(--font-display); font-size: 64px; font-weight: 800; line-height: 0.98; letter-spacing: -0.035em; margin: 0 0 18px; color: #fff; text-wrap: balance; }
.v3-hero-h1 em { font-style: italic; font-weight: 500; color: oklch(0.78 0.14 222); }
.v3-hero-h1 .thin { font-weight: 300; color: rgba(255,255,255,0.55); }
.v3-hero-lead { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 0 28px; }
.v3-hero-foot { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); }
.v3-hero-foot .tag { font-family: var(--font-mono); font-size: 10.5px; padding: 5px 10px; background: rgba(255,255,255,0.06); border-radius: 4px; letter-spacing: 0.1em; color: rgba(255,255,255,0.75); }

.v3-hero-right { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 2; }
.v3-hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.v3-hero-kpi { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 20px; }
.v3-hero-kpi .num { font-family: var(--font-display); font-size: 44px; font-weight: 800; letter-spacing: -0.03em; color: #fff; line-height: 1; margin-bottom: 8px; }
.v3-hero-kpi .lbl { font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.4; }

.v3-finder-panel { background: #fff; color: var(--ink-900); border-radius: 18px; padding: 22px; flex: 1; }
.v3-finder-panel h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; }
.v3-finder-panel p { margin: 0 0 16px; font-size: 13px; color: var(--ink-600); }
.v3-finder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.v3-sel { background: var(--ink-100); padding: 10px 12px; border-radius: 10px; }
.v3-sel label { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--ink-500); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.v3-sel select { width: 100%; background: transparent; border: 0; font-size: 13px; font-weight: 700; color: var(--ink-900); font-family: inherit; appearance: none; outline: none; }

.v3-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.v3-service { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px; min-height: 240px; display: flex; flex-direction: column; position: relative; transition: all 0.15s; cursor: pointer; }
.v3-service:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.v3-service.dark { background: #0B0E14; color: #fff; }
.v3-svc-num { font-family: var(--font-mono); font-size: 11px; color: var(--v3-accent); letter-spacing: 0.14em; margin-bottom: 18px; }
.v3-service h3 { margin: 0 0 14px; font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.v3-service p { font-size: 14px; line-height: 1.55; margin: 0 0 auto; }
.v3-service.dark p { color: rgba(255,255,255,0.7); }
.v3-service:not(.dark) p { color: var(--ink-600); }
.v3-service .arr { position: absolute; bottom: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%; background: var(--v3-accent); color: #fff; display: grid; place-items: center; }
.v3-service.dark .arr { background: #fff; color: var(--ink-900); }

.v3-cats { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.v3-cat { background: var(--ink-100); border-radius: 20px; padding: 20px; display: flex; flex-direction: column; cursor: pointer; transition: all 0.15s; min-height: 220px; }
.v3-cat:hover { background: var(--ink-150); }
.v3-cat.feature { background: #0B0E14; color: #fff; grid-row: 1 / 3; min-height: 452px; }
.v3-cat-eyebrow { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 10px; }
.v3-cat.feature .v3-cat-eyebrow { color: oklch(0.78 0.14 42); }
.v3-cat h4 { margin: 0 0 10px; font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.025em; }
.v3-cat.feature h4 { font-size: 36px; }
.v3-cat.feature p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.7); margin: 0 0 auto; }
.v3-cat-img { flex: 1; background: rgba(255,255,255,0.08); border-radius: 12px; margin: auto 0 10px; overflow: hidden; min-height: 90px; display: grid; place-items: center; }
.v3-cat:not(.feature) .v3-cat-img { background: #fff; }
.v3-cat-meta { display: flex; justify-content: space-between; align-items: baseline; font-size: 11.5px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.1); }
.v3-cat:not(.feature) .v3-cat-meta { border-top-color: var(--line); }
.v3-cat-meta span { font-family: var(--font-mono); color: var(--ink-500); letter-spacing: 0.06em; }
.v3-cat.feature .v3-cat-meta span { color: rgba(255,255,255,0.55); }
.v3-cat-meta b { font-family: var(--font-display); font-size: 14px; letter-spacing: -0.01em; }

.v3-prods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.v3-prod { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px; display: flex; flex-direction: column; cursor: pointer; transition: all 0.15s; }
.v3-prod:hover { border-color: var(--ink-900); }
.v3-prod-img { aspect-ratio: 16/10; background: var(--ink-100); border-radius: 12px; overflow: hidden; margin-bottom: 16px; position: relative; }
.v3-prod-side { position: absolute; top: 10px; left: 10px; font-family: var(--font-mono); font-size: 10px; color: var(--ink-500); background: rgba(255,255,255,0.85); backdrop-filter: blur(4px); padding: 4px 8px; border-radius: 4px; letter-spacing: 0.1em; }
.v3-prod-tag { font-family: var(--font-mono); font-size: 10.5px; color: oklch(0.55 0.16 42); letter-spacing: 0.14em; margin-bottom: 8px; text-transform: uppercase; }
.v3-prod-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 12px; color: var(--ink-900); text-wrap: balance; }
.v3-prod-meta { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 14px; }
.v3-prod-meta .chip { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.05em; }
.v3-prod-foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.v3-prod-price .p { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink-900); }
.v3-prod-price .old { text-decoration: line-through; font-size: 12px; color: var(--ink-400); margin-left: 8px; }
.v3-prod-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--ink-900); color: #fff; display: grid; place-items: center; border: 0; cursor: pointer; }
.v3-prod:hover .v3-prod-btn { background: oklch(0.55 0.16 42); }

/* V3 Results */
.v3-results-top { background: #0B0E14; color: #fff; border-radius: 22px; padding: 32px; margin-bottom: 24px; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.v3-results-top h2 { margin: 0 0 8px; font-family: var(--font-display); font-size: 36px; letter-spacing: -0.025em; line-height: 1.05; }
.v3-results-top h2 em { font-style: italic; font-weight: 500; color: oklch(0.78 0.14 222); }
.v3-results-top p { margin: 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); }
.v3-results-top .btn { background: rgba(255,255,255,0.1); color: #fff; padding: 12px 20px; border-radius: 12px; }

.v3-results { display: grid; grid-template-columns: 260px 1fr; gap: 20px; }
.v3-filters { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; position: sticky; top: 156px; align-self: start; }
.v3-filters h4 { margin: 0 0 16px; font-family: var(--font-display); font-size: 18px; letter-spacing: -0.02em; }
.v3-fgroup { border-top: 1px solid var(--line-soft); padding: 14px 0; }
.v3-fgroup h5 { margin: 0 0 10px; font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-500); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.v3-fpills { display: flex; flex-wrap: wrap; gap: 4px; }
.v3-fpill { padding: 6px 10px; border-radius: 100px; background: var(--ink-100); font-size: 11.5px; color: var(--ink-600); cursor: pointer; font-family: var(--font-mono); letter-spacing: 0.02em; }
.v3-fpill.active { background: var(--ink-900); color: #fff; }
.v3-fopt { display: flex; justify-content: space-between; padding: 6px 0; font-size: 12.5px; }
.v3-fopt .count { color: var(--ink-400); font-family: var(--font-mono); font-size: 11px; }

/* V3 PDP */
.v3-pdp { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; margin-bottom: 40px; }
.v3-pdp-main { aspect-ratio: 4/3; background: var(--ink-100); border-radius: 22px; overflow: hidden; margin-bottom: 10px; position: relative; }
.v3-pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.v3-pdp-thumbs .thumb { aspect-ratio: 1; background: var(--ink-100); border: 2px solid transparent; border-radius: 14px; overflow: hidden; cursor: pointer; }
.v3-pdp-thumbs .thumb.active { border-color: var(--ink-900); }
.v3-pdp-kicker { font-family: var(--font-mono); font-size: 11px; color: oklch(0.55 0.16 42); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.v3-pdp h1 { margin: 0 0 16px; font-family: var(--font-display); font-size: 44px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; color: var(--ink-900); }
.v3-pdp .lead { font-size: 15px; line-height: 1.55; color: var(--ink-600); margin: 0 0 24px; }
.v3-pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.v3-pdp-price .p { font-family: var(--font-display); font-size: 44px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink-900); line-height: 1; }
.v3-pdp-price .old { text-decoration: line-through; color: var(--ink-400); font-size: 18px; }
.v3-pdp-actions { display: flex; gap: 10px; margin-bottom: 20px; }
.v3-pdp-actions .btn-dark { flex: 1; padding: 16px; border-radius: 14px; font-size: 14px; }
.v3-pdp-fav { width: 56px; height: 56px; border-radius: 14px; background: var(--ink-100); border: 0; color: var(--ink-700); cursor: pointer; display: grid; place-items: center; }
.v3-pdp-fav:hover { color: oklch(0.55 0.16 42); }
.v3-pdp-info { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.v3-info-card { background: var(--ink-100); border-radius: 14px; padding: 14px; }
.v3-info-card .ic { width: 32px; height: 32px; border-radius: 8px; background: #fff; color: oklch(0.55 0.16 42); display: grid; place-items: center; margin-bottom: 10px; }
.v3-info-card b { display: block; font-size: 13px; color: var(--ink-900); }
.v3-info-card small { font-size: 11px; color: var(--ink-500); font-family: var(--font-mono); }
.v3-pdp-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.v3-pdp-tab { padding: 14px 20px; font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--ink-500); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.v3-pdp-tab.active { color: var(--ink-900); border-bottom-color: var(--ink-900); }
.v3-pdp-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.v3-pdp-content h3 { margin: 0 0 14px; font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; color: var(--ink-900); }
.v3-pdp-content p { margin: 0 0 14px; font-size: 14px; line-height: 1.7; color: var(--ink-700); text-wrap: pretty; }
.v3-specs-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.v3-spec { display: flex; justify-content: space-between; padding: 12px 14px; background: var(--ink-100); border-radius: 8px; }
.v3-spec .k { font-size: 11px; color: var(--ink-500); font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.v3-spec .v { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--ink-900); }

/* ---------- Footer ---------- */
.footer { background: #0B0E14; color: rgba(255,255,255,0.7); margin-top: 60px; padding: 48px 24px 20px; }
.footer-inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 32px; }
.footer-brand p { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.55; max-width: 280px; margin: 14px 0 0; }
.footer-brand .brand-name, .footer-brand .brand-mark { color: #fff; }
.footer-brand .brand-mark { background: rgba(255,255,255,0.1); }
.footer h4 { margin: 0 0 14px; color: #fff; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.footer a { display: block; padding: 4px 0; font-size: 12.5px; color: rgba(255,255,255,0.55); text-decoration: none; }
.footer a:hover { color: oklch(0.78 0.14 222); }
.footer-bottom { max-width: var(--container-max); margin: 40px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; }

/* Density variants */
body.density-compact { font-size: 13px; }
body.density-compact .sec-head { margin: 18px 0 12px; }
body.density-compact .v1-prod, body.density-compact .v2-service, body.density-compact .v3-prod { padding: 12px; }
body.density-compact .v1-hero, body.density-compact .v2-hero, body.density-compact .v3-hero { padding-top: 24px; padding-bottom: 20px; }
body.density-compact h1 { font-size: 0.85em; }
body.density-compact h2 { font-size: 0.9em; }

body.density-airy .v1-hero, body.density-airy .v2-hero, body.density-airy .v3-hero { padding-top: 56px; padding-bottom: 44px; }
body.density-airy .sec-head { margin: 44px 0 26px; }
body.density-airy .container { padding: 32px 24px; }

/* Font family variants */
body.font-geometric { --font-display: 'Space Grotesk', 'Inter', sans-serif; --font-sans: 'Inter', sans-serif; }
body.font-serif { --font-display: 'Fraunces', 'Georgia', serif; }

/* Accent color variants (applies to V1 + universal elements) */
body.accent-blue { --accent: oklch(0.55 0.16 240); --accent-ink: oklch(0.36 0.14 240); --accent-soft: oklch(0.94 0.04 240); --accent-hover: oklch(0.48 0.17 240); }
body.accent-cyan { --accent: oklch(0.60 0.14 208); --accent-ink: oklch(0.36 0.14 208); --accent-soft: oklch(0.94 0.04 208); --accent-hover: oklch(0.52 0.15 208); }
body.accent-amber { --accent: oklch(0.68 0.18 62); --accent-ink: oklch(0.42 0.15 52); --accent-soft: oklch(0.95 0.05 62); --accent-hover: oklch(0.62 0.19 62); }
body.accent-graphite { --accent: oklch(0.28 0.02 240); --accent-ink: oklch(0.2 0.02 240); --accent-soft: oklch(0.94 0.005 240); --accent-hover: oklch(0.18 0.02 240); }

/* ============================================================
   V4 · ФИНАЛ — merged hero + services
   ============================================================ */
.v4-hero { padding: 24px 24px 0; }
.v4-hero-card {
  max-width: var(--container-max); margin: 0 auto;
  background: #0B0E14; color: #fff;
  border-radius: 24px; padding: 40px;
  display: grid; grid-template-columns: 1.15fr 460px;
  gap: 36px; position: relative; overflow: hidden;
  min-height: 540px;
}
.v4-hero-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.v4-hero-card::after {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, oklch(0.45 0.08 240 / 0.35), transparent 70%);
  pointer-events: none;
}
.v4-hero-left { display: flex; flex-direction: column; justify-content: space-between; gap: 32px; position: relative; z-index: 2; }
.v4-hero-top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.v4-hero-kicker { color: oklch(0.78 0.1 230); }
.v4-hero-year { font-weight: 600; color: rgba(255,255,255,0.75); }

.v4-hero-h1 {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 800;
  line-height: 0.98; letter-spacing: -0.035em;
  margin: 0 0 18px; color: #fff; text-wrap: balance;
}
.v4-hero-h1 em { font-style: italic; font-weight: 500; color: oklch(0.78 0.1 230); }
.v4-hero-h1 .thin { font-weight: 300; color: rgba(255,255,255,0.55); }

.v4-hero-lead {
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,0.7); max-width: 480px;
  margin: 0 0 26px;
}

.v4-hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.v4-cta-white { background: #fff; color: #0B0E14; border: 0; padding: 14px 22px; border-radius: 10px; font-weight: 700; }
.v4-cta-white:hover { background: oklch(0.95 0.01 240); }
.v4-cta-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 14px 20px; border-radius: 10px; }
.v4-cta-ghost:hover { background: rgba(255,255,255,0.06); }

.v4-hero-foot {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
}
.v4-hero-foot .tag {
  font-family: var(--font-mono); font-size: 10.5px;
  padding: 5px 10px; background: rgba(255,255,255,0.06); border-radius: 4px;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.75);
}

/* ---- V4 Finder (light card on dark hero) ---- */
.v4-hero-right { position: relative; z-index: 2; display: flex; }
.v4-finder {
  background: #fff; color: var(--ink-900);
  border-radius: 18px; padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 1px 0 rgba(255,255,255,0.05) inset;
  width: 100%; display: flex; flex-direction: column;
}
.v4-finder-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.v4-finder-head h3 {
  margin: 0; font-family: var(--font-display);
  font-size: 19px; letter-spacing: -0.015em; color: var(--ink-900);
  display: flex; align-items: center; gap: 10px;
}
.v4-finder-head .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok); box-shadow: 0 0 0 4px var(--ok-soft);
}
.v4-finder-time {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--ink-500); letter-spacing: 0.08em;
  background: var(--ink-100); padding: 4px 8px; border-radius: 4px;
}
.v4-finder-hint { font-size: 12.5px; color: var(--ink-500); margin: 0 0 16px; line-height: 1.5; }
.v4-finder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.v4-sel {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--ink-100); padding: 10px 12px; border-radius: 10px;
}
.v4-sel span {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-500); letter-spacing: 0.1em; text-transform: uppercase;
}
.v4-sel select {
  appearance: none; background: transparent; border: 0; outline: none;
  font-size: 13.5px; font-weight: 700; color: var(--ink-900);
  font-family: inherit; padding: 0; cursor: pointer;
}
.v4-finder-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.v4-finder-actions .btn-primary { flex: 1; padding: 13px; border-radius: 10px; }
.v4-by-vin {
  color: var(--accent); font-size: 12.5px; font-weight: 600;
  text-decoration: none; white-space: nowrap; cursor: pointer;
}
.v4-finder-foot {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding-top: 16px; border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.v4-finder-foot div { text-align: center; }
.v4-finder-foot b {
  display: block; font-family: var(--font-display);
  font-size: 18px; font-weight: 800; color: var(--ink-900);
  letter-spacing: -0.015em; line-height: 1.1;
}
.v4-finder-foot span {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-500); letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 2px; display: block;
}

/* ---- V4 Section head modifications ---- */
.v4-h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05;
  margin: 0 0 4px; color: var(--ink-900);
  text-wrap: balance;
}
.v4-h2-dot {
  color: var(--accent);
  font-weight: 800;
  margin: 0 0.4em;
}
.v4-sec-counter {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-500); letter-spacing: 0.16em;
}

/* ---- V4 Services (V2-stat cards, light) ---- */
.v4-white-section {
  background: #fff;
  /* full-bleed: pull out to viewport edges, then re-pad inner content to 1280px.
   * Перебиваем max-width: var(--container-max) от .container — иначе блок не
   * растянется до 100vw и фон не покроет края экрана. */
  max-width: none !important;
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(24px, calc(50vw - 640px));
  padding-right: max(24px, calc(50vw - 640px));
  padding-top: 32px;
  padding-bottom: 32px;
}
.v4-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.v4-service {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 26px; display: flex; flex-direction: column;
  transition: all 0.15s; cursor: pointer;
}
.v4-service:hover { border-color: var(--ink-400); box-shadow: 0 6px 24px rgba(0,0,0,0.05); }
.v4-service-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 18px;
}
.v4-service-n {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--accent); letter-spacing: 0.14em; padding-top: 10px;
}
.v4-service-ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-ink);
  display: grid; place-items: center;
}
.v4-service h3 {
  margin: 0 0 12px; font-family: var(--font-display);
  font-size: 22px; font-weight: 800; letter-spacing: -0.022em;
  color: var(--ink-900); line-height: 1.15;
}
.v4-service p {
  margin: 0 0 22px; font-size: 13.5px; line-height: 1.6;
  color: var(--ink-600); flex: 1;
}
.v4-service-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding-top: 16px; border-top: 1px solid var(--line-soft);
}
.v4-service-stats span {
  font-family: var(--font-mono); font-size: 9.5px;
  color: var(--ink-500); letter-spacing: 0.1em; text-transform: uppercase;
  display: block; margin-bottom: 3px;
}
.v4-service-stats b {
  font-family: var(--font-display); font-size: 15px;
  font-weight: 800; letter-spacing: -0.015em;
  color: var(--ink-900);
}

/* ---- V4 Promo row (V1-style) ---- */
.v4-promo-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin: 24px 0 10px;
}
.v4-promo {
  display: flex; align-items: center; gap: 12px; padding: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
}
.v4-promo .ico {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent-ink);
  display: grid; place-items: center; flex-shrink: 0;
}
.v4-promo b { display: block; font-size: 13px; color: var(--ink-900); }
.v4-promo small { font-size: 11px; color: var(--ink-500); font-family: var(--font-mono); }
