/* ================================
   CARid Прокат — Editorial Landing
   ================================ */

:root {
  --yellow: #FFE500;
  --yellow-hot: #FFF200;
  --ink: #0A0A0A;
  --ink-soft: #181818;
  --ink-line: #222;
  --paper: #F4F1EA;
  --paper-deep: #ECE7DC;
  --paper-cream: #FAF7F0;
  --muted: #6B6B6B;
  --muted-2: #9A968D;
  --green: #C9F24E;
  --accent: var(--yellow);
  --display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "Menlo", monospace;
  --gutter: clamp(20px, 4vw, 64px);
  --radius: 18px;
  --shadow-soft: 0 30px 60px -30px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- Typography ---------- */
.display { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; line-height: 0.92; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px; background: currentColor; opacity: .6;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding-block: clamp(80px, 10vw, 160px); position: relative; }

/* ---------- Sticky Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(244, 241, 234, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, transform .3s ease;
}
.header.hidden { transform: translateY(-110%); }
.header.scrolled {
  background: rgba(244, 241, 234, 0.92);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.logo {
  width: 152px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  background: var(--ink);
  border-radius: 8px;
  padding: 8px 10px;
}
.logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.nav {
  display: flex; gap: 28px; align-items: center;
  font-size: 15px;
  font-weight: 600;
}
.nav a {
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; background: var(--yellow);
  width: 0; transition: width .3s;
}
.nav a:hover::after { width: 100%; }

.header-cta {
  display: flex; align-items: center; gap: 14px;
}
.menu-toggle,
.menu-close {
  display: none;
}
.mobile-menu {
  display: none;
}
.lang {
  display: inline-flex; gap: 0;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  font-weight: 600;
}
.lang button {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: all .2s;
}
.lang button.active {
  background: var(--ink);
  color: var(--paper);
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s;
  white-space: nowrap;
  font-size: 14px;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(0,0,0,.4); }
.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
}
.btn-yellow:hover { background: var(--yellow-hot); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-lg { font-size: 16px; padding: 18px 30px; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: 110px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ===== Hero v2 — editorial split with request form ===== */
.hero-v2 {
  padding-top: 110px;
  padding-bottom: 40px;
  min-height: auto;
  overflow: visible;
}
.hero2-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: 24px var(--gutter) 36px;
  align-items: stretch;
}
.hero2-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 18px;
  min-width: 0;
}
.hero2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero2-eyebrow .dash {
  width: 28px; height: 1.5px; background: currentColor;
}
.hero2-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 7.4vw, 122px);
  line-height: 0.93;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}
.hero2-title .line { display: block; }
.hero2-title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero2-title .letter {
  display: inline-block;
  transform: translateY(0);
}
.hero2-title .accent2,
.hero2-title .accent2 em {
  font-style: italic;
  font-weight: 700;
  color: #0A0A0A;
  background: var(--yellow);
  padding: 0 0.12em 0.04em;
  border-radius: 4px;
  position: relative;
  display: inline-block;
  transform: skew(-2deg);
}

.hero2-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #2a2a2a;
  max-width: 46ch;
  margin: 8px 0 0;
}
.hero2-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 10px;
}
.btn-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn-pill-accent {
  background: var(--yellow);
  color: var(--ink);
}
.btn-pill-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(255,229,0,.55); background: var(--yellow-hot); }
.btn-pill-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-pill-ghost:hover { background: var(--ink); color: var(--paper); }

/* ----- Hero form (right card) ----- */
.hero2-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 0;
}
.hero2-form {
  flex: 0 1 620px;
  width: 100%;
  max-width: 620px;
  min-width: 0;
  background: #131311;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 2px, transparent 2px 14px);
  color: #F4F1EA;
  border-radius: 28px;
  padding: 52px 54px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.45);
}
.hero2-form::before {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,229,0,.18), transparent 70%);
  pointer-events: none;
}
.hf-head { margin-bottom: 10px; }
.hf-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.hf-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,229,0,.25);
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,229,0,.25); }
  50% { box-shadow: 0 0 0 8px rgba(255,229,0,0); }
}
.hf-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: #fff;
}
.hf-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin: 0;
  max-width: 38ch;
}
.hf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-width: 0;
}
.hf-row-tight { grid-template-columns: 2fr 1fr; }
.hf-field {
  display: flex; flex-direction: column;
  gap: 10px;
  position: relative;
  min-width: 0;
}
.hf-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hf-field input,
.hf-field select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 18px 20px;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: border-color .2s, background .2s;
  font-family: var(--body);
}
.hf-field input::placeholder { color: rgba(255,255,255,.3); }
.hf-field input:focus,
.hf-field select:focus {
  border-color: var(--yellow);
  background: rgba(255,229,0,.06);
}
.hf-select { position: relative; }
.hf-select select {
  appearance: none; -webkit-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}
