:root {
  --brand: #2091ff;
  --brand-600: #0a78e6;
  --brand-50: #eaf4ff;
  --ink: #0E0E12;
  --ink-2: #1a1a22;
  --muted: #6b7280;
  --muted-2: #9aa0a8;
  --line: #e7e8ec;
  --line-2: #f1f2f5;
  --bg: #ffffff;
  --surface: #f7f8fa;
  --radius: 4px;
  --radius-lg: 6px;
  --maxw: 1320px;
  --pad: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body { max-width: 100vw; }
body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.mono { font-family: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-600); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #2a2a35; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--surface); }
.btn--lg { height: 56px; padding: 0 28px; font-size: 16px; }
.btn--sm { height: 38px; padding: 0 14px; font-size: 13px; }

/* ---------- Headings ---------- */
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.025em; line-height: 1.05; font-weight: 700; }
h1 { font-size: clamp(44px, 6.4vw, 96px); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: clamp(32px, 3.6vw, 52px); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 1.6vw, 24px); font-weight: 600; letter-spacing: -0.02em; }
.eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow-dot::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.site-header__logo { display: flex; align-items: center; gap: 0; height: 32px; }
.site-header__logo svg { height: 32px; width: auto; }
.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 4px;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: var(--surface); }
.nav a.active { color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: flex; gap: 0; align-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--muted);
}
.lang-switch button {
  background: none; border: none; padding: 6px 8px;
  color: var(--muted); cursor: pointer; font-family: inherit; font-size: 12px;
  letter-spacing: 0.05em;
}
.lang-switch button.active { color: var(--ink); font-weight: 600; }
.lang-switch .sep { color: var(--line); }
.phone-icon {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.phone-icon:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.phone-icon svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  position: relative;
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .25s cubic-bezier(0.65, 0, 0.35, 1), opacity .15s ease, top .25s cubic-bezier(0.65, 0, 0.35, 1);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Drawer */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(14,14,18,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0;
  height: 100dvh;
  width: min(420px, 100vw);
  background: var(--ink);
  color: #fff;
  z-index: 70;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drawer__logo svg { height: 28px; width: auto; }
.drawer__logo svg g[fill="#0E0E12"] path,
.drawer__logo svg g:first-child path { fill: #fff; }
.drawer__close {
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.drawer__close:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.drawer__nav {
  display: flex; flex-direction: column;
  padding: 16px 12px;
  flex: 1;
}
.drawer__nav a {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 16px;
  border-radius: 6px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #fff;
  transform: translateX(20px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s cubic-bezier(0.2, 0.7, 0.2, 1), background .15s ease;
}
.drawer.is-open .drawer__nav a {
  opacity: 1;
  transform: translateX(0);
}
.drawer__nav a:hover { background: rgba(255,255,255,0.04); }
.drawer__nav a.active { color: var(--brand); }
.drawer__nav a .num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  min-width: 24px;
}
.drawer__nav a .lbl { flex: 1; }
.drawer__nav a svg { color: rgba(255,255,255,0.3); transition: color .15s ease, transform .2s ease; }
.drawer__nav a:hover svg { color: var(--brand); transform: translateX(4px); }
.drawer__foot {
  padding: 24px 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 8px;
}
.drawer__phone {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  padding: 10px 0;
}
.drawer__phone svg { color: var(--brand); width: 18px; height: 18px; }
.drawer__email {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
}
.drawer__addr {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 112px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0e0e12;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.92) contrast(1.05);
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    /* darken bottom for text contrast over road */
    linear-gradient(to bottom, rgba(14,14,18,0.55) 0%, rgba(14,14,18,0.35) 30%, rgba(14,14,18,0.55) 70%, rgba(14,14,18,0.85) 100%),
    /* left-side darken to support headline column */
    linear-gradient(to right, rgba(14,14,18,0.7) 0%, rgba(14,14,18,0.25) 50%, rgba(14,14,18,0.1) 100%);
}
.hero__bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, transparent 40%, rgba(14,14,18,0.5) 100%);
}
.hero .container { position: relative; z-index: 6; }
.hero__inner {
  max-width: 880px;
  padding-bottom: 8px;
  color: #fafbfc;
}
.hero__crumb {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 32px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,251,252,0.75);
}
.hero__crumb .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(32,145,255,0.25); }
.hero__title {
  font-size: clamp(40px, 6.6cqw, 104px);
  overflow-wrap: break-word;
  hyphens: manual;
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(14,14,18,0.35);
}
.hero__title em {
  font-style: normal;
  color: #fff;
  background: linear-gradient(180deg, #2091ff 0%, #0a73d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
@container page (max-width: 520px) {
  .hero__title em { white-space: normal; word-break: keep-all; }
}
.hero__sub {
  max-width: 580px;
  font-size: 18px;
  color: rgba(250,251,252,0.82);
  line-height: 1.5;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 64px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(250,251,252,0.18);
}
.hero__stat .num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.hero__stat .num em { color: var(--brand); font-style: normal; }
.hero__stat .num .unit { font-size: 18px; font-weight: 500; color: rgba(250,251,252,0.6); margin-left: 4px; }
.hero__stat .label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250,251,252,0.55);
  margin-top: 8px;
}

