/* LT Motors | design system: black / silver / gold */
:root {
  --bg: #0a0a0c;
  --bg-2: #101014;
  --panel: #16161c;
  --panel-2: #1d1d25;
  --line: #2a2a33;
  --text: #ecedef;
  --muted: #9a9ba3;
  --silver: linear-gradient(160deg, #f5f6f8 20%, #b9bcc4 55%, #e8eaee 80%);
  --gold: #d8b45a;
  --gold-2: #f0d488;
  --gold-grad: linear-gradient(135deg, #b98f35, #e9cd7d 45%, #c9a23f);
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --neon: 0 0 12px rgba(240, 212, 136, 0.5), 0 0 34px rgba(216, 180, 90, 0.22);
  --neon-soft: 0 0 8px rgba(240, 212, 136, 0.35);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.012) 0 2px, transparent 2px 16px),
    radial-gradient(1000px 620px at 85% -5%, rgba(216, 180, 90, 0.09), transparent 60%),
    radial-gradient(900px 700px at -12% 38%, rgba(95, 125, 195, 0.06), transparent 60%),
    radial-gradient(850px 550px at 108% 82%, rgba(216, 180, 90, 0.06), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Heebo', system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { width: min(var(--max), 92vw); margin-inline: auto; }

main { flex: 1; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-bottom-color: rgba(216, 180, 90, 0.45);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 66px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.brand strong {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(240, 212, 136, 0.35));
}
.nav { display: flex; gap: 22px; margin-inline-start: auto; }
.nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
  padding: 6px 2px;
}
.nav a:hover, .nav a.active { color: var(--gold-2); }
.header-cta {
  background: var(--gold-grad);
  color: #17130a;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 9px 20px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(216, 180, 90, 0.25);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(216, 180, 90, 0.4); }

/* mobile nav */
.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text);
  padding: 7px 9px;
  align-items: center;
  transition: border-color 0.15s, color 0.15s;
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold-2); }
.nav-toggle svg { width: 21px; height: 21px; display: block; }
.mobile-nav { display: none; }

/* language switcher */
.lang-switch { display: flex; gap: 6px; align-items: center; }
.lang-switch button {
  border: 2px solid transparent;
  background: none;
  border-radius: 6px;
  padding: 3px 4px;
  line-height: 0;
  opacity: 0.55;
  transition: opacity 0.15s, border-color 0.15s, transform 0.15s;
}
.lang-switch button img { border-radius: 3px; display: block; }
.lang-switch button:hover { opacity: 1; transform: translateY(-1px); }
.lang-switch button.active { opacity: 1; border-color: var(--gold); }