.hf-select svg {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255,255,255,.5);
}
.hf-options {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 2px;
}
.hf-chip {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 22px 15px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: border-color .2s, background .2s, color .2s;
  user-select: none;
}
.hf-chip input { position: absolute; opacity: 0; pointer-events: none; }
.hf-chip-box {
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  transition: background .2s, border-color .2s;
  position: relative;
}
.hf-chip-box::after {
  content: ""; width: 5px; height: 9px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .2s;
  margin-top: -2px;
}
.hf-chip:hover { border-color: rgba(255,229,0,.4); color: #fff; }
.hf-chip:has(input:checked) {
  background: rgba(255,229,0,.1);
  border-color: var(--yellow);
  color: #fff;
}
.hf-chip:has(input:checked) .hf-chip-box {
  background: var(--yellow);
  border-color: var(--yellow);
}
.hf-chip:has(input:checked) .hf-chip-box::after { transform: rotate(45deg) scale(1); }
.hf-submit {
  margin-top: 18px;
  padding: 20px 28px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  position: relative;
  z-index: 2;
}
.hf-submit:hover { background: var(--yellow-hot); transform: translateY(-1px); box-shadow: 0 12px 30px -8px rgba(255,229,0,.5); }
.hf-submit svg { transition: transform .2s; }
.hf-submit:hover svg { transform: translateX(3px); }
.hf-trust {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 10px;
}
.hf-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5BFF8A;
  box-shadow: 0 0 0 3px rgba(91,255,138,.18);
  animation: onlinePulse 1.45s ease-in-out infinite;
}
@keyframes onlinePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(91,255,138,.18), 0 0 0 0 rgba(91,255,138,.32);
  }
  50% {
    opacity: .55;
    transform: scale(.86);
    box-shadow: 0 0 0 3px rgba(91,255,138,.1), 0 0 0 10px rgba(91,255,138,0);
  }
}

/* ----- Hero v2 bullets row ----- */
.hero2-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 18px var(--gutter) 0;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.3);
}
.hb-item {
  padding: 24px 28px;
  border-right: 1px solid rgba(0,0,0,.12);
  display: flex; flex-direction: column; gap: 10px;
}
.hb-item:last-child { border-right: 0; }
.hb-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hb-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.hb-text em {
  font-style: normal;
  color: var(--ink);
  background: var(--yellow);
  padding: 0 8px 2px;
  border-radius: 4px;
}

/* dark theme overrides for hero v2 */
body[data-theme="dark"] .hero2-bullets {
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.02);
}
body[data-theme="dark"] .hb-item { border-right-color: rgba(255,255,255,.1); }

@media (max-width: 980px) {
  .hero2-grid { grid-template-columns: 1fr; }
  .hero2-bullets { grid-template-columns: 1fr; }
  .hb-item { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.12); }
  .hb-item:last-child { border-bottom: 0; }
}
.hero-top {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 40px;
}
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(64px, 10vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 0;
  position: relative;
}
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: top; padding-right: 0.05em;}
.hero-title .word .letter {
  display: inline-block;
  transform: translateY(110%);
  animation: letterUp .9s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes letterUp { to { transform: translateY(0); } }

.hero-title .accent {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 700;
}
.hero-title .accent::after {
  content: "";
  position: absolute; left: -4%; right: -4%; bottom: 8%;
  height: 38%; background: var(--yellow);
  z-index: -1;
  transform: skewX(-8deg);
}

.hero-side {
  display: flex; flex-direction: column;
  gap: 24px;
  align-items: stretch;
  font-size: 16px;
  color: var(--ink);
}
.hero-side p { margin: 0; max-width: 38ch; color: #2a2a2a; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-marquee {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  overflow: hidden;
}
.hero-marquee .track {
  display: flex; gap: 56px;
  width: max-content;
  animation: scroll-x 35s linear infinite;
  font-family: var(--display);
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-marquee .track .dot {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--yellow);
  border-radius: 50%;
  align-self: center;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* hero parade — animated cars driving */
.parade {
  position: relative;
  height: clamp(280px, 38vw, 540px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.18), transparent 60%),
    linear-gradient(to bottom, var(--paper-deep) 0%, var(--paper) 60%, var(--paper) 100%);
}
.parade::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 32%;
  height: 1px; background: rgba(0,0,0,.08);
}
.parade::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 24%;
  height: 6px;
  background:
    repeating-linear-gradient(to right, var(--ink) 0 32px, transparent 32px 64px);
  opacity: .55;
}
.parade-car {
  position: absolute;
  bottom: 26%;
  height: clamp(180px, 26vw, 340px);
  filter: drop-shadow(0 40px 30px rgba(0,0,0,.35));
  will-change: transform;
}
.parade-car img { height: 100%; width: auto; object-fit: contain; }
.parade-car.c1 { animation: drive 14s linear infinite; animation-delay: 0s; }
.parade-car.c2 { animation: drive 14s linear infinite; animation-delay: -4.6s; }
.parade-car.c3 { animation: drive 14s linear infinite; animation-delay: -9.3s; }
@keyframes drive {
  0%   { left: -30%; transform: translateY(0) scale(1); }
  48%  { transform: translateY(-3px) scale(1.005); }
  52%  { transform: translateY(0) scale(1); }
  100% { left: 110%; transform: translateY(0) scale(1); }
}
.parade-label {
  position: absolute;
  left: var(--gutter); bottom: var(--gutter);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  background: var(--paper);
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
}
.parade-label .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FF3B3B; position: relative;
}
.parade-label .pulse::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid #FF3B3B;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.parade-counter {
  position: absolute;
  right: var(--gutter); top: var(--gutter);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-align: right;
  z-index: 2;
}
.parade-counter small {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ---------- Bullets ---------- */
.hero-bullets {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 var(--gutter);
  background: var(--paper);
  border-top: 1px solid rgba(0,0,0,.08);
}
.hero-bullets .bullet {
  padding: 28px 28px 28px 0;
  display: flex; align-items: flex-start; gap: 18px;
  border-right: 1px solid rgba(0,0,0,.08);
}
.hero-bullets .bullet:last-child { border-right: 0; }
.hero-bullets .bullet .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  padding-top: 4px;
}
.hero-bullets .bullet .b-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.hero-bullets .bullet .b-sub {
  font-size: 13px; color: var(--muted);
  margin: 0;
}