/* Light-on-dark button variants for hero */
.btn--brand {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn--brand:hover { background: #0a73d6; border-color: #0a73d6; }
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(250,251,252,0.4);
}
.btn--ghost-light:hover { background: rgba(250,251,252,0.08); border-color: rgba(250,251,252,0.7); }
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__tag {
  position: absolute;
  top: 20px; left: 20px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.95);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.hero__sticker {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  display: flex; justify-content: space-between; align-items: end;
  z-index: 2;
  color: #fff;
}
.hero__sticker .name { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.hero__sticker .meta { font-family: "Geist Mono", monospace; font-size: 11px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.hero__sticker .price { font-family: "Geist Mono", monospace; font-size: 13px; opacity: 0.8; }
.hero__sticker .price strong { display: block; font-family: "Geist", sans-serif; font-size: 26px; font-weight: 700; color: #fff; opacity: 1; letter-spacing: -0.02em; }

/* Animated hero variant: split mosaic */
.hero__mosaic {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.hero__mosaic > div {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__mosaic > div:nth-child(1) {
  grid-row: 1 / 3;
}
.hero__mosaic .label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  background: rgba(0,0,0,0.45);
  border-radius: 2px;
  z-index: 2;
}

/* ---------- Search bar ---------- */
.searchbar {
  margin-top: -36px;
  position: relative;
  z-index: 5;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 1px;
  box-shadow: 0 24px 60px -20px rgba(14, 14, 18, 0.35);
}
.searchbar__field {
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 4px;
  background: var(--ink);
  cursor: pointer;
  position: relative;
}
.searchbar__field:hover { background: var(--ink-2); }
.searchbar__field .lbl {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.searchbar__field .val {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
}
.searchbar__field .val .chev { opacity: 0.4; }
.searchbar__cta {
  display: flex; align-items: center;
  background: var(--brand);
  color: #fff;
  padding: 0 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  gap: 10px;
  border: none;
  cursor: pointer;
  margin: 0;
}
.searchbar__cta:hover { background: var(--brand-600); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; border-bottom: 1px solid var(--line); }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--ink); color: #fff; border-bottom: none; }
.section--surface { background: var(--surface); border-bottom: 1px solid var(--line); }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  margin-bottom: 56px;
  align-items: end;
}
.section-head h2 { max-width: 720px; }
.section-head .lead {
  margin-top: 20px;
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.5;
}
.section--dark .section-head .lead { color: rgba(255,255,255,0.6); }

/* ---------- Vehicle card ---------- */
.vcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .15s ease, transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  text-align: left;
}
.vcard:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(14, 14, 18, 0.18);
}
.vcard__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  overflow: hidden;
}
.vcard__media .badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 9px;
  background: #fff;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}
.vcard__media .badge--new { background: var(--brand); color: #fff; }
.vcard__fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s ease;
}
.vcard__fav:hover { background: #fff; }
.vcard__fav svg { width: 16px; height: 16px; }
.vcard__fav.is-active svg { fill: var(--brand); color: var(--brand); }
.vcard__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.vcard__head {
  display: flex; justify-content: space-between; align-items: start; gap: 16px;
}
.vcard__title { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; }
.vcard__sub {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.vcard__price { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; }
.vcard__price small { display: block; font-family: "Geist Mono", monospace; font-size: 10px; color: var(--muted); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }
.vcard__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.vcard__specs .spec { display: flex; flex-direction: column; gap: 2px; }
.vcard__specs .spec .k {
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.vcard__specs .spec .v { font-size: 13px; font-weight: 500; }

/* ---------- Vehicle grid ---------- */
.vgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.section-tabs {
  display: flex; gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.section-tabs::-webkit-scrollbar { display: none; }
.section-tabs button { white-space: nowrap; flex-shrink: 0; }
.section-tabs button {
  background: none;
  border: none;
  padding: 12px 0;
  margin-right: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.section-tabs button.active { color: var(--ink); border-bottom-color: var(--brand); }
.section-tabs .count {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  margin-left: 6px;
  color: var(--muted-2);
}

/* ---------- Categories ---------- */
.catgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.cat {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  cursor: pointer;
  transition: transform .25s ease;
  border: 1px solid var(--line);
}
.cat:hover { transform: translateY(-2px); }
.cat:nth-child(1) {
  grid-row: 1 / 3;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  min-height: auto;
}
.cat__num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.cat:nth-child(1) .cat__num { color: rgba(255,255,255,0.5); }
.cat__title { font-size: 26px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; max-width: 320px; }
.cat:nth-child(1) .cat__title { font-size: 38px; }
.cat__count { font-family: "Geist Mono", monospace; font-size: 13px; color: var(--muted); margin-top: 8px; }
.cat:nth-child(1) .cat__count { color: rgba(255,255,255,0.6); }
.cat__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cat:nth-child(1) .cat__cta { color: var(--brand); }
.cat__media {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 70%;
  height: 70%;
  background: var(--line);
  border-radius: 8px;
  opacity: 0.6;
}
.cat:nth-child(1) .cat__media {
  position: relative;
  right: auto; bottom: auto;
  width: 100%;
  height: 240px;
  background: #1a1a22;
  margin-top: 24px;
  opacity: 1;
}

/* ---------- Why us ---------- */
.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.why__cell {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
}
.why__num {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--brand);
}
.why__title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.why__body { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; margin-top: auto; }

/* ---------- Process strip ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process__step { padding-top: 24px; border-top: 1px solid var(--line); }
.process__step .n {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--brand);
  text-transform: uppercase;
}
.process__step h4 { font-size: 18px; font-weight: 600; margin-top: 12px; letter-spacing: -0.015em; }
.process__step p { font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.55; }

/* ---------- CTA strip ---------- */
.ctastrip {
  background: var(--brand);
  color: #fff;
  padding: 80px 0;
}
.ctastrip__inner {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 48px;
  align-items: center;
}
.ctastrip h2 { font-size: clamp(32px, 3.4vw, 48px); letter-spacing: -0.03em; line-height: 1.05; }
.ctastrip__actions { display: flex; gap: 12px; }
.ctastrip .btn--primary { background: #fff; color: var(--brand); }
.ctastrip .btn--primary:hover { background: rgba(255,255,255,0.9); }
.ctastrip .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.ctastrip .btn--ghost:hover { background: rgba(255,255,255,0.1); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  font-size: 14px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h4 {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { color: #fff; }
.site-footer ul a:hover { color: var(--brand); }
.site-footer__brand { display: flex; flex-direction: column; gap: 24px; }
.site-footer__brand .logo { display: flex; align-items: center; gap: 8px; }
.site-footer__brand .desc { color: rgba(255,255,255,0.5); max-width: 320px; line-height: 1.55; }
.site-footer__legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer__bottom {
  margin-top: 16px;
  display: flex; justify-content: space-between; gap: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Placeholder media ---------- */
.placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(135deg, #1f1f28 0%, #14141a 100%);
  display: flex; align-items: center; justify-content: center;
}
.placeholder--light {
  background:
    repeating-linear-gradient(135deg,
      rgba(14,14,18,0.04) 0px,
      rgba(14,14,18,0.04) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(135deg, #f0f1f4 0%, #e3e5ea 100%);
}
.placeholder__label {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
}
.placeholder--light .placeholder__label { color: rgba(14,14,18,0.4); border-color: rgba(14,14,18,0.15); }

/* ---------- Vehicle detail page ---------- */
.vd-crumbs {
  display: flex; gap: 8px; align-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 24px 0;
}
.vd-crumbs a:hover { color: var(--ink); }
.vd-crumbs span.sep { opacity: 0.4; }
.vd-crumbs .current { color: var(--ink); }
.vd-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.vd-head__tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.vd-head__tag {
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-2);
  border-radius: 2px;
}
.vd-head__tag--brand { background: var(--brand-50); color: var(--brand-600); border-color: transparent; }
.vd-head__title { font-size: clamp(28px, 3.6vw, 52px); letter-spacing: -0.035em; font-weight: 700; line-height: 1.05; }
.vd-head__meta {
  display: flex; gap: 18px; margin-top: 14px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.vd-head__price { text-align: right; }
.vd-head__price .num { font-size: clamp(28px, 3vw, 44px); font-weight: 700; letter-spacing: -0.03em; white-space: nowrap; }
.vd-head__price .net { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.vd-head__price .actions { display: flex; gap: 8px; margin-top: 16px; justify-content: flex-end; }

.vd-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 560px;
  margin-bottom: 64px;
}
.vd-gallery > div { position: relative; background: var(--ink); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.vd-gallery > div:nth-child(1) { grid-row: 1 / 3; }
.vd-gallery .more {
  position: absolute;
  bottom: 12px; right: 12px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  backdrop-filter: blur(6px);
}

.vd-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.vd-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  gap: 28px;
}
.vd-tabs button {
  background: none; border: none;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.vd-tabs button.active { color: var(--ink); border-bottom-color: var(--brand); }

.vd-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.vd-spec__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.vd-spec__row .k { color: var(--muted); font-family: "Geist Mono", monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.vd-spec__row .v { font-weight: 500; }
.vd-spec__row:nth-child(odd) { padding-right: 24px; }
.vd-spec__row:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }

.vd-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.vd-features li {
  list-style: none;
  display: flex; gap: 10px; align-items: start;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line-2);
}
.vd-features li::before {
  content: "";
  display: block;
  width: 14px; height: 14px;
  background: var(--brand-50);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.vd-features li::after {
  content: "";
  position: absolute;
  width: 5px; height: 3px;
  border-left: 1.5px solid var(--brand);
  border-bottom: 1.5px solid var(--brand);
  transform: rotate(-45deg) translate(7px, -1px);
}
.vd-features li { position: relative; padding-left: 0; }

.vd-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.vd-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.vd-card h3 {
  font-size: 13px;
  font-family: "Geist Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
}

.calc__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.calc__field label { font-size: 12px; font-family: "Geist Mono", monospace; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.calc__field .vrow { display: flex; justify-content: space-between; font-weight: 500; }
.calc__field .vrow span:last-child { color: var(--brand); font-family: "Geist Mono", monospace; font-size: 13px; }
.calc__field input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  outline: none;
}
.calc__field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  background: var(--brand);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(32, 145, 255, 0.4);
}
.calc__field input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--brand);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
}
.calc__result {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.calc__result .lbl { font-family: "Geist Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.calc__result .num { font-size: 38px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; margin-top: 6px; }
.calc__result .num em { color: var(--brand); font-style: normal; font-size: 18px; font-weight: 500; }
.calc__result .note { font-family: "Geist Mono", monospace; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 10px; line-height: 1.4; }

.contact-form .field { margin-bottom: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--brand); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.advisor {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
}
.advisor__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2091ff, #0a78e6);
  display: grid; place-items: center;
  color: #fff; font-weight: 600; font-size: 14px;
  flex-shrink: 0;
}
.advisor__name { font-size: 14px; font-weight: 600; }
.advisor__role { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.advisor__phone { font-family: "Geist Mono", monospace; font-size: 13px; color: var(--brand); margin-top: 6px; font-weight: 500; }

/* ---------- Map block ---------- */
.mapblock {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mapblock__info { padding: 48px; }
.mapblock__info h2 { font-size: 36px; margin-bottom: 16px; }
.mapblock__rows { margin-top: 32px; }
.mapblock__row { padding: 18px 0; border-bottom: 1px solid var(--line); display: flex; gap: 24px; }
.mapblock__row:last-child { border-bottom: none; }
.mapblock__row .k {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  min-width: 80px;
}
.mapblock__row .v { font-size: 15px; font-weight: 500; line-height: 1.5; }
.mapblock__map {
  position: relative;
  background: #f1f3f6;
  min-height: 480px;
  overflow: hidden;
}
.mapblock__map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mapblock__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 44px; height: 56px;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(32, 145, 255, 0.4));
}
.mapblock__pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* ---------- News strip ---------- */
.news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news__item { display: flex; flex-direction: column; gap: 18px; }
.news__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.news__date {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.news__title { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.3; }
.news__excerpt { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .anim-fade-up {
    animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  .anim-stagger > * { opacity: 0; animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  .anim-stagger > *:nth-child(1) { animation-delay: 0.05s; }
  .anim-stagger > *:nth-child(2) { animation-delay: 0.1s; }
  .anim-stagger > *:nth-child(3) { animation-delay: 0.15s; }
  .anim-stagger > *:nth-child(4) { animation-delay: 0.2s; }
  .anim-stagger > *:nth-child(5) { animation-delay: 0.25s; }
  .anim-stagger > *:nth-child(6) { animation-delay: 0.3s; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
}

.ticker {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 16px 0;
  overflow: hidden;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  will-change: transform;
  width: fit-content;
}
.ticker__track > span { display: flex; align-items: center; gap: 48px; }
.ticker__dot { color: var(--brand); }

/* ---------- Container queries (works in both real mobile + preview-pane mobile mode) ---------- */
body { container-type: inline-size; container-name: page; }

@container page (max-width: 1024px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: block; }
  .hero__grid { grid-template-columns: 1fr !important; gap: 32px; }
  .hero__media, .hero__mosaic { aspect-ratio: 16 / 10; }
  .searchbar { grid-template-columns: repeat(2, 1fr) auto !important; }
  .vgrid { grid-template-columns: repeat(2, 1fr) !important; }
  .catgrid { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto; }
  .catgrid .cat:nth-child(1) { grid-row: auto; grid-column: 1 / 3; }
  .why { grid-template-columns: repeat(2, 1fr) !important; }
  .vd-body { grid-template-columns: 1fr !important; }
  .site-footer__grid { grid-template-columns: 1fr 1fr !important; }
  .ctastrip__inner { grid-template-columns: 1fr !important; }
  .mapblock { grid-template-columns: 1fr !important; }
  .news { grid-template-columns: 1fr !important; }
  .process { grid-template-columns: 1fr 1fr !important; }
}

@container page (max-width: 768px) {
  :root { --pad: 20px; }
  .hero__title { font-size: clamp(40px, 11cqw, 64px) !important; }
  .hero__sub { font-size: 16px; }
  .vgrid { grid-template-columns: 1fr !important; gap: 16px; }
  .vcard { width: 100%; min-width: 0; }
  .reveal-stagger.vgrid > * { transform: none; }

  .catgrid { grid-template-columns: 1fr !important; }
  .catgrid .cat:nth-child(1) { grid-column: auto; }
  .why { grid-template-columns: 1fr !important; }
  .searchbar { grid-template-columns: 1fr !important; }
  .searchbar__cta { justify-content: center; padding: 18px 28px; border-radius: 4px; }
  .hero__stats { grid-template-columns: 1fr !important; gap: 28px; }
  .hero { padding: 64px 0 80px; }
  .section { padding: 64px 0; }
  .section-head { grid-template-columns: 1fr !important; gap: 16px; margin-bottom: 36px; }
  .section-head .lead { text-align: left !important; max-width: 100%; }
  .section-head > div:last-child { align-items: flex-start !important; }
  .vd-spec { grid-template-columns: 1fr !important; }
  .vd-spec__row:nth-child(even) { padding-left: 0; border-left: none; }
  .vd-spec__row:nth-child(odd) { padding-right: 0; }
  .vd-features { grid-template-columns: 1fr !important; }
  .vd-head { grid-template-columns: 1fr !important; }
  .vd-head__price { text-align: left; }
  .vd-head__price .actions { justify-content: flex-start; }
  .vd-gallery { grid-template-columns: 1fr !important; grid-template-rows: 240px 140px 140px; height: auto; }
  .vd-gallery > div:nth-child(1) { grid-row: auto; }
  .site-footer__grid { grid-template-columns: 1fr !important; gap: 32px; }
  .process { grid-template-columns: 1fr !important; }
  .mapblock__info { padding: 32px 24px; }
  .mapblock__map { min-height: 320px; }
  .ctastrip { padding: 56px 0; }
  .ctastrip__actions { flex-direction: column; align-items: stretch; }
  .lang-switch { display: none; }
}

/* ---------- Responsive (legacy nav padding only — main responsive via container queries above) ---------- */
@media (max-width: 1280px) {
  .nav a { padding: 10px 10px; }
}

/* ============================================================
   OFERTA — full filterable listing page
   ============================================================ */
.of-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.of-search {
  position: relative;
  display: flex; align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 16px;
  height: 48px;
  transition: border-color .15s ease, background .15s ease;
}
.of-search:focus-within { border-color: var(--brand); background: #fff; }
.of-search svg { color: var(--muted); flex-shrink: 0; }
.of-search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 0 12px;
  height: 100%;
  font-family: inherit;
  font-size: 15px;
}
.of-search__clear {
  border: none;
  background: transparent;
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.of-search__clear:hover { background: var(--line); color: var(--ink); }

.of-sort {
  display: flex; align-items: center; gap: 10px;
  height: 48px;
}
.of-sort label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.of-sort select {
  height: 48px;
  padding: 0 36px 0 14px;
  background: var(--surface) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230E0E12' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 12px center;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.of-sort select:focus { border-color: var(--brand); }

.of-view {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  height: 48px;
}
.of-view button {
  width: 48px; height: 100%;
  background: var(--surface);
  border: none;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--muted);
  border-right: 1px solid var(--line);
  transition: background .15s ease, color .15s ease;
}
.of-view button:last-child { border-right: none; }
.of-view button:hover { color: var(--ink); }
.of-view button.active { background: var(--ink); color: #fff; }

.of-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.of-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.of-tabs button:hover { color: var(--ink); border-color: var(--ink); }
.of-tabs button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.of-tabs button .count {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.of-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.of-filters {
  position: sticky;
  top: 96px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.of-filters__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.of-filters__head h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.of-filters__reset {
  background: transparent;
  border: none;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
  cursor: pointer;
  padding: 4px 0;
}
.of-filters__reset:hover { text-decoration: underline; }

.of-fgroup { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.of-fgroup:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.of-fgroup h4 {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.of-checks { display: flex; flex-direction: column; gap: 4px; }
.of-checks--row { flex-direction: row; flex-wrap: wrap; gap: 6px; }
.of-checks label {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  transition: background .12s ease, color .12s ease;
  user-select: none;
}
.of-checks label:hover { background: rgba(14,14,18,0.04); }
.of-checks label.is-active { background: var(--ink); color: #fff; }
.of-checks label input { accent-color: var(--brand); }
.of-checks--row label {
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.of-checks--row label.is-active { border-color: var(--ink); }
.of-checks--row label input { display: none; }

.of-range__row {
  display: flex; justify-content: space-between;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 8px;
}
.of-range__inputs { position: relative; height: 28px; }
.of-range__inputs input[type="range"] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  appearance: none;
  background: transparent;
  margin: 0;
}
.of-range__inputs input[type="range"]::-webkit-slider-thumb { pointer-events: auto; }
.of-range input[type="range"] {
  width: 100%;
  height: 4px;
  appearance: none;
  background: var(--line);
  border-radius: 2px;
  outline: none;
}
.of-range input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--brand);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.of-range input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--brand);
  cursor: pointer;
  border: 2px solid #fff;
}

.of-fgroup--cta { background: var(--ink); color: #fff; padding: 20px; border-radius: 4px; margin: 24px -4px 0; }
.of-fgroup--cta p { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.85); margin-bottom: 14px; }

.of-results__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.of-count { font-size: 14px; color: var(--muted); }
.of-count strong { color: var(--ink); font-size: 18px; font-weight: 600; }

.vgrid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* List view */
.vlist { display: flex; flex-direction: column; gap: 12px; }
.vlist__row {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.vlist__row:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 24px -12px rgba(14,14,18,0.15); }
.vlist__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  overflow: hidden;
}
.vlist__media img { width: 100%; height: 100%; object-fit: cover; }
.vlist__body {
  padding: 20px 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.vlist__head { display: flex; justify-content: space-between; align-items: start; gap: 16px; }
.vlist__title { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.vlist__sub { font-family: "Geist Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-top: 4px; }
.vlist__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  font-size: 13px;
}
.vlist__specs .k { font-family: "Geist Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); display: block; }
.vlist__specs .v { font-weight: 500; }
.vlist__price {
  padding: 24px 24px 24px 0;
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: center;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.vlist__price-val { font-size: 26px; font-weight: 700; letter-spacing: -0.025em; }
.vlist__price small { font-family: "Geist Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-top: 2px; }

/* Empty state */
.of-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.of-empty__icon { color: var(--muted); margin-bottom: 16px; }
.of-empty h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.of-empty p { color: var(--muted); margin-top: 8px; font-size: 15px; }

/* Pagination */
.of-pagination {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.of-pages { display: flex; gap: 4px; }
.of-pages button {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  cursor: pointer;
  border-radius: 3px;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.of-pages button:hover { border-color: var(--ink); }
.of-pages button.active { background: var(--ink); color: #fff; border-color: var(--ink); }

@media (max-width: 1100px) {
  .of-toolbar { grid-template-columns: 1fr auto; }
  .of-view { display: none; }
  .of-layout { grid-template-columns: 240px 1fr; gap: 24px; }
  .vgrid--3 { grid-template-columns: repeat(2, 1fr); }
  .vlist__row { grid-template-columns: 220px 1fr; }
  .vlist__price { grid-column: 1 / 3; flex-direction: row; align-items: center; justify-content: space-between; border-left: none; border-top: 1px solid var(--line); padding: 16px 24px; }
}
@media (max-width: 768px) {
  .of-toolbar { grid-template-columns: 1fr; }
  .of-layout { grid-template-columns: 1fr; }
  .of-filters { position: static; max-height: none; }
  .vgrid--3 { grid-template-columns: 1fr; }
  .vlist__row { grid-template-columns: 1fr; }
  .vlist__media { aspect-ratio: 16 / 9; }
  .vlist__body { padding: 16px 20px 0; }
  .vlist__price { padding: 16px 20px; }
  .vlist__specs { grid-template-columns: 1fr 1fr; gap: 10px; }
  .of-pagination { flex-wrap: wrap; gap: 12px; }
  .of-pages { order: -1; flex-wrap: wrap; justify-content: center; flex: 1 1 100%; }
}

/* Reveal on scroll — IntersectionObserver toggles .is-visible */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(0.2, 0.7, 0.2, 1), transform .9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(0.2, 0.7, 0.2, 1), transform .8s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.42s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.49s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* Hero parallax */
.hero__bg-photo { transition: transform 0s linear; }

/* Vehicle card image (replacing placeholder for cards with photos) */
.vcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.vcard:hover .vcard__img { transform: scale(1.04); }
.vcard__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(14,14,18,0.4) 100%);
  pointer-events: none;
}

/* Category card cover image */
.cat__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cat__img-shade {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,14,18,0.65) 0%, rgba(14,14,18,0.85) 100%);
  z-index: 1;
}
.cat--has-img > * { position: relative; z-index: 2; }
.cat--has-img { color: #fff; }
.cat--has-img .cat__num { color: rgba(255,255,255,0.6); }
.cat--has-img .cat__count { color: rgba(255,255,255,0.7); }

/* News images */
.news__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news__item:hover .news__img { transform: scale(1.04); }

/* Vehicle detail gallery — real images */
.vd-gallery__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.vd-gallery > div:hover .vd-gallery__img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 12, 0.96);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage {
  position: relative;
  width: min(1200px, 92vw);
  height: min(76vh, 80vh);
  display: flex; align-items: center; justify-content: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: -72px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: -72px; top: 50%; transform: translateY(-50%); }
@media (max-width: 900px) {
  .lightbox__nav--prev { left: 16px; }
  .lightbox__nav--next { right: 16px; }
}
.lightbox__caption {
  position: absolute;
  bottom: -42px; left: 0; right: 0;
  text-align: center;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.lightbox__thumbs {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 32px;
  display: flex; gap: 8px;
  max-width: min(900px, 90vw);
  overflow-x: auto;
  padding: 4px;
}
.lightbox__thumb {
  width: 80px; height: 56px;
  flex-shrink: 0;
  border-radius: 3px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: #222;
  padding: 0;
}
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox__thumb.is-active { border-color: var(--brand); }

/* Vehicle gallery — main + thumbnails layout for detail page */
.vd-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 560px;
  margin-bottom: 64px;
}
.vd-gallery .more {
  position: absolute;
  bottom: 12px; right: 12px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translate(-50%, 80px);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  z-index: 90;
  opacity: 0;
  transition: opacity .25s ease, transform .35s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: 0 16px 40px -12px rgba(14,14,18,0.5);
  display: flex; align-items: center; gap: 10px;
}
.toast.is-open { opacity: 1; transform: translate(-50%, 0); }
.toast .dot { width: 8px; height: 8px; border-radius: 50%; background: #36d57a; }

/* ---------- Sub-pages: hero ---------- */
.sub-hero {
  background: var(--ink);
  color: #fff;
  padding: 96px 0 80px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.sub-hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(32,145,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.sub-hero__inner { position: relative; max-width: 880px; }
.sub-hero__crumb {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.sub-hero__crumb .dot { color: var(--brand); margin-right: 6px; }
.sub-hero__title {
  font-size: clamp(44px, 5.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #fff;
}
.sub-hero__title em { font-style: normal; color: var(--brand); }
.sub-hero__sub {
  margin-top: 24px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

/* About page */
.about-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.about-pillars__num {
  font-family: "Geist Mono", monospace;
  font-size: 64px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1;
}
.about-pillars__title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-top: 20px; }
.about-pillars__body { font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.6; }

.timeline {
  display: flex; flex-direction: column;
  position: relative;
  margin-top: 48px;
}
.timeline__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.timeline__row:last-child { border-bottom: 1px solid var(--line); }
.timeline__year {
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--brand);
  font-weight: 500;
}
.timeline__title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.timeline__body { font-size: 15px; color: var(--muted); margin-top: 8px; line-height: 1.55; max-width: 720px; }

.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 48px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2091ff, #0a73d6);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 18px;
}
.team-card__name { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.team-card__role { font-family: "Geist Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }

/* Financing page */
.fin-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.fin-calc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.fin-calc h3 {
  font-size: 13px;
  font-family: "Geist Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 24px;
}
.fin-calc__amount-input {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-family: inherit;
  padding: 0;
}
.fin-calc__amount-input::-webkit-outer-spin-button,
.fin-calc__amount-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.fin-calc__amount-input[type=number] { -moz-appearance: textfield; }
.fin-result {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.fin-result__big {
  grid-column: 1 / 3;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.fin-result__big em { color: var(--brand); font-style: normal; font-size: 22px; font-weight: 500; margin-left: 8px; }
.fin-result__lbl { font-family: "Geist Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.fin-result__cell .v { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin-top: 4px; }

.fin-partners {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 64px;
}
.fin-partners__cell {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  min-height: 120px;
  text-align: center;
}

/* Blog page */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: #fff;
  cursor: pointer;
}
.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
}
.blog-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card__img { transform: scale(1.04); }
.blog-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 9px;
  background: #fff;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-card__date { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.blog-card__title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; margin-top: 8px; }
.blog-card__excerpt { font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.6; }
.blog-card__readmore {
  margin-top: 14px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brand);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}

/* Contact page */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: start;
}
.contact-form-big .field { margin-bottom: 16px; }
.contact-form-big input,
.contact-form-big textarea,
.contact-form-big select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}
.contact-form-big input:focus,
.contact-form-big textarea:focus,
.contact-form-big select:focus { border-color: var(--brand); }
.contact-form-big .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-info-row {
  display: flex; align-items: start; gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-info-row:last-child { border-bottom: 1px solid var(--line); }
.contact-info-row__icon {
  width: 40px; height: 40px;
  background: var(--brand-50);
  color: var(--brand);
  display: grid; place-items: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.contact-info-row__lbl { font-family: "Geist Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.contact-info-row__val { font-size: 17px; font-weight: 500; line-height: 1.5; margin-top: 4px; letter-spacing: -0.01em; }

@media (max-width: 1024px) {
  .about-pillars { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .fin-grid { grid-template-columns: 1fr; gap: 36px; }
  .fin-partners { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .timeline__row { grid-template-columns: 100px 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .fin-result__big { font-size: 40px; }
  .timeline__row { grid-template-columns: 1fr; gap: 6px; }
  .contact-form-big .row { grid-template-columns: 1fr; }
  .lightbox__nav { display: none; }
}