/* fonts for non-Hebrew languages (Rubik covers Latin, Cyrillic and Arabic) */
html[lang="ru"] body, html[lang="ar"] body, html[lang="en"] body,
html[lang="ru"] button, html[lang="ar"] button, html[lang="en"] button,
html[lang="ru"] select, html[lang="ar"] select, html[lang="en"] select {
  font-family: 'Rubik', 'Heebo', system-ui, sans-serif;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 64px;
  background:
    radial-gradient(900px 420px at 78% -10%, rgba(216, 180, 90, 0.13), transparent 60%),
    radial-gradient(700px 380px at 15% 110%, rgba(150, 160, 190, 0.10), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-showcase {
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  padding: 96px 0;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 6s ease;
}
.hero-bg img.on { opacity: 1; transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 12, 0.97) 4%, rgba(10, 10, 12, 0.45) 40%, rgba(10, 10, 12, 0.35)),
    linear-gradient(to left, rgba(10, 10, 12, 0.82) 18%, rgba(10, 10, 12, 0.25) 60%, transparent);
}
[dir="ltr"] .hero-bg::after {
  background:
    linear-gradient(to top, rgba(10, 10, 12, 0.97) 4%, rgba(10, 10, 12, 0.45) 40%, rgba(10, 10, 12, 0.35)),
    linear-gradient(to right, rgba(10, 10, 12, 0.82) 18%, rgba(10, 10, 12, 0.25) 60%, transparent);
}
.hero-showcase .wrap { position: relative; z-index: 1; }
.hero-content { max-width: 620px; }
.hero-car-tag {
  position: absolute;
  z-index: 1;
  bottom: 26px;
  inset-inline-end: 26px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: rgba(16, 16, 20, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(216, 180, 90, 0.45);
  border-radius: 999px;
  padding: 10px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.hero-car-tag { box-shadow: var(--neon-soft); }
.hero-car-tag:hover { border-color: var(--gold-2); transform: translateY(-2px); box-shadow: var(--neon); }
.hero-dots button.active { box-shadow: var(--neon-soft); }
.hero-car-tag strong { font-size: 0.98rem; }
.hero-car-tag span {
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.12;
  background: var(--silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(240, 212, 136, 0.55)) drop-shadow(0 0 38px rgba(216, 180, 90, 0.3));
}
.hero p.lead { color: var(--muted); font-size: 1.1rem; margin-top: 16px; max-width: 46ch; }
.hero p.lead strong {
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(240, 212, 136, 0.35));
}
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-logo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold-grad);
  color: #17130a;
  box-shadow: 0 4px 18px rgba(216, 180, 90, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-gold:hover { box-shadow: 0 6px 26px rgba(216, 180, 90, 0.42); }
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 45%;
  left: -70%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn-gold:hover::after { animation: btn-shine 0.7s ease; }
@keyframes btn-shine { to { left: 140%; } }
.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-wa { background: #1f9d55; color: #fff; }
.btn-wa:hover { box-shadow: 0 6px 22px rgba(31, 157, 85, 0.4); }
.btn svg { width: 18px; height: 18px; flex: none; }

.hero-dots {
  position: absolute;
  z-index: 1;
  bottom: 34px;
  inset-inline-start: 26px;
  display: flex;
  gap: 9px;
}
.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hero-dots button.active { background: var(--gold); transform: scale(1.25); }

/* ---------- spotlight (car of the week) ---------- */
.spotlight {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
  border: 1px solid rgba(216, 180, 90, 0.45);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 26px rgba(216, 180, 90, 0.14), inset 0 0 40px rgba(216, 180, 90, 0.04);
}
.spotlight-img, .spotlight-body { min-width: 0; }
.spotlight-img { position: relative; min-height: 320px; }
.spotlight-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight-body { padding: 34px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.spot-label {
  align-self: flex-start;
  background: var(--gold-grad);
  color: #17130a;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 5px 18px;
  letter-spacing: 0.03em;
  box-shadow: var(--neon);
}
.spotlight-body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; }
.spotlight-body h3 small { color: var(--muted); font-weight: 500; font-size: 1.1rem; margin-inline-start: 8px; }
.spotlight-body .price-row .price-now { font-size: 1.9rem; }
.spotlight-specs { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; padding: 0; }
.spotlight-specs li { display: flex; gap: 9px; align-items: baseline; color: var(--muted); font-size: 0.93rem; }
.spotlight-specs li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.spotlight-body .btn { align-self: flex-start; }

/* savings badge */
.badge-save {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-weight: 800;
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 4px 12px;
}

/* ---------- trust strip ---------- */
.trust { padding: 34px 0; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.trust-item svg { width: 26px; height: 26px; color: var(--gold); flex: none; filter: drop-shadow(0 0 7px rgba(240, 212, 136, 0.45)); }
.trust-item strong { display: block; font-size: 0.98rem; }
.trust-item span { color: var(--muted); font-size: 0.85rem; }

/* ---------- sections ---------- */
.section { padding: 64px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 30px; gap: 16px; }
.section-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  background: var(--silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  padding-bottom: 13px;
}
.section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 1px;
  width: 58px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold-grad);
  box-shadow: var(--neon);
}
.section-head .more { color: var(--gold-2); font-weight: 600; white-space: nowrap; }
.section-head .more:hover { text-decoration: underline; }

/* ---------- car cards ---------- */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.car-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 180, 90, 0.65);
  box-shadow: var(--shadow), var(--neon);
}
.car-card .thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.car-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.car-card:hover .thumb img { transform: scale(1.045); }
.car-card .thumb img.alt {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.car-card:hover .thumb img.alt { opacity: 1; }
.badge-sale {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--gold-grad);
  color: #17130a;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.badge-sold {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-16deg);
  z-index: 3;
  background: rgba(198, 40, 40, 0.94);
  color: #fff;
  font-size: clamp(1.7rem, 7vw, 2.6rem);
  font-weight: 900;
  padding: 6px 40px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.car-card.sold .thumb img { filter: grayscale(0.75) brightness(0.58); }
.car-card.sold .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.28);
}
.car-card.sold { opacity: 0.9; }
.sold-tag {
  display: inline-block;
  vertical-align: middle;
  margin-inline-start: 10px;
  background: #c62828;
  color: #fff;
  font-size: 0.7em;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.car-card .body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.car-card h3 { font-size: 1.18rem; font-weight: 700; }
.car-card h3 small { color: var(--muted); font-weight: 500; margin-inline-start: 6px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-2);
  border: 1px solid rgba(216, 180, 90, 0.4);
  background: rgba(216, 180, 90, 0.08);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.price-row { display: flex; align-items: baseline; gap: 10px; margin-top: auto; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: 0.95rem; }
.price-now {
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 9px rgba(240, 212, 136, 0.4));
}
.car-card .btn { justify-content: center; }