/* ---------- Advantages (yellow magazine block) ---------- */
.advantages {
  background: var(--yellow);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.adv-header {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  padding-bottom: 80px;
  align-items: end;
}
.adv-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0;
}
.adv-title .underline {
  position: relative;
  display: inline-block;
}
.adv-title .underline svg {
  position: absolute; left: 0; bottom: -10px; width: 100%; height: auto;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.4s cubic-bezier(.2,.8,.2,1);
}
.advantages.in-view .adv-title .underline svg { stroke-dashoffset: 0; }
.adv-intro { font-size: 18px; max-width: 50ch; }

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
}
.adv-item {
  padding: 40px 32px 40px 0;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
  transition: padding-left .25s ease;
}
.adv-item:nth-child(3n) { border-right: 0; padding-right: 0; }
.adv-item:nth-child(n+4):nth-last-child(-n+3) { border-bottom: 0; }
.adv-item:nth-child(n+4) { padding-top: 40px; }
.adv-item:nth-child(-n+3) { padding-top: 40px; }
.adv-item:hover { padding-left: 16px; }
.adv-item .a-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.adv-item .a-num::after {
  content: ""; flex: 1; height: 1px; background: var(--ink); opacity: .35;
}
.adv-item h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.adv-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  max-width: 36ch;
}
.adv-item .icon-mark {
  position: absolute; top: 40px; right: 24px;
  width: 38px; height: 38px;
  border: 1.5px solid var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 18px; font-weight: 700;
}
.adv-item:nth-child(3n) .icon-mark { right: 4px; }

/* ---------- Catalog ---------- */
.catalog {
  background: var(--paper-cream);
}
.section-head {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 40px; align-items: end;
  margin-bottom: 60px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 16px 0 0;
}
.section-head .sub { color: #444; font-size: 18px; max-width: 44ch; }
.section-head .h-meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}
.section-head .h-meta .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ink);
}

.catalog-track-wrap {
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
  overflow: hidden;
  position: relative;
}
.catalog-track {
  display: flex;
  gap: 24px;
  padding: 8px var(--gutter) 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  scrollbar-width: none;
}
.catalog-track::-webkit-scrollbar { display: none; }
.car-card {
  flex: 0 0 clamp(320px, 32vw, 460px);
  scroll-snap-align: start;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 30px 60px -40px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  position: relative;
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 50px 80px -40px rgba(0,0,0,.28);
}
.car-card .photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(0,0,0,.18), transparent 60%),
    linear-gradient(160deg, #E9E5DC 0%, #DAD5C8 100%);
}
.car-card .photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.car-card .photo img {
  position: absolute; left: 50%; top: 52%;
  transform: translate(-50%, -50%) scale(1.05);
  width: 110%; height: auto; max-width: none;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.car-card:hover .photo img { transform: translate(-50%, -50%) scale(1.12); }
.car-card .tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: 6px 12px; border-radius: 999px;
}
.car-card .tag.electro { background: var(--green); color: var(--ink); }
.car-card .num-tag {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: var(--muted); letter-spacing: 0.12em;
}
.car-card .body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 14px; }
.car-card .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}
.car-card .desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  min-height: 42px;
}
.car-card .meta-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: 6px;
}
.car-card .price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.car-card .price small {
  font-family: var(--body); font-weight: 600;
  font-size: 12px; color: var(--muted);
  display: block; margin-top: 4px;
  letter-spacing: 0.05em;
}
.car-card .order-btn {
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.car-card .order-btn:hover { background: var(--yellow); color: var(--ink); }
.car-card .specs {
  display: flex; gap: 16px;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 12px; border-top: 1px dashed rgba(0,0,0,.1);
}
.car-card .specs span { display: inline-flex; align-items: center; gap: 6px; }

.catalog-nav {
  display: flex; gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}
.catalog-nav button {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.catalog-nav button:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }
.catalog-nav button:disabled { opacity: .25; cursor: not-allowed; transform: none; }

/* ---------- Calculator ---------- */
.calculator {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.calculator .section-head h2 { color: var(--paper); }
.calculator .section-head .sub { color: rgba(255,255,255,.6); }
.calc-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid #2a2a2a;
  border-radius: 24px;
  overflow: hidden;
}
.calc-left { padding: 48px; }
.calc-right {
  background: var(--yellow);
  color: var(--ink);
  padding: 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.calc-right::before {
  content: "";
  position: absolute; right: -100px; top: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(0,0,0,.05);
}
.calc-label {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.calc-right .calc-label { color: rgba(0,0,0,.55); }

.calc-days-display {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 28px;
}
.calc-days-display .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--yellow);
}
.calc-days-display .unit {
  font-size: 18px;
  color: rgba(255,255,255,.7);
}

input[type="range"].slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--yellow) var(--p, 0%), #333 var(--p, 0%));
  border-radius: 4px;
  outline: none;
}
input[type="range"].slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  cursor: grab;
  border: 4px solid var(--ink);
  box-shadow: 0 0 0 1px var(--yellow);
  transition: transform .15s;
}
input[type="range"].slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
input[type="range"].slider::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%; background: var(--yellow);
  cursor: grab; border: 4px solid var(--ink);
}
.slider-marks {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.4);
  letter-spacing: 0.1em;
}

.calc-cars {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.calc-cars .calc-car {
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 12px 10px 10px;
  background: #111;
  cursor: pointer;
  transition: border-color .2s, transform .15s;
  text-align: left;
  display: flex; flex-direction: column; gap: 8px;
}
.calc-cars .calc-car:hover { border-color: var(--yellow); transform: translateY(-2px); }
.calc-cars .calc-car.selected {
  border-color: var(--yellow);
  background: #161412;
  box-shadow: inset 0 0 0 1px var(--yellow);
}
.calc-cars .calc-car .thumb {
  aspect-ratio: 16/10;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.calc-cars .calc-car .thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}
.calc-cars .calc-car .thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.calc-cars .calc-car .calc-car-name {
  font-size: 12px; font-weight: 600; line-height: 1.1;
  color: var(--paper);
}
.calc-cars .calc-car .calc-car-price {
  font-family: var(--mono); font-size: 10px;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.05em;
}
.calc-cars .calc-car.selected .calc-car-price { color: var(--yellow); }

.calc-total {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.05em;
}
.calc-total .currency { font-size: 0.45em; vertical-align: top; line-height: 1; margin-right: 4px; }
.calc-breakdown {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 24px;
  font-size: 14px;
}
.calc-breakdown .row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.calc-breakdown .row:last-child {
  border-bottom: 0; border-top: 1.5px solid var(--ink);
  font-weight: 700; margin-top: 6px; padding-top: 14px;
}
.calc-breakdown .row .v {
  font-family: var(--mono);
  font-weight: 600;
}

.calc-discount {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--yellow);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
  margin-top: 16px;
  align-self: flex-start;
}

/* ---------- Conditions ---------- */
.conditions { background: var(--paper); }
.cond-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.cond-cell {
  padding: 40px 28px 40px 0;
  border-right: 1.5px solid var(--ink);
  position: relative;
}
.cond-cell:last-child { border-right: 0; padding-right: 0; }
.cond-cell .c-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.cond-cell .c-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.cond-cell .c-value sup { font-size: 0.5em; vertical-align: top; line-height: 1; }
.cond-cell .c-value .unit { font-size: 0.4em; opacity: .6; font-weight: 600; }
.cond-cell .c-desc { font-size: 14px; color: #444; line-height: 1.5; margin: 0; }
.cond-cell .ticker {
  font-variant-numeric: tabular-nums;
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper-cream); }
.faq-list {
  border-top: 1.5px solid var(--ink);
  margin-top: 32px;
}
.faq-item {
  border-bottom: 1.5px solid var(--ink);
  padding: 28px 0;
  cursor: pointer;
  transition: background .2s;
}
.faq-item:hover { background: rgba(0,0,0,.02); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px;
}
.faq-q .q-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  flex: 1;
}
.faq-q .q-num {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.faq-toggle {
  width: 52px; height: 52px; flex: none;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .3s;
}
.faq-item.open .faq-toggle {
  background: var(--yellow);
  transform: rotate(45deg);
}
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute;
  background: var(--ink);
  border-radius: 2px;
}
.faq-toggle::before { width: 14px; height: 2px; }
.faq-toggle::after { width: 2px; height: 14px; }
.faq-toggle { position: relative; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.2,.8,.2,1), margin-top .4s;
  font-size: 17px;
  line-height: 1.55;
  color: #2a2a2a;
  max-width: 70ch;
}
.faq-item.open .faq-a {
  max-height: 220px;
  margin-top: 18px;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--paper); }