/* ---------- catalog filters ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
}
.filter-chip {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.18s;
}
.filter-chip:hover { color: var(--text); border-color: var(--gold); }
.filter-chip.active {
  background: var(--gold-grad);
  color: #17130a;
  border-color: transparent;
}
.filters select {
  margin-inline-start: auto;
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px;
  font: inherit;
}
.empty-note { color: var(--muted); padding: 40px 0; text-align: center; }

/* ---------- car page ---------- */
.car-hero { padding: 42px 0 64px; }
.crumbs { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.crumbs a:hover { color: var(--gold-2); }
.car-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: start;
}
.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--panel);
}
.gallery-main.sold img { filter: grayscale(0.65) brightness(0.68); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 10px; }
.gallery-thumbs button {
  border: 2px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: none;
  aspect-ratio: 4 / 3;
  transition: border-color 0.15s, opacity 0.15s;
  opacity: 0.75;
}
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs button.active, .gallery-thumbs button:hover { border-color: var(--gold); opacity: 1; }

.car-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: 86px;
}
.car-panel h1 { font-size: 1.7rem; font-weight: 800; }
.car-panel h1 small { color: var(--muted); font-weight: 500; font-size: 1.05rem; margin-inline-start: 8px; }
.car-panel .chips { margin: 14px 0 18px; }
.price-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.price-box .price-now { font-size: 1.7rem; }
.finance-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
  border: 1px dashed rgba(216, 180, 90, 0.4);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 20px;
}
.finance-note svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
.car-cta { display: flex; flex-direction: column; gap: 10px; }
.car-cta .btn { justify-content: center; }
.call-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.specs { margin-top: 46px; }
.car-panel .specs { margin: 6px 0 4px; }
.specs h2 { font-size: 1.3rem; margin-bottom: 18px; font-weight: 700; }
.specs ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px 26px;
}
.specs li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 15px;
}
.specs li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }

/* ---------- why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.why-card svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 14px; }
.why-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.94rem; }
.why-cta {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-2);
  font-weight: 700;
  font-size: 0.92rem;
}
.why-cta:hover { text-decoration: underline; }

/* ---------- contact ---------- */
.contact-band {
  background:
    radial-gradient(700px 300px at 50% -40%, rgba(216, 180, 90, 0.12), transparent 65%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.contact-card svg { width: 26px; height: 26px; color: var(--gold); margin: 0 auto 12px; }
.contact-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.contact-card p, .contact-card a.tel { color: var(--muted); font-size: 0.95rem; display: block; }
.contact-card a.tel:hover { color: var(--gold-2); }
.contact-card a.tel strong { color: var(--text); }

/* ---------- footer ---------- */
.site-footer {
  position: relative;
  border-top: 1px solid rgba(216, 180, 90, 0.3);
  background: #08080a;
  padding: 30px 0;
  margin-top: auto;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(240, 212, 136, 0.75), transparent);
  box-shadow: var(--neon);
}
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer p { color: var(--muted); font-size: 0.88rem; }
.site-footer .brand img { height: 34px; width: 34px; }

/* floating whatsapp */
.wa-float {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f9d55;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- mobile sticky CTA ---------- */
.mobile-cta { display: none; }
@media (max-width: 768px) {
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 65;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .mobile-cta .btn { justify-content: center; padding: 11px 10px; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .wa-float { display: none; }
  html.a11y-light .mobile-cta { background: rgba(245, 245, 247, 0.95); border-color: #d5d5da; }
}

/* ---------- accessibility ---------- */
.skip-link {
  position: absolute;
  top: -60px;
  inset-inline-start: 12px;
  z-index: 100;
  background: var(--gold-grad);
  color: #17130a;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 18px;
  transition: top 0.15s;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- legal pages (terms / accessibility) ---------- */
.legal { max-width: 760px; }
.legal h1 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  background: var(--silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.legal .legal-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 30px; }
.legal h2 { font-size: 1.15rem; font-weight: 700; color: var(--gold-2); margin: 28px 0 10px; }
.legal p { color: var(--text); margin-bottom: 12px; }
.legal ul { margin: 0 0 12px; padding-inline-start: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--gold-2); }
.legal a:hover { text-decoration: underline; }

.social-row { display: flex; gap: 12px; justify-content: center; }
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.2s;
}
.social-row a:hover {
  color: var(--gold-2);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--neon-soft);
}
.social-row a svg { width: 20px; height: 20px; }

.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: var(--muted); font-size: 0.88rem; }
.footer-legal a:hover { color: var(--gold-2); }

/* ---------- promo popup ---------- */
.promo-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(4, 4, 6, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.promo-backdrop.open { opacity: 1; }
.promo-modal {
  position: relative;
  width: min(460px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  border: 1px solid rgba(216, 180, 90, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 40px rgba(216, 180, 90, 0.22);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.3s ease;
}
.promo-backdrop.open .promo-modal { transform: none; }
.promo-close {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(6px);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
.promo-close:hover { border-color: var(--gold); color: var(--gold-2); }
.promo-close svg { width: 17px; height: 17px; }
.promo-img { position: relative; aspect-ratio: 16 / 10; }
.promo-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-body { padding: 20px 24px 26px; display: flex; flex-direction: column; gap: 12px; }
.promo-body h2 { font-size: 1.3rem; font-weight: 800; line-height: 1.3; }
.promo-body .price-now { font-size: 1.6rem; }
.promo-actions { display: grid; gap: 10px; margin-top: 4px; }
.promo-actions .btn { justify-content: center; }
html.a11y-light .promo-modal { background: #fff; }
html.a11y-light .promo-close { background: rgba(245, 245, 247, 0.9); color: #26262c; }

/* ---------- accessibility widget ---------- */
.a11y-widget {
  position: fixed;
  bottom: 22px;
  inset-inline-start: 22px;
  z-index: 70;
}
.a11y-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #1a6fd4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s;
}
.a11y-toggle:hover { transform: scale(1.07); }
.a11y-toggle svg { width: 30px; height: 30px; }
.a11y-menu[hidden] { display: none; }
.a11y-menu {
  position: absolute;
  bottom: 66px;
  inset-inline-start: 0;
  width: 230px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
}
.a11y-title { font-weight: 800; font-size: 1rem; margin-bottom: 4px; color: var(--gold-2); }
.a11y-menu button {
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
  border-radius: 9px;
  padding: 9px 13px;
  text-align: start;
  font-size: 0.92rem;
  transition: border-color 0.15s, background 0.15s;
}
.a11y-menu button:hover { border-color: #1a6fd4; }
.a11y-menu button[aria-pressed="true"] {
  background: #1a6fd4;
  border-color: #1a6fd4;
  color: #fff;
  font-weight: 700;
}
.a11y-menu .a11y-reset { color: var(--muted); }
.a11y-menu .a11y-stmt {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  padding-top: 4px;
}
.a11y-menu .a11y-stmt:hover { color: var(--gold-2); text-decoration: underline; }

/* accessibility modes */
html.a11y-font-1 { font-size: 115%; }
html.a11y-font-2 { font-size: 132%; }

html.a11y-readable body,
html.a11y-readable button,
html.a11y-readable select {
  font-family: Arial, 'Segoe UI', sans-serif !important;
  letter-spacing: 0.01em;
}

html.a11y-contrast body { background: #000; color: #fff; }
html.a11y-contrast .site-header { background: #000; }
html.a11y-contrast .car-card,
html.a11y-contrast .trust-item,
html.a11y-contrast .why-card,
html.a11y-contrast .contact-card,
html.a11y-contrast .car-panel,
html.a11y-contrast .specs li,
html.a11y-contrast .a11y-menu { background: #000; border-color: #fff; }
html.a11y-contrast .chip { background: #000; border-color: #ccc; color: #fff; }
html.a11y-contrast p, html.a11y-contrast span:not(.price-now):not(.badge-sale),
html.a11y-contrast a, html.a11y-contrast li, html.a11y-contrast .nav a { color: #fff; }
html.a11y-contrast .price-now,
html.a11y-contrast .section-head h2,
html.a11y-contrast .hero h1,
html.a11y-contrast .brand strong {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #ffd700;
  color: #ffd700;
}

html.a11y-light body { background: #f5f5f7; color: #16161a; }
html.a11y-light .site-header { background: rgba(245, 245, 247, 0.92); border-color: #d5d5da; }
html.a11y-light .hero, html.a11y-light .trust, html.a11y-light .contact-band { background: #ececef; border-color: #d5d5da; }
html.a11y-light .car-card, html.a11y-light .trust-item, html.a11y-light .why-card,
html.a11y-light .contact-card, html.a11y-light .car-panel, html.a11y-light .specs li,
html.a11y-light .filter-chip, html.a11y-light .price-box, html.a11y-light .a11y-menu,
html.a11y-light .a11y-menu button { background: #fff; border-color: #cfcfd6; color: #16161a; }
html.a11y-light p, html.a11y-light span:not(.badge-sale), html.a11y-light a,
html.a11y-light li, html.a11y-light .nav a, html.a11y-light strong,
html.a11y-light h3, html.a11y-light .chip { color: #26262c; }
html.a11y-light .hero h1, html.a11y-light .section-head h2, html.a11y-light .brand strong,
html.a11y-light .car-panel h1, html.a11y-light .legal h1 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #16161a;
  color: #16161a;
}
html.a11y-light .price-now {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #8a6410;
  color: #8a6410;
}
html.a11y-light .site-footer { background: #e2e2e6; }
html.a11y-light .site-footer p, html.a11y-light .footer-legal a { color: #3a3a42; }
/* neon effects are for the dark theme only */
html.a11y-light .hero h1 .gold, html.a11y-light .price-now, html.a11y-light .trust-item svg { filter: none; }
html.a11y-light .section-head h2::after, html.a11y-light .spot-label, html.a11y-light .site-footer::before,
html.a11y-light .hero-car-tag, html.a11y-light .car-card:hover { box-shadow: none; }
html.a11y-contrast .hero h1 .gold, html.a11y-contrast .price-now { filter: none; }
html.a11y-light body, html.a11y-contrast body { background-image: none; }

html.a11y-links a { text-decoration: underline !important; }
html.a11y-links a:focus, html.a11y-links a:hover { outline: 2px solid #1a6fd4; }

html.a11y-nomotion *, html.a11y-nomotion *::before, html.a11y-nomotion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.a11y-cursor, html.a11y-cursor * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 24 24"><path d="M4 2l16 11h-7l4 8-3 1.5-4-8L4 20z" fill="white" stroke="black" stroke-width="1.5"/></svg>') 4 2, auto !important;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 30px; }
  .hero-logo { max-width: 420px; margin-inline: auto; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-img { min-height: 240px; aspect-ratio: 16 / 10; position: relative; }
  .spotlight-body { padding: 24px; }
  .hero-car-tag { bottom: 20px; inset-inline-end: 16px; padding: 8px 16px; }
  .hero-dots { bottom: 30px; inset-inline-start: 18px; }
  .hero-showcase { min-height: min(70vh, 640px); padding: 72px 0 64px; }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); }
  .car-layout { grid-template-columns: 1fr; }
  .car-panel { position: static; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .lang-switch { margin-inline-start: auto; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(216, 180, 90, 0.35);
    flex-direction: column;
    padding: 6px 4vw 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-weight: 500;
  }
  .mobile-nav a.active { color: var(--gold-2); }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav .mobile-nav-cta { color: var(--gold-2); font-weight: 700; }
  html.a11y-light .mobile-nav { background: rgba(245, 245, 247, 0.98); }
  .section { padding: 46px 0; }
  .section-head { margin-bottom: 22px; }
  .spotlight-body h3 { font-size: 1.4rem; }
  .car-panel { padding: 20px; }
  .car-hero { padding-top: 26px; }
}
@media (max-width: 560px) {
  .header-cta { display: none; }
  .site-header .wrap { gap: 10px; min-height: 60px; }
  .brand { gap: 8px; }
  .brand img { height: 36px; width: 36px; }
  .brand strong { font-size: 0.98rem; letter-spacing: 0.04em; }
  .lang-switch { gap: 3px; }
  .lang-switch button { padding: 2px 3px; }
  .filters select { width: 100%; margin-inline-start: 0; }
  .hero-actions { flex-wrap: nowrap; gap: 7px; }
  .hero-actions .btn {
    flex: 1 1 0;
    justify-content: center;
    padding: 10px 6px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .specs ul { grid-template-columns: 1fr; }
  .spotlight-specs { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .trust .wrap { grid-template-columns: 1fr; }
  .call-row { grid-template-columns: 1fr; }
  .cars-grid { grid-template-columns: 1fr; }
}

/* mobile: keep the accessibility button clear of the sticky CTA bar
   (must come after the base .a11y-widget rules to win the cascade) */
@media (max-width: 768px) {
  .a11y-widget { bottom: calc(102px + env(safe-area-inset-bottom)); }
  .a11y-toggle { width: 46px; height: 46px; }
  .a11y-toggle svg { width: 25px; height: 25px; }
  .a11y-menu { bottom: 56px; }

}