.test-slider {
  margin-top: 40px;
}
.test-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.test-track::-webkit-scrollbar { display: none; }
.test-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  border: 1px solid rgba(0,0,0,.05);
  scroll-snap-align: start;
  min-height: 100%;
}
.test-card .quote-mark {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--display); font-weight: 800;
  font-size: 60px; line-height: 1;
  color: var(--yellow);
}
.test-card .stars {
  display: flex; gap: 2px;
  color: var(--yellow);
  margin-bottom: 18px;
}
.test-card .text {
  font-size: 16px; line-height: 1.55;
  color: #2a2a2a;
  margin: 0 0 22px;
}
.test-card .author {
  display: flex; align-items: center; gap: 12px;
}
.test-card .author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DDD8CC, #B0AB9E);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  color: var(--ink);
}
.test-card .author .name {
  font-weight: 700; font-size: 14px; line-height: 1.2;
}
.test-card .author .meta {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.test-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}
.test-nav button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}
.test-nav button:hover:not(:disabled) {
  background: var(--yellow);
  transform: translateY(-2px);
}
.test-nav button:disabled {
  opacity: .28;
  cursor: not-allowed;
}

/* ---------- Extra conditions ---------- */
.extra {
  background: var(--ink);
  color: var(--paper);
}
.extra .section-head h2 {
  color: var(--paper);
}
.extra .section-head h2 em {
  background: linear-gradient(var(--yellow), var(--yellow)) center 58% / 100% 72% no-repeat;
  color: var(--ink);
  font-style: italic;
  padding: 0 .035em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.extra .h-meta,
.extra .num {
  color: rgba(244,241,234,.62);
}
.extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 42px;
}
.extra-card {
  min-height: 470px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.12);
}
.extra-card.vykup {
  background:
    radial-gradient(circle at 86% 14%, rgba(255,229,0,.26), transparent 28%),
    #151514;
}
.extra-card.taxi {
  background: #34d186;
  color: var(--ink);
  border-color: transparent;
}
.extra-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.64);
}
.taxi .extra-tag { color: rgba(12,12,13,.62); }
.dot-y,
.dot-d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot-y { background: var(--yellow); }
.dot-d { background: var(--ink); }
.extra-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: .95;
  letter-spacing: 0;
}
.extra-title em {
  color: var(--yellow);
  font-style: italic;
}
.taxi .extra-title em { color: var(--ink); }
.extra-text {
  margin: 0;
  max-width: 58ch;
  color: rgba(244,241,234,.7);
  font-size: 17px;
  line-height: 1.55;
}
.taxi .extra-text { color: rgba(12,12,13,.72); }
.extra-bullets {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: rgba(244,241,234,.86);
}
.taxi .extra-bullets { color: rgba(12,12,13,.85); }
.extra-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.35;
}
.extra-bullets svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--yellow);
}
.taxi .extra-bullets svg { color: var(--ink); }

/* ---------- SEO ---------- */
.seo-section {
  background: var(--paper-cream);
  padding-top: 72px;
}
.seo-section .h-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.seo-section .h-meta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  display: inline-block;
}
.seo-card {
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: clamp(32px, 5vw, 58px) 0;
}
.seo-head {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  align-items: start;
}
.seo-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 76px);
  line-height: .92;
  letter-spacing: 0;
}
.seo-text {
  max-width: 920px;
  margin: 34px 0 0 auto;
  position: relative;
  font-size: 16px;
  line-height: 1.62;
  color: #2f2f2f;
}
.seo-text h3 {
  margin: 28px 0 12px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  letter-spacing: 0;
}
.seo-text h3:first-child {
  margin-top: 0;
}
.seo-text p {
  margin: 0 0 16px;
}
.seo-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .25s ease;
}
.seo-text.open .seo-more {
  max-height: 2400px;
  opacity: 1;
}
.seo-toggle {
  margin: 12px 0 0 auto;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease;
}
.seo-toggle:hover {
  background: var(--ink);
  color: var(--yellow);
}

/* ---------- Contacts ---------- */
.contacts {
  background: var(--paper);
  padding-bottom: clamp(64px, 8vw, 112px);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}
.contact-map {
  background: #101212;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 14px;
}
.google-map-frame {
  position: relative;
  flex: 1;
  min-height: 410px;
  overflow: hidden;
  border-radius: 22px;
  background: #101212;
  border: 1px solid rgba(255,255,255,.08);
}
.google-map-frame iframe {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border: 0;
  filter: grayscale(1) invert(.92) hue-rotate(178deg) saturate(.7) contrast(1.08) brightness(.76);
}
.google-map-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,10,.16), transparent 36%, rgba(10,10,10,.24)),
    radial-gradient(circle at 68% 48%, rgba(255,229,0,.12), transparent 28%);
}
.map-card {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  width: min(340px, calc(100% - 36px));
  padding: 22px;
  border-radius: 8px;
  background: rgba(16,16,16,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 42px -24px rgba(0,0,0,.55);
}
.map-card-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.map-card-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #F4F1EA;
}
.map-route {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--yellow);
  color: #0A0A0A;
  font-size: 16px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.map-route:hover {
  transform: translateY(-2px);
  background: var(--yellow-hot);
}

.contact-card {
  background: var(--yellow);
  padding: 60px;
  display: flex; flex-direction: column;
  gap: 28px;
}
.contact-card h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 6vw, 90px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0;
}
.contact-card .line { display: flex; gap: 24px; align-items: flex-start; }
.contact-card .line .k {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(0,0,0,.55);
  flex: 0 0 110px;
  padding-top: 6px;
}
.contact-card .line .v {
  font-size: 18px; font-weight: 600;
  line-height: 1.4;
}
.contact-card .line .v a {
  border-bottom: 2px solid var(--yellow);
}
.contact-card .line .v.phones { font-family: var(--display); font-size: 24px; letter-spacing: -0.01em; }
.contact-card .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

/* ---------- Order modal ---------- */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.order-modal[hidden] {
  display: none;
}
.order-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.64);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.order-modal-dialog {
  position: relative;
  width: min(780px, 100%);
  max-height: calc(100vh - 32px);
  overflow: hidden;
  border-radius: 24px;
  background: #11110f;
  color: #F4F1EA;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 90px -44px rgba(0,0,0,.72);
  transform: translateY(12px) scale(.98);
  transition: transform .25s ease;
}
.order-modal.open .order-modal-dialog {
  transform: translateY(0) scale(1);
}
.order-modal-layout {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.18fr);
  max-height: calc(100vh - 32px);
  overflow: auto;
}
.order-modal-aside {
  min-height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: var(--yellow);
  color: var(--ink);
}
.order-modal-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.order-modal-aside-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: .96;
  letter-spacing: 0;
}
.order-modal-badges {
  display: grid;
  gap: 10px;
}
.order-modal-badges span {
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(17,17,15,.1);
  font-size: 13px;
  font-weight: 800;
}
.order-modal-contact {
  padding-top: 22px;
  border-top: 1px solid rgba(17,17,15,.22);
  display: grid;
  gap: 8px;
}
.order-modal-contact span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.order-modal-contact a {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}
.order-modal-form {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.order-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.order-modal-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
}
.order-modal-close span:first-child { transform: rotate(45deg); }
.order-modal-close span:last-child { transform: rotate(-45deg); }
.order-modal-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yellow);
}
.order-modal-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 46px);
  line-height: .96;
  letter-spacing: 0;
  max-width: 9.5em;
}
.order-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.order-modal-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.order-modal-field span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.order-modal-field input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255,255,255,.055);
  color: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.order-modal-field input[readonly] {
  color: rgba(255,255,255,.82);
}
.order-modal-field-car input {
  border-color: rgba(255,229,0,.38);
  background: rgba(255,229,0,.08);
  color: var(--yellow);
  font-weight: 800;
}
.order-modal-field input:focus {
  border-color: var(--yellow);
  background: rgba(255,229,0,.06);
}
.order-modal-field input::placeholder {
  color: rgba(255,255,255,.28);
}
.order-modal-submit {
  margin-top: 4px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.order-modal-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -18px rgba(255,229,0,.65);
  background: var(--yellow-hot);
}
.order-modal-note {
  display: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.46);
}
.order-modal-submit:disabled {
  cursor: default;
  opacity: .82;
  transform: none;
}
body.modal-open {
  overflow: hidden;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 28px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 14px;
}
.footer .copyright { color: rgba(255,255,255,.6); }
.footer a.glory { color: var(--yellow); border-bottom: 1px solid var(--yellow); }
.footer-logo {
  background: transparent;
  padding: 0;
}

/* ---------- Reveal animations ---------- */
.reveal {
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.js-animations-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.js-animations-ready .reveal-stagger > * {
  opacity: 0; transform: translateY(20px);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: .40s; }

.split-letters .letter {
  display: inline-block;
  transition: transform .9s cubic-bezier(.2,.8,.2,1), opacity .5s ease;
}
.js-animations-ready .split-letters .letter {
  transform: translateY(110%);
  opacity: 0;
}
.split-letters .word { display: inline-block; overflow: hidden; }
.split-letters.in-view .letter {
  transform: translateY(0); opacity: 1;
}

/* low-anim mode */
body[data-anim="off"] *,
body[data-anim="off"] *::before,
body[data-anim="off"] *::after {
  animation: none !important;
  transition: none !important;
}
body[data-anim="off"] .reveal,
body[data-anim="off"] .reveal-stagger > *,
body[data-anim="off"] .split-letters .letter {
  opacity: 1 !important;
  transform: none !important;
}
body[data-anim="low"] .parade-car { animation-duration: 28s !important; }
body[data-anim="low"] .hero-marquee .track { animation-duration: 70s !important; }

/* dark theme via tweak */
body[data-theme="dark"] {
  --paper: #0E0E0E;
  --paper-deep: #161616;
  --paper-cream: #131313;
  --ink: #F4F1EA;
  --ink-soft: #EEE;
  --muted: #999;
}
body[data-theme="dark"] .header { background: rgba(14,14,14,.7); }
body[data-theme="dark"] .header.scrolled { background: rgba(14,14,14,.92); }
body[data-theme="dark"] .mobile-menu { background: #0E0E0E; }
body[data-theme="dark"] .car-card { background: #181818; border-color: rgba(255,255,255,.08); }
body[data-theme="dark"] .car-card .photo { background: linear-gradient(160deg, #232220 0%, #14110d 100%); }
body[data-theme="dark"] .test-card { background: #181818; border-color: rgba(255,255,255,.08); }
body[data-theme="dark"] .test-card .text { color: #ccc; }
body[data-theme="dark"] .footer { background: #050505; }
body[data-theme="dark"] .contacts .contact-grid { border-color: rgba(255,255,255,.1); }
body[data-theme="dark"] .calc-cars .calc-car { background: #0a0a0a; border-color: #2a2a2a;}

/* tweaks panel */
.tweaks-panel-host { font-family: var(--body); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { display: none; }
  body.menu-open { overflow: hidden; }
  .menu-toggle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 16px 30px -18px rgba(0,0,0,.6);
    position: relative;
    z-index: 220;
  }
  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
      radial-gradient(circle at 92% 8%, rgba(255,229,0,.26) 0 78px, transparent 80px),
      linear-gradient(135deg, rgba(255,229,0,.14), transparent 28%),
      var(--ink);
    color: var(--paper);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-menu-panel {
    min-height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 34vw);
    grid-template-rows: auto auto 1fr;
    gap: clamp(22px, 4vw, 56px) clamp(24px, 6vw, 72px);
    padding: 22px var(--gutter) 34px;
  }
  .mobile-menu-top {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-menu-logo {
    background: transparent;
    padding: 0;
  }
  .menu-close {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: #0A0A0A;
    box-shadow: 14px 14px 0 #0A0A0A;
  }
  .menu-close span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }
  .menu-close span:first-child { transform: rotate(45deg); }
  .menu-close span:last-child { transform: rotate(-45deg); }
  .mobile-menu-label {
    grid-column: 1 / 2;
    display: flex;
    align-items: center;
    gap: 14px;
    align-self: end;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--yellow);
  }
  .mobile-menu-label span {
    width: 30px;
    height: 1.5px;
    background: currentColor;
  }
  .mobile-menu-nav {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(244,241,234,.16);
  }
  .mobile-menu-nav a {
    min-height: clamp(82px, 11vh, 122px);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(244,241,234,.16);
    color: var(--paper);
    transition: color .2s ease, padding-left .2s ease, background .2s ease;
  }
  .mobile-menu-nav a:hover {
    color: var(--yellow);
    padding-left: 14px;
    background: rgba(255,229,0,.05);
  }
  .mobile-menu-nav span {
    font-family: var(--display);
    font-size: clamp(48px, 8vw, 92px);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -0.035em;
  }
  .mobile-menu-nav small {
    font-family: var(--mono);
    font-size: 14px;
    color: rgba(244,241,234,.45);
  }
  .mobile-menu-aside {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .mobile-contact-card {
    border: 1px solid rgba(244,241,234,.16);
    border-radius: 8px;
    background: rgba(244,241,234,.04);
    padding: clamp(24px, 4vw, 42px);
  }
  .mobile-contact-label {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 22px;
  }
  .mobile-phone {
    display: block;
    font-family: var(--display);
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--paper);
    white-space: nowrap;
  }
  .mobile-hours {
    margin-top: 22px;
    color: rgba(244,241,234,.58);
    font-size: 15px;
  }
  .mobile-menu-cta {
    min-height: 82px;
    border-radius: 8px;
    background: var(--yellow);
    color: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 clamp(24px, 4vw, 42px);
    font-size: 20px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 34px -24px rgba(255,229,0,.75);
  }
  .hero-top { grid-template-columns: 1fr; }
  .hero-bullets { grid-template-columns: 1fr; }
  .hero-bullets .bullet { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.08); }
  .adv-header { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-item:nth-child(3n) { border-right: 1.5px solid var(--ink); padding-right: 32px; }
  .adv-item:nth-child(2n) { border-right: 0; padding-right: 0;}
  .section-head { grid-template-columns: 1fr; }
  .calc-card { grid-template-columns: 1fr; }
  .calc-cars { grid-template-columns: repeat(3, 1fr); }
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
  .cond-cell:nth-child(2n) { border-right: 0; padding-right: 0; }
  .cond-cell:nth-child(2n+1) { border-right: 1.5px solid var(--ink); padding-right: 28px; }
  .test-track { grid-auto-columns: minmax(320px, 72vw); }
  .extra-grid { grid-template-columns: 1fr; }
  .seo-head { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 320px; }
  .map-card {
    top: 18px;
    left: 18px;
    width: min(260px, calc(100% - 36px));
  }
  .header { padding: 12px 20px; }
  .header-cta .btn { display: none; }
}
@media (max-width: 600px) {
  .header-cta { display: none; }
  .menu-toggle {
    width: 50px;
    height: 50px;
  }
  .logo {
    width: 138px;
    height: 56px;
  }
  .mobile-menu {
    background:
      radial-gradient(circle at 93% 7%, rgba(255,229,0,.28) 0 54px, transparent 56px),
      linear-gradient(145deg, rgba(255,229,0,.13), transparent 34%),
      var(--ink);
  }
  .mobile-menu-panel {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 18px;
    padding: 18px 20px 24px;
  }
  .menu-close {
    width: 58px;
    height: 58px;
    box-shadow: 10px 10px 0 #0A0A0A;
  }
  .mobile-menu-label { margin-top: clamp(8px, 4vh, 32px); }
  .mobile-menu-nav a {
    min-height: 64px;
    gap: 16px;
  }
  .mobile-menu-nav span {
    font-size: clamp(36px, 12vw, 52px);
  }
  .mobile-menu-aside {
    margin-top: auto;
    gap: 14px;
  }
  .mobile-contact-card {
    padding: 18px;
  }
  .mobile-contact-label {
    font-size: 10px;
    margin-bottom: 14px;
  }
  .mobile-phone {
    font-size: clamp(25px, 8vw, 34px);
  }
  .mobile-hours {
    margin-top: 14px;
    font-size: 13px;
  }
  .mobile-menu-cta {
    min-height: 64px;
    padding: 0 20px;
    font-size: 17px;
  }
  .hero-marquee .track { font-size: 28px; }
  .hero2-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero2-title {
    font-size: clamp(48px, 15vw, 62px);
  }
  .hero2-form {
    flex-basis: auto;
    width: 100%;
    max-width: 350px;
    padding: 30px 24px;
    border-radius: 24px;
  }
  .hero2-right {
    justify-content: flex-start;
  }
  .hf-row {
    grid-template-columns: 1fr;
  }
  .hf-submit {
    width: 100%;
  }
  .hf-options {
    flex-direction: column;
    align-items: stretch;
  }
  .hf-chip {
    width: 100%;
  }
  .calc-left, .calc-right, .contact-card { padding: 32px; }
  .test-track { grid-auto-columns: minmax(280px, 86vw); }
  .test-card { padding: 26px; }
  .test-nav { justify-content: flex-start; }
  .extra-card { min-height: auto; }
  .extra-title { font-size: 34px; }
  .seo-text { font-size: 16px; line-height: 1.62; }
  .seo-toggle { width: 100%; }
  .contact-card {
    gap: 24px;
  }
  .contact-card .line {
    flex-direction: column;
    gap: 6px;
  }
  .contact-card .line .k {
    flex: none;
    padding-top: 0;
  }
  .contact-card .line .v,
  .contact-card .line .v.phones {
    font-size: 18px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .contact-card .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-card .actions .btn {
    justify-content: center;
  }
  .map-card {
    padding: 16px;
  }
  .map-card-title {
    font-size: 20px;
  }
  .map-route {
    width: 100%;
    justify-content: center;
  }
  .order-modal {
    padding: 12px;
    align-items: flex-end;
  }
  .order-modal-dialog {
    max-height: calc(100vh - 16px);
    border-radius: 24px 24px 0 0;
  }
  .order-modal-layout {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 16px);
  }
  .order-modal-aside {
    min-height: auto;
    padding: 24px 20px 20px;
    gap: 18px;
  }
  .order-modal-aside-title {
    max-width: calc(100% - 60px);
    font-size: 30px;
  }
  .order-modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .order-modal-badges span {
    font-size: 12px;
    padding: 8px 10px;
  }
  .order-modal-contact {
    display: none;
  }
  .order-modal-form {
    padding: 22px 20px 22px;
  }
  .order-modal-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .order-modal-title {
    font-size: 36px;
  }
  .order-modal-submit {
    width: 100%;
  }
  .footer {
    margin-top: 28px;
    padding: 28px 20px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 14px;
  }
  .footer-logo {
    display: none;
  }
  .footer .copyright {
    line-height: 1.35;
  }
}
