@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700;800&display=swap');
/* ============================================================
   ליס מרקט — עסקאות מימון לרכב
   Design system: light base, graphite + brand orange (from logo), RTL
   ============================================================ */

:root {
  /* fixed two-tier header height (nav-top 72px + nav-bar 50px). Content offset = --nav-off */
  --nav-h:   122px;
  --nav-off: 132px;
  /* light surfaces (brand base: white / very light gray) */
  --bg:        #FFFFFF;
  --bg-1:      #F7F7F7;
  --bg-2:      #F0F0F0;
  --bg-3:      #E7E7E7;
  --bg-card:   #FFFFFF;

  /* graphite text / muted */
  --ink:       #232323;
  --ink-soft:  #3D3D3D;
  --muted:     #666666;
  --muted-2:   #9A9A9A;

  /* brand orange (was "gold" — names kept so all rules update at once) */
  --gold-h:    161;
  --gold:      #2AD8A0;
  --gold-deep: #22AD80;
  --gold-bright: #36FFCD;
  --gold-rgb:  42 216 160;

  /* lines */
  --line:      color-mix(in oklab, var(--ink) 14%, transparent);
  --line-2:    color-mix(in oklab, var(--ink) 8%, transparent);
  --gold-line: color-mix(in oklab, var(--gold) 42%, transparent);

  /* type */
  --display: "Heebo", "Noto Sans Hebrew", Arial, sans-serif;
  --body:    "Heebo", "Noto Sans Hebrew", Arial, sans-serif;
  --mono:    "Heebo", "Noto Sans Hebrew", Arial, sans-serif;

  /* shape (tweakable) */
  --radius:    14px;
  --radius-sm: 10px;
  --btn-radius: 999px;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* dark zones: hero, footer, premium/sales strips — flip tokens to graphite */
.media-hero, .footer, .testi-section, .lead-section, .calc-result, .dark-zone {
  color: var(--ink);
  --bg:        #1c1c1c;
  --bg-1:      #232323;
  --bg-2:      #2b2b2b;
  --bg-3:      #353535;
  --bg-card:   #232323;
  --ink:       #FFFFFF;
  --ink-soft:  #DADADA;
  --muted:     #A2A2A2;
  --muted-2:   #7A7A7A;
  --line:      color-mix(in oklab, #FFFFFF 15%, transparent);
  --line-2:    color-mix(in oklab, #FFFFFF 8%, transparent);
  --gold-line: color-mix(in oklab, var(--gold) 46%, transparent);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-off); overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

::selection { background: rgba(var(--gold-rgb) / 0.3); color: var(--ink); }

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

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: clamp(72px, 10vw, 132px); position: relative; }
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold-line); }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; }
.h-sec { font-size: clamp(32px, 4.6vw, 58px); margin-top: 20px; text-wrap: balance; }
.lead { color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 19px); max-width: 56ch; margin-top: 20px; line-height: 1.7; }
.hero-value { margin-top: 22px; max-width: 60ch; font-size: clamp(17px, 1.75vw, 22px); line-height: 1.65; color: #fff; font-weight: 500; padding: 16px 22px; border-inline-start: 4px solid var(--gold); border-radius: 12px; background: linear-gradient(90deg, rgba(var(--gold-rgb)/0.16), rgba(var(--gold-rgb)/0.03)); backdrop-filter: blur(4px); }
.hero-value b { color: var(--gold); font-weight: 800; }
.center .hero-value { margin-inline: auto; }
.gold-text { color: var(--gold); font-style: normal; }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .lead { margin-inline: auto; }

/* gold thin rule */
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--gold-line), transparent); border: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 15.5px;
  padding: 15px 30px; border-radius: var(--btn-radius);
  border: 1px solid transparent; transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: #FFFFFF; box-shadow: 0 10px 30px -12px rgba(var(--gold-rgb) / 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(var(--gold-rgb) / 0.75); filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold-line); color: var(--gold); }
.btn-lg { padding: 18px 38px; font-size: 16.5px; }

/* ---------- header / nav ---------- */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  background: #1E1D1B;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 12px 34px -18px rgba(0,0,0,0.6);
}
.nav .nav-links a, .nav .mega-trigger, .nav .nav-phone { color: #ECE7DE; }
.nav .burger { color: #ECE7DE; }
.brand-img { height: 46px; width: auto; display: block; }
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-img { height: 88px; background: none; padding: 0; border-radius: 0; }
/* two-tier header (Capital-style) */
.nav-top-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; height: 72px; max-width: none; padding-inline: clamp(20px,3vw,44px); }
.nav-search { justify-self: start; display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 0 8px 0 16px; max-width: 240px; }
.nav-search input { background: none; border: 0; outline: none; color: #ECE7DE; font-family: inherit; font-size: 14px; padding: 10px 4px; width: 100%; text-align: right; }
.nav-search input::placeholder { color: rgba(236,231,222,0.6); }
.nav-search { position: relative; }
.nav-search-results { position: absolute; top: calc(100% + 10px); inset-inline-start: 0; width: min(440px, 92vw); max-height: 70vh; overflow-y: auto; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5); display: none; z-index: 130; padding: 6px; }
.nav-search-results.open { display: block; }
.ns-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; color: var(--ink); text-decoration: none; transition: background .15s; }
.ns-row:hover { background: var(--bg-2); }
.ns-thumb { width: 64px; height: 44px; object-fit: contain; flex: 0 0 auto; }
.ns-meta { flex: 1; min-width: 0; text-align: right; }
.ns-meta b { display: block; font-size: 14.5px; color: var(--ink); font-weight: 700; }
.ns-meta span { font-size: 12.5px; color: var(--muted); }
.ns-price { flex: 0 0 auto; font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--gold-deep); white-space: nowrap; }
.ns-price small { font-family: var(--body); font-weight: 400; font-size: 11px; color: var(--muted); }
.ns-empty { padding: 20px 16px; text-align: center; color: var(--muted); font-size: 14px; }
.ns-empty a { color: var(--gold-deep); text-decoration: underline; }
.nav-search button { background: none; border: 0; color: #ECE7DE; cursor: pointer; display: grid; place-items: center; padding: 6px; }
.nav-search button svg { width: 17px; height: 17px; }
.nav-logo { justify-self: center; }
.nav-bar { border-top: 1px solid rgba(255,255,255,0.08); background: #171614; }
.nav-bar-inner { display: flex; align-items: center; justify-content: center; height: 50px; }
.nav-phone-pill { display: inline-flex; align-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.2); color: #ECE7DE; border-radius: 999px; padding: 9px 18px; font-family: var(--mono); font-size: 13.5px; letter-spacing: 0.03em; white-space: nowrap; }
.nav-phone-pill:hover { color: var(--gold); border-color: var(--gold); }
/* ---- favorites ---- */
.nav-fav { position: relative; display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.2); color: #ECE7DE; cursor: pointer; transition: 0.2s; }
.nav-fav:hover { border-color: var(--gold); color: var(--gold); }
.nav-fav.has-favs { color: var(--gold); }
.nav-fav svg { width: 19px; height: 19px; }
.nav-fav-badge { position: absolute; inset-block-start: -4px; inset-inline-end: -4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--gold); color: #1E1D1B; font-size: 11px; font-weight: 800; display: grid; place-items: center; line-height: 1; }
.fav-panel { position: fixed; inset-block-start: 74px; inset-inline-end: clamp(12px,4vw,44px); width: min(360px, 92vw); max-height: 74vh; overflow-y: auto; background: #fff; color: var(--ink); border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5); z-index: 130; padding: 8px; }
.fav-panel-h { font-family: var(--display); font-weight: 800; font-size: 16px; padding: 10px 12px; color: var(--ink); }
.fav-panel-h span { color: var(--muted); font-weight: 600; font-size: 13px; }
.fav-empty { padding: 18px 14px 22px; text-align: center; color: var(--muted); font-size: 14px; line-height: 1.6; }
.fav-item { display: flex; align-items: center; gap: 8px; padding: 6px; border-radius: 12px; }
.fav-item:hover { background: var(--bg-2); }
.fav-item-link { display: flex; align-items: center; gap: 11px; flex: 1; min-width: 0; color: var(--ink); text-decoration: none; }
.fav-item-link img { width: 64px; height: 44px; object-fit: cover; border-radius: 8px; flex: 0 0 auto; }
.fav-item-link b { display: block; font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fav-item-link small { color: var(--gold-deep); font-size: 12.5px; font-weight: 600; }
.fav-rm { flex: 0 0 auto; background: none; border: 0; color: var(--muted); font-size: 16px; cursor: pointer; padding: 6px; border-radius: 8px; }
.fav-rm:hover { background: var(--bg-1); color: var(--danger, #e25555); }
.uc-fav.is-fav { background: var(--gold); border-color: var(--gold); color: #fff; }
.uc-fav.is-fav svg { fill: #fff; }
@media (max-width: 1040px) { .fav-panel { inset-block-start: 60px; } }
.brand { display: inline-flex; direction: ltr; align-items: baseline; gap: 1px; font-family: var(--display); font-weight: 900; font-size: 25px; letter-spacing: -0.02em; }
.brand b { color: var(--gold); font-weight: 900; }
.brand .star { color: var(--gold); font-size: 0.7em; margin-inline-start: 3px; }
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; }
.nav-links a { font-size: 14.5px; font-weight: 500; transition: color 0.3s; position: relative; white-space: nowrap; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { content: ""; position: absolute; inset-block-end: -6px; inset-inline: 0; height: 1px; background: var(--gold-line); }

/* ----- mega menu (catalog) ----- */
.nav-mega { position: relative; display: flex; align-items: center; }
.mega-trigger { display: inline-flex; align-items: center; gap: 3px; font-size: 14.5px; font-weight: 600; cursor: pointer; white-space: nowrap; padding: 0; border: 0; background: none; color: #ECE7DE; transition: color 0.25s; }
.nav-mega:hover .mega-trigger, .mega-trigger.active { background: none; color: var(--gold); }
.mega-trigger .caret { font-size: 17px; color: var(--gold); transition: transform 0.3s; line-height: 1; }
.mega-trigger.active { color: var(--gold); }
.nav-mega:hover .mega-trigger { color: var(--gold); }
.nav-mega:hover .caret { transform: rotate(180deg); }
.mega-panel { position: fixed; inset-inline: 0; inset-block-start: 122px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-block-start: 0; border-end-start-radius: 18px; border-end-end-radius: 18px; box-shadow: 0 44px 90px -30px rgba(0,0,0,0.3); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s; z-index: 99; max-height: 80vh; overflow-y: auto; }
.nav-mega:hover .mega-panel,
.nav-mega.open .mega-panel { opacity: 1; visibility: visible; transform: none; }
.mega-inner { order: 1; max-width: none; margin-inline: 0; padding: 0; display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; align-items: stretch; }
.mega-promo { display: block; position: relative; overflow: hidden; border: 0; border-end-start-radius: 18px; order: 2; align-self: stretch; }
.mega-promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; display: block; transition: transform 0.6s var(--ease); }
.mega-promo:hover img { transform: scale(1.03); }
.mega-grid { order: 1; display: grid; grid-template-columns: minmax(0,2.6fr) minmax(0,0.7fr) minmax(0,0.7fr); gap: 16px; align-items: stretch; padding: 16px 28px 18px; }
.mega-col { display: flex; flex-direction: column; }
@media (max-width: 1180px) { .mega-inner { grid-template-columns: 1fr; } .mega-promo { display: none; } }
.mega-h { font-family: var(--body); font-size: 17px; font-weight: 800; letter-spacing: 0; text-transform: none; color: var(--gold-deep); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--gold-line); }
.mega-col > a { display: block; color: #2a2520; font-weight: 500; font-size: 13px; padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.08); transition: color 0.2s, padding-inline-start 0.2s; }
.mega-col > a:hover { color: var(--gold); padding-inline-start: 6px; }
.mega-brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px 6px; }
.mega-brand-grid a { display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 9px; min-width: 0; color: #211b12; font-size: 12px; font-weight: 600; padding: 3px 4px; border-radius: 6px; transition: background-color 0.2s, color 0.2s; }
.mega-brand-grid a .mega-name { flex: 1; text-align: start; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mega-brand-grid a:hover { color: var(--gold-deep); background: rgba(0,0,0,0.04); }
.mega-brand-grid .mega-logo { width: 30px; height: 30px; flex-shrink: 0; background: none; border: 0; box-shadow: none; border-radius: 0; overflow: visible; display: grid; place-items: center; position: relative; }
.mega-brand-grid .mega-logo img { width: 100%; height: 100%; padding: 0; box-sizing: border-box; object-fit: contain; opacity: 1; }
.mega-brand-grid a:hover .mega-logo img { opacity: 1; }
.mega-mono { display: none; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; font-family: var(--display); font-weight: 700; font-size: 12px; align-items: center; justify-content: center; }
.mega-logo:not(:has(img)) .mega-mono { display: flex; }
.mega-all { display: inline-block; margin-top: auto; padding-top: 14px !important; color: var(--gold); font-size: 13.5px; font-weight: 600; border: 0 !important; }
.mega-all:hover { padding-inline-start: 0 !important; opacity: 0.8; }
.mega-foot { border-top: 1px solid rgba(0,0,0,0.08); padding-block: 16px; }
/* force readable black text across the light catalog panel */
.mega-panel .mega-name, .mega-panel .mega-col > a { color: #1a1712 !important; }
.mega-panel .mega-brand-grid a:hover .mega-name, .mega-panel .mega-col > a:hover { color: var(--gold-deep) !important; }
.mega-foot-btn { display: inline-block; }
.mega-col-btn { display: inline-block; margin-top: auto; align-self: flex-start; border-bottom: 0 !important; color: #fff !important; padding: 11px 26px !important; }
.mega-col-btn:hover { padding-inline-start: 26px !important; color: #fff !important; }
.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; justify-self: end; }
.nav-phone { font-family: var(--mono); font-size: 14px; letter-spacing: 0.04em; white-space: nowrap; }
.nav-phone:hover { color: var(--gold); }
.burger { display: none; background: none; border: 0; color: var(--ink); flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: currentColor; transition: 0.3s; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--nav-off); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 620px at 78% 18%, rgba(var(--gold-rgb) / 0.16), transparent 60%),
    radial-gradient(800px 600px at 10% 90%, rgba(var(--gold-rgb) / 0.06), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg));
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 72px 72px; mask-image: radial-gradient(900px 600px at 70% 30%, #000, transparent 75%); opacity: 0.5;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; width: 100%; }
.hero-eyebrow { margin-bottom: 26px; }
.hero h1 { font-size: clamp(40px, 6.4vw, 88px); line-height: 1.02; }
.hero h1 .line2 { display: block; }
.hero-sub { color: var(--ink-soft); font-size: clamp(17px, 1.7vw, 21px); max-width: 48ch; margin-top: 28px; line-height: 1.65; }
.hero-actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 14px; color: var(--muted); }
.hero-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px 2px rgba(var(--gold-rgb)/0.6); }

/* hero visual */
.hero-visual { position: relative; }
.placeholder {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(var(--gold-rgb)/0.05) 0 2px, transparent 2px 12px),
    linear-gradient(160deg, var(--bg-3), var(--bg-1));
  border: 1px solid var(--line); display: grid; place-items: center;
}
.placeholder .ph-label {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px;
  background: color-mix(in oklab, var(--bg) 50%, transparent);
}
.hero-visual .placeholder { aspect-ratio: 4 / 3.4; box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8); }
.hero-card {
  position: absolute; inset-block-end: -26px; inset-inline-start: -26px;
  background: color-mix(in oklab, var(--bg-2) 92%, transparent); backdrop-filter: blur(10px);
  border: 1px solid var(--gold-line); border-radius: var(--radius-sm); padding: 18px 22px; min-width: 210px;
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.7);
}
.hero-card .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; }
.hero-card .val { font-family: var(--display); font-size: 30px; color: var(--gold); margin-top: 4px; }
.hero-card .val small { font-size: 14px; color: var(--ink-soft); font-family: var(--body); }

/* ---------- trust strip ---------- */
.trust { border-block: 1px solid var(--line-2); background: var(--bg-1); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 38px; }
.stat { text-align: center; }
.stat .num { font-family: var(--display); font-size: clamp(30px, 3.4vw, 44px); color: var(--ink); line-height: 1; }
.stat .num b { color: var(--gold); font-weight: 700; }
.stat .cap { font-size: 13.5px; color: var(--muted); margin-top: 10px; letter-spacing: 0.02em; }
.stat + .stat { border-inline-start: 1px solid var(--line-2); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 60px; }
.step { background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 32px 26px 30px; position: relative; transition: 0.45s var(--ease); overflow: hidden; }
.step:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.step .idx { font-family: var(--display); font-size: 15px; color: var(--gold); border: 1px solid var(--gold-line); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; }
.step h3 { font-size: 22px; margin-top: 22px; }
.step p { color: var(--muted); font-size: 15px; margin-top: 10px; line-height: 1.6; }
.step .arrow { position: absolute; inset-block-start: 38px; inset-inline-start: 26px; color: var(--muted-2); font-size: 20px; }

/* ---------- comparison ---------- */
.compare-wrap { margin-top: 56px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 20px 24px; text-align: start; border-bottom: 1px solid var(--line-2); font-size: 15.5px; }
.compare thead th { background: var(--bg-2); font-family: var(--body); font-weight: 600; color: var(--muted); font-size: 14px; letter-spacing: 0.02em; }
.compare thead th.col-us { background: linear-gradient(180deg, var(--bg-3), var(--bg-2)); color: var(--gold); font-family: var(--display); font-size: 18px; }
.compare td.feature { color: var(--ink-soft); font-weight: 500; }
.compare td.col-us { background: color-mix(in oklab, var(--gold) 7%, var(--bg-1)); color: var(--ink); font-weight: 600; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--gold); }
.compare .no { color: var(--muted-2); }
.compare .mark { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- calculator ---------- */
.calc-section { background: linear-gradient(180deg, var(--bg-1), var(--bg)); border-block: 1px solid var(--line-2); }
.calc { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; margin-top: 40px; max-width: 760px; margin-inline: auto; border: 1px solid var(--gold-line); border-radius: var(--radius); overflow: hidden; background: var(--bg-card); box-shadow: 0 50px 120px -60px rgba(0,0,0,0.9); }
.calc-controls { padding: clamp(22px, 3vw, 34px); }
.calc-field { margin-bottom: 22px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field .row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.calc-field label { font-size: 15.5px; color: var(--ink-soft); font-weight: 500; }
.calc-field .value { font-family: var(--display); font-size: 22px; color: var(--gold); font-weight: 700; }
.calc-field .value small { font-family: var(--body); font-size: 13px; color: var(--muted); font-weight: 400; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 999px; background: var(--bg-3); outline: none; }
input[type="range"]::-webkit-slider-runnable-track { height: 4px; border-radius: 999px; }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; margin-top: -9px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); border: 2px solid var(--bg-card);
  box-shadow: 0 4px 14px -2px rgba(var(--gold-rgb)/0.7); cursor: pointer; transition: transform 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); border: 2px solid var(--bg-card); cursor: pointer; }
.calc-ticks { display: flex; justify-content: space-between; margin-top: 10px; font-family: var(--mono); font-size: 11px; color: var(--muted-2); letter-spacing: 0.04em; }
.term-toggle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.term-toggle button { background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-soft); padding: 12px 0; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; transition: 0.25s; }
.term-toggle button.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #FFFFFF; border-color: transparent; }
.ti-select { width: 100%; appearance: none; -webkit-appearance: none; background: var(--bg-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C9A45A' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat left 14px center; border: 1px solid var(--line); color: var(--ink); padding: 13px 14px; border-radius: var(--radius-sm); font-family: var(--body); font-size: 15px; cursor: pointer; transition: border-color 0.2s; }
.ti-select:hover { border-color: var(--gold-line); }
.ti-select:focus { outline: none; border-color: var(--gold); }
.ti-cond button { font-size: 13.5px; padding: 12px 4px; }

/* ===== trade-in wizard ===== */
.wizard { background: var(--bg-card); border: 1px solid var(--gold-line); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); box-shadow: 0 50px 120px -60px rgba(0,0,0,0.9); }
.wiz-head { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 24px; }
.wiz-progress { display: flex; align-items: center; gap: 8px; }
.wiz-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line); transition: 0.3s; }
.wiz-dot.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); border-color: transparent; }
.wiz-bar { width: 46px; height: 2px; background: var(--line); }
.wiz-stepno { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.wiz-stepno b { color: var(--gold); }
.wiz-step { display: none; animation: wizIn 0.4s var(--ease); }
.wiz-step.active { display: block; }
@keyframes wizIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.wiz-h { font-size: clamp(22px, 2.6vw, 28px); text-align: center; }
.wiz-sub { color: var(--muted); text-align: center; margin-top: 8px; margin-bottom: 22px; font-size: 14.5px; }

/* Israeli plate */
.plate { display: flex; align-items: stretch; width: 320px; max-width: 100%; margin: 0 auto; border-radius: 12px; overflow: hidden; border: 2px solid #1a1a1a; box-shadow: 0 10px 30px -12px rgba(0,0,0,0.6); }
.plate-il { background: #0033A0; color: #fff; font-family: var(--mono); font-weight: 700; font-size: 15px; display: grid; place-items: center; padding: 0 12px; letter-spacing: 0.05em; flex-shrink: 0; }
.plate-input { flex: 1; min-width: 0; background: #FFD60A; border: 0; color: #111; font-family: var(--display); font-weight: 800; font-size: clamp(22px, 4.4vw, 30px); text-align: center; letter-spacing: 0.04em; padding: 14px 6px; direction: ltr; }
.plate-input::placeholder { color: rgba(0,0,0,0.32); }
.plate-input:focus { outline: none; }

.wiz-loading { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 26px; color: var(--ink-soft); font-size: 15px; }
.wiz-loading[hidden], .wiz-details[hidden] { display: none; }
.wiz-spin { width: 22px; height: 22px; border: 2px solid var(--line); border-top-color: var(--gold); border-radius: 50%; animation: wizSpin 0.8s linear infinite; }
@keyframes wizSpin { to { transform: rotate(360deg); } }

.wiz-details { margin-top: 26px; animation: wizIn 0.4s var(--ease); }
.wiz-verify { display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--gold); font-weight: 600; font-size: 15px; }
.wiz-check { width: 24px; height: 24px; border-radius: 50%; background: rgba(var(--gold-rgb)/0.16); border: 1px solid var(--gold-line); display: grid; place-items: center; font-size: 13px; }
.wiz-car { display: flex; align-items: center; gap: 16px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 18px; }
.wiz-car-img { width: 84px; height: 58px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.wiz-car-info { display: grid; gap: 4px; }
.wiz-car-info b { font-family: var(--display); font-size: 19px; color: var(--ink); }
.wiz-car-info span { font-size: 13.5px; color: var(--muted); }
.wiz-field { display: grid; gap: 8px; margin: 22px 0; }
.wiz-field label { font-size: 14.5px; color: var(--ink-soft); font-weight: 500; }
.wiz-input { width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); padding: 14px 16px; border-radius: var(--radius-sm); font-family: var(--body); font-size: 16px; text-align: right; }
.wiz-input:focus { outline: none; border-color: var(--gold); }
.wiz-link { display: block; margin: 16px auto 0; background: none; border: 0; color: var(--muted); font-family: var(--body); font-size: 14px; cursor: pointer; }
.wiz-link:hover { color: var(--gold); }
.wiz-success { text-align: center; padding: 20px 0; }
.wiz-success .check { width: 70px; height: 70px; border-radius: 50%; background: rgba(var(--gold-rgb)/0.14); border: 1px solid var(--gold-line); color: var(--gold); display: grid; place-items: center; margin: 0 auto 22px; font-size: 34px; }
.wiz-success h3 { font-size: 28px; }
.wiz-success p { color: var(--muted); margin: 12px auto 24px; max-width: 44ch; line-height: 1.6; }
.wiz-choice { display: flex; gap: 12px; justify-content: center; margin-bottom: 6px; }
.wiz-opt { flex: 1; max-width: 200px; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-soft); font-family: var(--body); font-weight: 600; font-size: 14px; padding: 13px 12px; border-radius: var(--radius-sm); cursor: pointer; transition: 0.25s; }
.wiz-opt:hover { border-color: var(--gold-line); color: var(--gold); }
.wiz-opt.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #FFFFFF; border-color: transparent; }
.wiz-q { font-family: var(--display); font-weight: 500; font-size: 17px; text-align: center; margin: 20px 0 12px; }
.wiz-modelpick { margin: 16px 0 4px; }
.wiz-pick-label { display: block; font-size: 12px; color: var(--gold); font-family: var(--mono); letter-spacing: 0.06em; margin-bottom: 10px; text-align: center; }
.wiz-brandpick { display: flex; flex-direction: column; gap: 6px; max-height: 220px; overflow-y: auto; padding: 4px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-2); }
.wiz-brand { display: flex; align-items: center; gap: 12px; width: 100%; text-align: start; padding: 9px 14px; border: 1px solid transparent; border-radius: 8px; background: transparent; color: var(--ink-soft); font-family: var(--body); font-size: 14.5px; cursor: pointer; transition: 0.18s; }
.wiz-brand .brand-logo { width: 28px; height: 28px; flex-shrink: 0; }
.wiz-brand-name { display: flex; align-items: baseline; gap: 8px; }
.wiz-brand-name small { color: var(--muted); font-size: 12px; }
.wiz-brand.active .wiz-brand-name small { color: var(--gold-deep); }
.wiz-nomatch { padding: 16px; text-align: center; color: var(--muted); font-size: 13.5px; }
.wiz-brandpick.chosen { max-height: none; overflow: visible; }
.wiz-brand-sel { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border: 1px solid var(--gold); border-radius: 8px; background: color-mix(in oklab, var(--gold) 12%, var(--bg-2)); color: var(--gold); font-size: 14.5px; }
.wiz-brand-sel .brand-logo { width: 30px; height: 30px; flex-shrink: 0; }
.wiz-brand-sel .wiz-brand-name { flex: 1; }
.wiz-brand-sel .wiz-brand-name small { color: var(--gold-deep); }
.wiz-brand-change { background: none; border: 0; color: var(--muted); font-family: var(--body); font-size: 13px; cursor: pointer; text-decoration: underline; }
.wiz-brand-change:hover { color: var(--gold); }
.wiz-brand:hover { background: var(--bg-3); }
.wiz-brand.active { border-color: var(--gold); background: color-mix(in oklab, var(--gold) 12%, var(--bg-2)); color: var(--gold); }
.wiz-modelpick .wiz-field { margin-top: 14px; }
@media (max-width: 520px) { .wiz-choice { flex-direction: column; align-items: stretch; } .wiz-opt { max-width: none; } }

/* ===== trade-in thank-you page ===== */
.thanks { display: grid; gap: 24px; }
.thanks-head { text-align: center; }
.thanks-head .check { width: 76px; height: 76px; border-radius: 50%; background: rgba(var(--gold-rgb)/0.14); border: 1px solid var(--gold-line); color: var(--gold); display: grid; place-items: center; margin: 0 auto 22px; font-size: 36px; }
.thanks-head h1 { font-size: clamp(28px, 4vw, 42px); line-height: 1.12; }
.thanks-head p { color: var(--ink-soft); margin: 14px auto 0; max-width: 46ch; line-height: 1.65; }
.thanks-car { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/8; box-shadow: 0 40px 90px -55px rgba(0,0,0,0.8); }
.thanks-car img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thanks-card { background: var(--bg-card); border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 26px 28px; }
.thanks-card-h { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.thanks-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line-2); font-size: 15px; }
.thanks-row:last-child { border-bottom: 0; }
.thanks-row span { color: var(--muted); }
.thanks-row b { color: var(--ink); font-weight: 600; text-align: end; }

.calc-result { background: linear-gradient(165deg, var(--bg-3), var(--bg-2)); padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; position: relative; }
.calc-result::before { content: ""; position: absolute; inset-block: 28px; inset-inline-start: 0; width: 1px; background: var(--gold-line); }
.calc-result .res-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.calc-result .res-main { font-family: var(--display); font-weight: 900; font-size: clamp(40px, 6vw, 58px); color: var(--gold); line-height: 1; margin-top: 12px; letter-spacing: -0.02em; }
.calc-result .res-main small { font-size: 19px; color: var(--ink-soft); font-family: var(--body); font-weight: 500; }
.calc-result .res-sub { color: var(--muted); font-size: 14px; margin-top: 8px; }
.res-break { margin-top: 24px; border-top: 1px solid var(--line-2); padding-top: 18px; display: grid; gap: 11px; }
.res-row { display: flex; align-items: center; justify-content: space-between; font-size: 15px; }
.res-row span:first-child { color: var(--muted); }
.res-row span:last-child { font-weight: 600; color: var(--ink); font-family: var(--mono); letter-spacing: 0.02em; }
.calc-result .btn { margin-top: 28px; width: 100%; }
.calc-disclaimer { font-size: 12px; color: var(--muted-2); margin-top: 16px; line-height: 1.5; }
.calc-hint { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-2); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.car { position: relative; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; background: var(--bg-card); transition: 0.45s var(--ease); display: flex; flex-direction: column; }
.car:hover { border-color: var(--gold-line); transform: translateY(-5px); }

/* ===== Capital-style catalog card ===== */
.ccard { background: #fff; border-color: var(--line-2); border-radius: 16px; }
.ccard:hover { box-shadow: 0 26px 54px -40px rgba(0,0,0,.4); }
.ccard-ph { position: relative; aspect-ratio: 16 / 10; background: #fff; display: grid; place-items: center; overflow: hidden; }
.ccard-ph img { width: 100%; height: 100%; object-fit: contain; padding: 14px 16px 6px; transition: transform .5s var(--ease); }
.ccard:hover .ccard-ph img { transform: scale(1.05); }
.ccard-fuel { position: absolute; inset-inline-end: 14px; top: 14px; z-index: 2; background: #171717; color: #fff; font-size: 12px; font-weight: 700; padding: 5px 13px; border-radius: 999px; }
.ccard-year { position: absolute; inset-inline-start: 16px; top: 14px; z-index: 2; font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--muted); }
.ccard-body { padding: 4px 18px 20px; text-align: center; }
.ccard-name { font-family: var(--display); font-weight: 800; font-size: 21px; color: var(--ink); line-height: 1.15; direction: ltr; }
.ccard-trims { font-size: 13px; color: var(--muted); margin-top: 3px; }
.ccard-type { text-align: center; font-size: 13px; color: var(--muted); margin-top: 6px; }
.ccard-pay { margin-top: 16px; text-align: center; border: 1px solid var(--line); border-radius: 999px; padding: 13px 16px; font-size: 14.5px; color: var(--ink-soft); transition: .3s; }
.ccard-pay b { font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--ink); }
.ccard:hover .ccard-pay { border-color: var(--gold-line); background: color-mix(in oklab, var(--gold) 8%, transparent); }

.car-hit { display: block; color: inherit; }
.car .car-ph { aspect-ratio: 16 / 11; }
.car-body { padding: 20px 22px 16px; }
.car-tier { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.car h3 { font-size: 22px; margin-top: 7px; color: var(--ink); }
.car-spec { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 12px; font-size: 13px; color: var(--ink-soft); }
.car-spec b { color: var(--ink); font-weight: 700; font-size: 14px; }
.car-spec .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.car-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-2); }
.car-price { font-family: var(--body); font-weight: 800; font-size: 20px; color: var(--ink); line-height: 1.3; white-space: nowrap; }
.cp-lbl { font-family: var(--body); font-weight: 500; font-size: 13.5px; color: var(--muted); }
.car-price small { font-size: 12px; color: var(--muted); font-family: var(--body); font-weight: 500; }
.car-list { font-size: 12px; color: var(--muted); text-align: start; white-space: nowrap; }
.car-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; color: var(--gold); font-weight: 600; transition: gap 0.3s; }
.car:hover .car-cta { gap: 11px; }
/* card action buttons */
.car-actions { margin-top: auto; padding: 0 22px 20px; display: grid; gap: 9px; }
.car-cta-main { display: block; text-align: center; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; font-weight: 700; font-size: 14.5px; padding: 13px 14px; border-radius: var(--btn-radius); line-height: 1.25; transition: filter 0.25s, transform 0.25s; }
.car-cta-main:hover { filter: brightness(1.06); transform: translateY(-1px); }
.car-act-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.car-act { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 10px; border-radius: var(--btn-radius); font-family: var(--body); font-weight: 600; font-size: 13.5px; border: 1px solid var(--line); transition: 0.25s; }
.car-act svg { width: 17px; height: 17px; }
.car-act.wa { background: #25D366; color: #fff; border-color: transparent; }
.car-act.wa:hover { filter: brightness(1.05); }
.car-act.contact { background: transparent; color: var(--ink); }
.car-act.contact:hover { border-color: var(--gold-line); color: var(--gold); }

/* brand emblems (white chip so any logo reads on dark) */
.brand-logo { background: #fff; border-radius: 50%; display: grid; place-items: center; overflow: hidden; flex-shrink: 0; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 22%; box-sizing: border-box; }
.car-logo-badge { position: absolute; inset-block-start: 12px; inset-inline-end: 12px; z-index: 3; width: 52px; height: 52px; box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
.car-fast { position: absolute; inset-block-start: 14px; inset-inline-start: 14px; z-index: 3; background: color-mix(in oklab, var(--bg) 60%, transparent); backdrop-filter: blur(8px); border: 1px solid var(--gold-line); color: var(--gold); font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px; }
.car:has(.car-fast) .car-badge { inset-block-start: 46px; }

/* press strip */
.press-strip { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: center; gap: clamp(20px, 4vw, 52px); margin-top: 44px; }
.press-item { display: grid; justify-items: center; gap: 14px; width: 168px; }
.press-logo { width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 17px; letter-spacing: -0.02em; transition: transform 0.3s var(--ease); }
.press-item:hover .press-logo { transform: translateY(-4px); }
.press-mako   { background: #111; color: #fff; }
.press-marker { background: #fff; color: #e2001a; font-family: var(--display); }
.press-biz    { background: #111; color: #fff; font-size: 15px; }
.press-maariv { background: #e2001a; color: #fff; font-family: var(--display); font-size: 18px; }
.press-globes { background: #0a3d62; color: #fff; font-size: 16px; }
.press-quote { font-size: 13px; line-height: 1.55; color: var(--ink-soft); text-align: center; text-wrap: pretty; }
@media (max-width: 720px) { .press-strip { gap: 28px 18px; } .press-item { width: 140px; } }

/* customer photos */
.cust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 50px; }
.cust { position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line-2); }
.cust img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.cust:hover img { transform: scale(1.07); }
.cust-cap { position: absolute; inset-block-end: 0; inset-inline: 0; padding: 26px 12px 11px; background: linear-gradient(0deg, color-mix(in oklab, var(--bg) 88%, transparent), transparent); }
.cust-cap b { display: block; font-size: 13px; color: var(--ink); }
.cust-cap span { font-size: 11.5px; color: var(--gold); }
@media (max-width: 980px) { .cust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .cust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== video testimonials carousel ===== */
.vtest { position: relative; margin-top: 52px; }
.vtest-viewport { overflow: hidden; border-radius: var(--radius); }
.vtest-track { display: flex; transition: transform 0.7s var(--ease); }
.vtest-slide { flex: 0 0 100%; display: grid; grid-template-columns: 1.05fr 1fr; min-height: 380px; background: var(--bg-card); border: 1px solid var(--gold-line); border-radius: var(--radius); overflow: hidden; }
.vtest-media { position: relative; overflow: hidden; min-height: 280px; }
.vtest-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vtest-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 45%, color-mix(in oklab, var(--bg-card) 80%, transparent)); }
.vtest-play { position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; z-index: 2; border-radius: 50%; border: 1px solid var(--gold-line); background: color-mix(in oklab, var(--bg) 38%, transparent); backdrop-filter: blur(8px); color: var(--gold); display: grid; place-items: center; cursor: pointer; transition: 0.3s var(--ease); }
.vtest-play:hover { transform: scale(1.08); background: var(--gold); color: #FFFFFF; border-color: transparent; }
.vtest-play .tri { width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent currentColor; margin-inline-start: 5px; }
.vtest-badge { position: absolute; inset-block-start: 16px; inset-inline-start: 16px; z-index: 2; background: color-mix(in oklab, var(--bg) 60%, transparent); backdrop-filter: blur(8px); border: 1px solid var(--gold-line); color: var(--gold); font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 999px; }
.vtest-media.playing::after, .vtest-media.playing .vtest-play, .vtest-media.playing .vtest-badge { display: none; }
.vtest-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; z-index: 3; }
.vtest-media.has-video::after { display: none; }
.vtest-media.playing::before { content: "הסרטון יתנגן כאן"; position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; background: #000; color: var(--muted); font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; }
.vtest-body { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.vtest-quote-mark { font-family: var(--display); font-size: 64px; line-height: 0.5; color: var(--gold-line); height: 30px; }
.vtest-quote { font-family: var(--display); font-size: clamp(19px, 2.2vw, 26px); line-height: 1.5; color: var(--ink); margin-top: 10px; }
.vtest-by { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.vtest-av { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--gold-line); display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: var(--gold); font-size: 20px; }
.vtest-name { font-weight: 600; font-size: 16px; }
.vtest-car { font-size: 13.5px; color: var(--gold); }
.vtest-stars { color: var(--gold); letter-spacing: 3px; margin-top: 18px; font-size: 14px; }
.vtest-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%; background: var(--bg-2); border: 1px solid var(--gold-line); color: var(--gold); font-size: 26px; line-height: 1; cursor: pointer; transition: 0.25s; display: grid; place-items: center; }
.vtest-nav:hover { background: var(--gold); color: #FFFFFF; border-color: transparent; }
.vtest-nav.prev { inset-inline-end: -20px; }
.vtest-nav.next { inset-inline-start: -20px; }
.vtest-dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.vtest-dot { width: 9px; height: 9px; border-radius: 999px; border: 0; background: var(--line); cursor: pointer; transition: 0.3s; padding: 0; }
.vtest-dot.active { background: var(--gold); width: 26px; }
@media (max-width: 720px) {
  .vtest-slide { grid-template-columns: 1fr; grid-template-rows: 220px 1fr; }
  .vtest-media::after { background: linear-gradient(0deg, transparent 55%, color-mix(in oklab, var(--bg-card) 85%, transparent)); }
  .vtest-nav.prev { inset-inline-end: 4px; }
  .vtest-nav.next { inset-inline-start: 4px; }
}

/* WhatsApp float */
.wa-float { position: fixed; inset-block-end: 24px; inset-inline-end: 24px; z-index: 96; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 14px 36px -10px rgba(37,211,102,0.6); transition: transform 0.3s var(--ease); }
.wa-float:hover { transform: translateY(-3px) scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* mobile sticky CTA bar */
.mbar { display: none; }
.cookie-bar { position: fixed; inset-inline: 16px; inset-block-end: 16px; z-index: 98; max-width: 560px; margin-inline: auto; background: #1c1c1c; border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7); flex-wrap: wrap; }
.cookie-bar p { color: #DADADA; font-size: 13.5px; line-height: 1.55; flex: 1; min-width: 200px; }
.cookie-bar a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { padding: 10px 20px; font-size: 14px; }
.cookie-bar .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.25); }
@media (max-width: 720px) { .cookie-bar { inset-block-end: 64px; } }
@media (max-width: 720px) {
  .mbar { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 1px; position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 97; background: #1c1c1c; border-top: 1px solid rgba(255,255,255,0.1); }
  .mbar-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 4px; font-family: var(--body); font-size: 12px; font-weight: 600; color: #fff; background: #1c1c1c; }
  .mbar-btn .mbar-ic { font-size: 17px; line-height: 1; }
  .mbar-btn.wa { color: #25D366; }
  .mbar-btn.primary { background: var(--gold); color: #fff; }
  .wa-float { inset-block-end: 78px; }
  body.tray-open .wa-float, body.tray-open #ai-concierge { inset-block-end: 150px; }
  #ai-concierge { inset-block-end: 78px; }
  body { padding-bottom: 58px; }
}
@media (max-width: 720px) { .wa-float { inset-block-end: 16px; inset-inline-end: 16px; } }

/* home brands strip */
.dir-section { background: #fff; color: #15120d; }
.dir-section .eyebrow { color: var(--gold-deep); }
.dir-section .h-sec { color: #15120d; }
.dir-section .lead { color: #5b5346; }
.dir-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 28px; margin-top: 40px; max-width: 1080px; margin-inline: auto; }
.dir-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 8px; border-bottom: 1px solid #ececec; transition: color 0.2s; }
.dir-item:hover { color: var(--gold-deep); }
.dir-name { font-size: 15px; font-weight: 500; color: #2a2520; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dir-item:hover .dir-name { color: var(--gold-deep); }
.dir-logo { position: relative; width: 38px; height: 30px; flex-shrink: 0; display: grid; place-items: center; }
.dir-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.dir-mono { display: none; width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; font-family: var(--display); font-weight: 700; font-size: 14px; place-items: center; }
.dir-logo:not(:has(img)) .dir-mono { display: grid; }
@media (max-width: 860px) { .dir-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .dir-grid { grid-template-columns: repeat(2, 1fr); gap: 0 18px; } }
@media (max-width: 380px) { .dir-grid { grid-template-columns: 1fr; } }

.brands-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 18px; margin-top: 50px; }
.brand-chip { display: grid; justify-items: center; gap: 11px; color: var(--muted); font-size: 13px; font-weight: 500; transition: color 0.3s; text-align: center; }
.brand-chip .brand-logo { width: 76px; height: 76px; background: none; border: 0; transition: transform 0.3s var(--ease); }
.brand-chip .brand-logo img { padding: 0; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }
.brand-chip:hover { color: var(--gold); }
.brand-chip:hover .brand-logo { transform: translateY(-4px); }

/* ---------- testimonials ---------- */
.testi-section { background:
    radial-gradient(900px 400px at 50% -8%, rgba(var(--gold-rgb)/0.10), transparent 60%),
    linear-gradient(180deg, #232323, #1a1a1a);
  border-block: 1px solid var(--line-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi { background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 34px 30px; position: relative; }
.testi .quote-mark { font-family: var(--display); font-size: 70px; line-height: 0.6; color: var(--gold-line); height: 26px; }
.testi p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; margin-top: 8px; }
.testi .stars { color: var(--gold); letter-spacing: 3px; margin-top: 20px; font-size: 14px; }
.testi-by { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-2); }
.testi-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--gold-line); display: grid; place-items: center; font-family: var(--display); color: var(--gold); font-weight: 700; }
.testi-by .who { font-weight: 600; font-size: 15px; }
.testi-by .role { font-size: 13px; color: var(--muted); }

/* ---------- faq ---------- */
.faq-list { margin-top: 50px; border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-q { width: 100%; background: none; border: 0; color: var(--ink); text-align: start; padding: 26px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--display); font-size: clamp(18px, 2vw, 22px); font-weight: 500; transition: color 0.3s; }
.faq-q:hover { color: var(--gold); }
.faq-q .ic { flex-shrink: 0; width: 30px; height: 30px; border: 1px solid var(--gold-line); border-radius: 50%; display: grid; place-items: center; color: var(--gold); transition: transform 0.4s var(--ease); font-size: 18px; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { color: var(--muted); font-size: 16px; line-height: 1.7; padding: 0 4px 28px; max-width: 78ch; }

/* ---------- help CTA strip (dark) ---------- */
.help-strip { background: #2e2e2e; padding: clamp(40px, 5vw, 64px) 0; text-align: center; color: #fff; }
.help-strip-h { font-size: clamp(20px, 2.4vw, 30px); font-weight: 700; color: #fff; max-width: 40ch; margin: 0 auto; text-wrap: balance; line-height: 1.4; }
.help-strip-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: clamp(24px, 3vw, 34px); }
.help-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 16px; color: #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s; }
.help-btn svg { width: 20px; height: 20px; }
.help-btn:hover { transform: translateY(-2px); }
.help-btn-blue { background: #2a8be0; box-shadow: 0 12px 26px -12px rgba(42,139,224,.7); }
.help-btn-blue:hover { background: #2079c8; }
.help-btn-wa { background: #25d366; box-shadow: 0 12px 26px -12px rgba(37,211,102,.7); }
.help-btn-wa:hover { background: #1fb955; }

/* ---------- lead / CTA form ---------- */
.lead-section { position: relative; overflow: hidden; background: linear-gradient(160deg, #221F1B, #1A1816); }
/* light variant: white background, dark text */
.lead-section.lead-light { background: var(--page-bg, #fff); color: #1A1613; --ink: #1A1613; --ink-soft: #4A4234; --muted: #837965; }
.lead-section.lead-light .lead-bg { background: radial-gradient(800px 500px at 50% 0%, rgba(var(--gold-rgb)/0.10), transparent 60%); }
.lead-section.lead-light .btn-ghost { color: #1A1613; border-color: rgba(0,0,0,0.18); }
.lead-section.lead-light .btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.lead-bg { position: absolute; inset: 0; background: radial-gradient(800px 500px at 85% 10%, rgba(var(--gold-rgb)/0.12), transparent 60%); z-index: 0; }
.lead-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.lead-form { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 42px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink);
  padding: 14px 16px; border-radius: var(--radius-sm); font-family: var(--body); font-size: 15.5px; transition: border-color 0.3s, box-shadow 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(var(--gold-rgb)/0.12); }
.field textarea { resize: vertical; min-height: 88px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); margin-bottom: 22px; line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: rgba(var(--gold-rgb)/0.12); border: 1px solid var(--gold-line); color: var(--gold); display: grid; place-items: center; margin: 0 auto 20px; font-size: 30px; }
.form-success h3 { font-size: 26px; }
.form-success p { color: var(--muted); margin-top: 10px; }
.lead-points { display: grid; gap: 22px; margin-top: 36px; }
.lead-point { display: flex; gap: 16px; align-items: flex-start; }
.lead-point .pic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold-line); color: var(--gold); display: grid; place-items: center; }
.lead-point h4 { font-family: var(--body); font-size: 16px; font-weight: 600; }
.lead-point p { color: var(--muted); font-size: 14.5px; margin-top: 3px; line-height: 1.55; }

/* ---------- footer ---------- */
.footer { background: var(--bg-1); border-top: 1px solid var(--line-2); padding-block: 64px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; }
.footer-social a { margin-bottom: 0; }
.footer .brand { font-size: 28px; margin-bottom: 18px; }
.footer-about { color: var(--muted); font-size: 14.5px; line-height: 1.65; max-width: 34ch; }
.footer-col h5 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: var(--ink-soft); font-size: 14.5px; margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line-2); flex-wrap: wrap; }
.footer-seo { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line-2); }
.footer-seo-h { font-size: 16px; font-weight: 700; color: var(--ink-soft); margin-bottom: 12px; }
.footer-seo-p { font-size: 13.5px; line-height: 1.85; color: var(--muted); }
.footer-seo-p a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--gold-line); transition: color 0.2s; }
.footer-seo-p a:hover { color: var(--gold); }
.footer-bottom p { color: var(--muted-2); font-size: 13px; line-height: 1.6; max-width: 70ch; }
.footer-legal { font-size: 12px !important; color: var(--muted-2); }

/* ---------- reveal animation (pure CSS, scroll-driven; visible fallback) ---------- */
.reveal { opacity: 1; transform: none; }
@keyframes revealIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal { animation: revealIn linear both; animation-timeline: view(); animation-range: entry 2% cover 26%; }
  }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- image slots ---------- */
image-slot { display: block; }
/* the component's :host sets an explicit height:160px — height:auto lets aspect-ratio drive sizing */
.car .car-ph { width: 100%; height: auto; aspect-ratio: 16 / 11; }
.hero-slot { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3.4; box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8); }

/* ---------- financing plans ---------- */
/* ===== deal steps ===== */
.dealsteps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.dstep { position: relative; background: linear-gradient(165deg, #FFFFFF, #F4EEE4); border: 1px solid rgba(42,30,14,0.14); border-radius: 18px; padding: 40px 30px 32px; box-shadow: 0 30px 60px -34px rgba(40,30,14,0.5); transition: 0.4s var(--ease); overflow: hidden; }
.dstep:hover { transform: translateY(-5px); box-shadow: 0 32px 60px -36px rgba(40,30,14,0.5); }
.dstep::before { content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 4px; background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb)/0.5), transparent); }
.dstep.featured { background: linear-gradient(165deg, #2A2724, #1E1B18); border-color: transparent; }
.dstep.featured::before { background: linear-gradient(90deg, var(--gold-bright), var(--gold-deep)); height: 5px; }
.dstep-num { position: absolute; inset-block-start: 18px; inset-inline-start: 24px; font-family: var(--display); font-weight: 800; font-size: 52px; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(42,30,14,0.18); }
.dstep.featured .dstep-num { -webkit-text-stroke-color: rgba(255,255,255,0.18); }
.dstep-ic { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; box-shadow: 0 12px 26px -10px rgba(var(--gold-rgb)/0.7); position: relative; }
.dstep-ic svg { width: 32px; height: 32px; }
.dstep h3 { font-size: 21px; margin-top: 24px; color: #1A1613; text-wrap: balance; }
.dstep.featured h3 { color: #fff; }
.dstep p { font-size: 15.5px; line-height: 1.7; margin-top: 12px; color: #3A3226; }
.dstep.featured p { color: #DBD2C3; }
@media (max-width: 860px) { .dealsteps { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

.plans-section { background: var(--bg-1); border-block: 1px solid var(--line-2); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: stretch; }
.plan { position: relative; background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 38px 30px 32px; display: flex; flex-direction: column; transition: 0.45s var(--ease); }
.plan:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.plan.featured { border-color: var(--gold-line); background: linear-gradient(180deg, color-mix(in oklab, var(--gold) 8%, var(--bg-card)), var(--bg-card)); box-shadow: 0 44px 100px -50px rgba(var(--gold-rgb)/0.5); }
.plan-badge { position: absolute; inset-block-start: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #FFFFFF; font-size: 12.5px; font-weight: 700; padding: 7px 18px; border-radius: 999px; letter-spacing: 0.02em; white-space: nowrap; box-shadow: 0 8px 22px -8px rgba(var(--gold-rgb)/0.7); }
.plan-name { font-family: var(--display); font-weight: 700; font-size: 27px; }
.plan-desc { color: var(--muted); font-size: 14.5px; margin-top: 6px; line-height: 1.5; }
.plan-highlight { margin-top: 24px; padding-block: 20px; border-block: 1px solid var(--line-2); display: flex; flex-direction: column; gap: 5px; }
.plan.featured .plan-highlight { border-color: var(--gold-line); }
.plan-highlight .ph-big { font-family: var(--display); font-weight: 700; font-size: 34px; color: var(--gold); line-height: 1; }
.plan-highlight small { color: var(--muted); font-size: 13px; letter-spacing: 0.02em; }
.plan-features { list-style: none; margin: 24px 0 28px; display: grid; gap: 13px; }
.plan-features li { position: relative; padding-inline-start: 28px; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
.plan-features li::before { content: "✓"; position: absolute; inset-inline-start: 0; top: 0; color: var(--gold); font-weight: 700; }
.plan .btn { margin-top: auto; width: 100%; }
.plans-note { text-align: center; margin-top: 38px; color: var(--muted); font-size: 15px; }
.plans-note a { color: var(--gold); font-weight: 600; }
.cat-disclaimer { text-align: center; margin-top: 40px; color: var(--muted-2); font-size: 12.5px; line-height: 1.6; max-width: 80ch; margin-inline: auto; }

/* ============================================================
   MULTI-PAGE COMPONENTS
   ============================================================ */

/* ----- full-bleed media hero ----- */
.media-hero { position: relative; min-height: 94vh; display: flex; align-items: center; overflow: visible; isolation: isolate; }
.media-hero.page { min-height: 60vh; }
.mh-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.mh-bg img { width: 100%; height: 100%; object-fit: cover; }
.media-hero.home .mh-bg img { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.2); } }
@media (prefers-reduced-motion: reduce) { .media-hero.home .mh-bg img { animation: none; } }
.mh-overlay { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(90deg, var(--bg) 6%, color-mix(in oklab, var(--bg) 90%, transparent) 40%, color-mix(in oklab, var(--bg) 42%, transparent) 72%, color-mix(in oklab, var(--bg) 60%, transparent)),
  linear-gradient(0deg, var(--bg) 4%, transparent 46%); }
.media-hero.home .mh-overlay { background:
  linear-gradient(100deg, var(--bg) 8%, color-mix(in oklab, var(--bg) 90%, transparent) 42%, color-mix(in oklab, var(--bg) 44%, transparent) 72%, color-mix(in oklab, var(--bg) 64%, transparent)),
  radial-gradient(120% 80% at 18% 60%, rgba(var(--gold-rgb)/0.10), transparent 55%),
  linear-gradient(0deg, var(--bg) 4%, transparent 52%); }
.mh-content { max-width: 600px; padding-block: clamp(40px, 8vh, 90px); }
/* keep the home hero content (eyebrow/title) clear of the two-tier fixed header */
.media-hero.home .mh-content { padding-top: calc(var(--nav-off) + clamp(32px, 6vh, 72px)); }
.media-hero.home { padding-bottom: clamp(120px, 15vh, 180px); }
.media-hero.home .hero-quick { margin-bottom: 8px; }
.media-hero.home .wrap { max-width: 1440px; }
.media-hero.home .mh-content.hero-cols { max-width: 1380px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.media-hero.home .hero-search-wrap { margin-top: 0; max-width: none; }
@media (max-width: 900px) {
  .media-hero.home .mh-content.hero-cols { grid-template-columns: 1fr; max-width: 600px; gap: 28px; }
}
.media-hero.page .mh-content { padding-top: 140px; }
.mh-content h1 { font-size: clamp(38px, 4.8vw, 62px); line-height: 1.06; margin-top: 20px; }
.media-hero.home .mh-content h1 { font-size: clamp(27px, 3.15vw, 42px); line-height: 1.12; margin-top: 14px; }
.hero-text h1 { letter-spacing: -0.015em; text-wrap: balance; }
.hero-text h1 .gold-text { font-style: normal; display: inline-block; }
.hero-trust { display: flex; gap: 0; margin-top: 26px; }
.hero-trust .ht-item { display: flex; align-items: center; gap: 10px; padding-inline: 16px; position: relative; }
.hero-trust .ht-ic { width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; border: 0; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 18px -8px rgba(var(--gold-rgb)/0.7); }
.hero-trust .ht-ic svg { width: 18px; height: 18px; }
.hero-trust .ht-tx { display: grid; gap: 2px; }
.hero-trust .ht-item:first-child { padding-inline-start: 0; }
.hero-trust .ht-item + .ht-item::before { content: ""; position: absolute; inset-block: 4px; inset-inline-start: 0; width: 1px; background: var(--gold-line); }
.hero-trust b { font-family: var(--display); font-weight: 700; font-size: clamp(14.5px, 1.55vw, 17px); color: var(--gold); line-height: 1.15; }
.hero-trust span { font-size: 11px; color: var(--muted); line-height: 1.3; }
.media-hero.page .mh-content h1 { font-size: clamp(36px, 5vw, 64px); }
.mh-content .lead { color: var(--ink-soft); }
.mh-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.mh-note { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 14px; color: var(--ink-soft); }
.mh-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px 2px rgba(var(--gold-rgb)/0.6); }
.scroll-cue { position: absolute; inset-block-end: 30px; inset-inline-start: 50%; transform: translateX(-50%); z-index: 2; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; display: grid; justify-items: center; gap: 8px; }
.scroll-cue .bar { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); }
.media-hero.home .scroll-cue { display: none; }

/* gold cursor spotlight in heroes */
.hero-spotlight { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transition: opacity 0.4s; background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(var(--gold-rgb)/0.16), transparent 70%); mix-blend-mode: screen; }
.media-hero .wrap { position: relative; z-index: 1; }

/* 3D tilt cards */
.car, .post, .value, .plan { transition: transform 0.4s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); transform-style: preserve-3d; will-change: transform; }
.car.is-tilting, .post.is-tilting, .value.is-tilting, .plan.is-tilting { transition: transform 0.1s linear, border-color 0.45s var(--ease); border-color: var(--gold-line); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7); }

/* hero floating stat chips */
.mh-chips { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.mh-chip { background: color-mix(in oklab, var(--bg-2) 75%, transparent); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 20px; }
.mh-chip .n { font-family: var(--display); font-size: 26px; color: var(--gold); line-height: 1; }
.mh-chip .c { font-size: 12.5px; color: var(--muted); margin-top: 5px; }

/* ----- real-image car cards ----- */
.car-ph { position: relative; overflow: hidden; background: var(--bg-3); }
.car-ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
.car:hover .car-ph img { transform: scale(1.07); }
.car-ph-grad { display: grid; place-items: center; padding: 22px; text-align: center; }
.car-ph-grad::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.42)); }
.car-ph-name { position: relative; z-index: 1; color: #fff; font-family: var(--display); font-weight: 800; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.12; text-shadow: 0 2px 14px rgba(0,0,0,.4); text-wrap: balance; }
.car-ph.car-ph-shot { background: #ffffff; display: grid; place-items: center; }
.car-ph-shot img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .6s var(--ease); }
.car:hover .car-ph-shot img { transform: scale(1.06); }
.car-ph-shot .car-ph-name { display: none; position: absolute; inset: 0; z-index: 1; place-items: center; padding: 22px; }
.car-ph-shot.noimg { background: var(--ph-grad); }
.car-ph-shot.noimg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.42)); }
.car-ph-shot.noimg .car-ph-name { display: grid; }
.car-badge.new-badge { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #fff; border-color: transparent; }
.car-badge { position: absolute; inset-block-start: 14px; inset-inline-start: 14px; background: color-mix(in oklab, var(--bg) 64%, transparent); backdrop-filter: blur(8px); border: 1px solid var(--gold-line); color: var(--gold); font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 999px; }

/* ----- models filter ----- */
.model-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 38px; }
.model-filter button { background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-soft); padding: 11px 24px; border-radius: 999px; font-size: 14.5px; font-weight: 600; transition: 0.25s; font-family: var(--body); }
.model-filter button:hover { border-color: var(--gold-line); color: var(--gold); }
.model-filter button.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #FFFFFF; border-color: transparent; }
#modelGrid { margin-top: 44px; }

/* ----- video showcase ----- */
.video-box { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); cursor: pointer; box-shadow: 0 40px 90px -50px rgba(0,0,0,0.8); }
.video-box .poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at center, color-mix(in oklab, var(--bg) 30%, transparent), color-mix(in oklab, var(--bg) 64%, transparent)); transition: 0.4s; }
.video-box:hover .video-overlay { background: radial-gradient(circle at center, color-mix(in oklab, var(--bg) 18%, transparent), color-mix(in oklab, var(--bg) 50%, transparent)); }
.video-play { width: 88px; height: 88px; border-radius: 50%; border: 1px solid var(--gold-line); background: color-mix(in oklab, var(--bg) 40%, transparent); backdrop-filter: blur(8px); color: var(--gold); display: grid; place-items: center; transition: 0.3s; }
.video-box:hover .video-play { transform: scale(1.08); background: var(--gold); color: #FFFFFF; border-color: transparent; }
.video-play .tri { width: 0; height: 0; border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent currentColor; margin-inline-start: 5px; }
.video-cap { position: absolute; inset-block-end: 0; inset-inline: 0; z-index: 2; padding: 28px 30px; background: linear-gradient(0deg, color-mix(in oklab, var(--bg) 80%, transparent), transparent); }
.video-cap .t { font-family: var(--display); font-size: clamp(20px, 2.4vw, 28px); }
.video-cap .s { color: var(--ink-soft); font-size: 14.5px; margin-top: 4px; }
.video-box.playing .video-overlay, .video-box.playing .poster, .video-box.playing .video-cap { display: none; }
.video-el { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }

/* ----- split feature sections ----- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.split + .split { margin-top: clamp(56px, 9vw, 110px); }
.split-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; position: relative; box-shadow: 0 40px 90px -55px rgba(0,0,0,0.8); }
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split.rev .split-media { order: 2; }
.split-tag { font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
.split h3 { font-size: clamp(26px, 3.4vw, 40px); margin-top: 16px; }
.split p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; margin-top: 18px; }
.split-list { list-style: none; margin-top: 24px; display: grid; gap: 13px; }
.split-list li { position: relative; padding-inline-start: 30px; color: var(--ink-soft); font-size: 15.5px; }
.split-list li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--gold); font-weight: 700; }

/* ----- value cards ----- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.value { background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 34px 30px; transition: 0.45s var(--ease); }
.value:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.value .vic { width: 56px; height: 56px; border-radius: 16px; border: 0; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; display: grid; place-items: center; font-size: 22px; box-shadow: 0 10px 22px -10px rgba(var(--gold-rgb)/0.7); }
.value .vic svg { width: 27px; height: 27px; }
.value h3 { font-size: 22px; margin-top: 22px; }
.value p { color: var(--muted); font-size: 15px; margin-top: 10px; line-height: 1.6; }

/* ----- contact ----- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
.contact-info { display: grid; gap: 18px; margin-top: 34px; }
.ci-row { display: flex; gap: 16px; align-items: flex-start; }
.ci-row .ci-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold-line); background: color-mix(in oklab, var(--gold) 8%, transparent); color: var(--gold); display: grid; place-items: center; font-size: 18px; }
.ci-row .ci-ic svg { width: 22px; height: 22px; }
.ci-row h4 { font-family: var(--body); font-size: 16px; font-weight: 600; }
.ci-row p, .ci-row a { color: var(--muted); font-size: 14.5px; margin-top: 3px; display: block; }
.ci-row a:hover { color: var(--gold); }
.map-frame { margin-top: 38px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 7; filter: grayscale(0.9) invert(0.9) hue-rotate(180deg) brightness(0.9) contrast(0.95); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== branches ===== */
.branches { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
.branch { background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; transition: 0.45s var(--ease); }
.branch:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.branch-img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-3); }
.branch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.branch:hover .branch-img img { transform: scale(1.06); }
.branch-tag { position: absolute; inset-block-start: 14px; inset-inline-start: 14px; background: color-mix(in oklab, var(--bg) 62%, transparent); backdrop-filter: blur(8px); border: 1px solid var(--gold-line); color: var(--gold); font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 999px; }
.branch-body { padding: 26px 28px 28px; }
.branch-body h3 { font-size: 26px; }
.branch-row { display: flex; align-items: flex-start; gap: 12px; margin-top: 14px; }
.branch-ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold-line); background: color-mix(in oklab, var(--gold) 8%, transparent); color: var(--gold); display: grid; place-items: center; font-size: 14px; }
.branch-ic svg { width: 16px; height: 16px; }
.branch-row p, .branch-row a { color: var(--ink-soft); font-size: 15px; line-height: 1.5; padding-top: 4px; }
.branch-row a:hover { color: var(--gold); }
.branch-link { display: inline-block; margin-top: 20px; color: var(--gold); font-weight: 600; font-size: 14.5px; transition: gap 0.3s; }
.branch-link:hover { color: var(--gold-bright); }
@media (max-width: 720px) { .branches { grid-template-columns: 1fr; } }

/* page intro block */
.page-intro { text-align: center; max-width: 760px; margin: 0 auto; }

/* ===== Meeting Scheduler ===== */
.sched-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(15,12,9,0.7); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.sched-overlay.open { opacity: 1; visibility: visible; }
.sched-modal { position: relative; width: min(620px, 100%); max-height: 92vh; overflow-y: auto; background: var(--bg-1); border: 1px solid var(--gold-line); border-radius: 20px; box-shadow: 0 50px 120px -40px rgba(0,0,0,0.8); }
.sched-close { position: absolute; inset-block-start: 14px; inset-inline-end: 16px; z-index: 2; background: none; border: 0; color: var(--muted); font-size: 28px; line-height: 1; cursor: pointer; }
.sched-close:hover { color: var(--gold); }
.sched-head { padding: 30px 32px 18px; border-bottom: 1px solid var(--line-2); }
.sched-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.sched-head h2 { font-size: clamp(24px, 3vw, 30px); margin-top: 8px; }
.sched-head p { color: var(--ink-soft); font-size: 14.5px; margin-top: 8px; line-height: 1.55; }
.sched-body { padding: 24px 32px 30px; }
.sched-step { display: flex; align-items: center; gap: 10px; font-family: var(--body); font-weight: 700; font-size: 15px; color: var(--ink); margin: 22px 0 14px; }
.sched-step:first-child { margin-top: 0; }
.sched-step-n { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; display: grid; place-items: center; font-size: 13px; }
.sched-days { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.sched-day { display: grid; gap: 2px; padding: 10px 4px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: 0.2s; }
.sched-day:hover { border-color: var(--gold-line); }
.sched-day.active { background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); border-color: transparent; }
.sched-day.active .sd-dow, .sched-day.active .sd-num, .sched-day.active .sd-mon { color: #fff; }
.sd-dow { font-size: 11px; color: var(--muted); }
.sd-num { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--ink); line-height: 1; }
.sd-mon { font-size: 10px; color: var(--muted); }
.sched-times { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.sched-time { padding: 10px 4px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; color: var(--ink-soft); font-family: var(--body); font-size: 14px; cursor: pointer; transition: 0.2s; }
.sched-time:hover { border-color: var(--gold-line); color: var(--gold); }
.sched-time.active { background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; border-color: transparent; }
.sched-hint { color: var(--muted); font-size: 14px; grid-column: 1 / -1; }
.sched-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sched-fields input, .sched-fields select, .sched-fields textarea { width: 100%; text-align: right; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); padding: 13px 14px; border-radius: 10px; font-family: var(--body); font-size: 14.5px; }
.sched-fields input:focus, .sched-fields select:focus, .sched-fields textarea:focus { outline: none; border-color: var(--gold); }
.sched-fields textarea { grid-column: 1 / -1; min-height: 70px; resize: vertical; }
.sched-err { color: #e2574c; font-size: 13.5px; margin-top: 14px; min-height: 18px; }
.sched-submit { width: 100%; margin-top: 6px; }
.sched-legal { font-size: 12px; color: var(--muted-2); margin-top: 14px; line-height: 1.5; text-align: center; }
.sched-success { padding: 36px 32px 30px; text-align: center; }
.sched-check { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; display: grid; place-items: center; margin: 0 auto 20px; }
.sched-check svg { width: 36px; height: 36px; }
.sched-success h2 { font-size: 28px; }
.sched-sub { color: var(--ink-soft); font-size: 14.5px; margin-top: 10px; line-height: 1.6; }
.sched-sub b { color: var(--gold); }
.sched-card { background: var(--bg-card); border: 1px solid var(--gold-line); border-radius: 14px; padding: 8px 20px; margin: 24px 0; text-align: start; }
.sched-card-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line-2); font-size: 14.5px; }
.sched-card-row:last-child { border-bottom: 0; }
.sched-card-row span { color: var(--muted); }
.sched-card-row b { color: var(--ink); }
.sched-prep { text-align: start; background: var(--bg-2); border-radius: 14px; padding: 20px 22px; }
.sched-prep-h { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sched-prep ul { list-style: none; display: grid; gap: 11px; }
.sched-prep li { position: relative; padding-inline-start: 28px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.sched-prep li::before { content: "✓"; position: absolute; inset-inline-start: 0; top: 1px; color: var(--gold); font-weight: 700; }
.sched-success-actions { display: flex; gap: 12px; margin-top: 24px; }
.sched-success-actions .btn { flex: 1; }
@media (max-width: 560px) {
  .sched-days { grid-template-columns: repeat(4, 1fr); }
  .sched-times { grid-template-columns: repeat(4, 1fr); }
  .sched-fields { grid-template-columns: 1fr; }
  .sched-success-actions { flex-direction: column; }
}
.nav-meeting { padding-block: 10px; color: #ECE7DE; border-color: rgba(255,255,255,0.28); background: transparent; }
.nav-meeting:hover { color: var(--gold); border-color: var(--gold); }
@media (max-width: 1100px) { .nav-meeting { display: none; } }

/* ===== yad2 "what we do" section ===== */
.yad2-do { position: relative; overflow: hidden; }
.yad2-do-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(120deg, var(--bg-2), var(--bg-1)); }
.yad2-do-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 12% 50%, rgba(var(--gold-rgb)/0.12), transparent 65%); }
.yad2-do-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.yad2-do-feats { display: grid; gap: 16px; }
.ydf { display: flex; align-items: center; gap: 16px; background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 18px 20px; transition: 0.35s var(--ease); }
.ydf:hover { border-color: var(--gold-line); transform: translateX(-4px); }
.ydf-ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 13px; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; display: grid; place-items: center; }
.ydf-ic svg { width: 24px; height: 24px; }
.ydf b { display: block; font-size: 16px; color: var(--ink); }
.ydf span { font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.yad2-do-card .eyebrow { margin-bottom: 14px; }
.yad2-do-card h2 { font-family: var(--display); font-size: clamp(26px, 3.4vw, 40px); line-height: 1.12; }
.yad2-do-card p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 18px 0 26px; }
@media (max-width: 880px) { .yad2-do-inner { grid-template-columns: 1fr; } }

/* ===== customer photo marquee ===== */
.cmarquee { overflow: hidden; width: 100%; margin: 48px 0 8px; direction: ltr; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.cmarquee-track { display: flex; gap: 16px; width: max-content; direction: ltr; animation: cmScroll 60s linear infinite; }
.cmarquee:hover .cmarquee-track { animation-play-state: paused; }
@keyframes cmScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .cmarquee-track { animation: none; } }
.cm-cell { position: relative; flex: 0 0 auto; width: 300px; height: 220px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); }
.cm-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cm-cap { position: absolute; inset-block-end: 0; inset-inline: 0; padding: 26px 16px 12px; background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent); }
.cm-cap b { display: block; color: #fff; font-size: 14.5px; }
.cm-cap span { color: var(--gold-bright); font-size: 12.5px; }
@media (max-width: 640px) { .cm-cell { width: 220px; height: 165px; } }

/* ===== exit-intent popup ===== */
.exit-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(15,12,9,0.72); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s; }
.exit-overlay.open { opacity: 1; visibility: visible; }
.exit-modal { position: relative; width: min(720px, 100%); background: var(--bg-card); border: 1px solid var(--gold-line); border-radius: 20px; overflow: hidden; box-shadow: 0 50px 120px -40px rgba(0,0,0,0.6); transform: translateY(18px) scale(0.97); transition: transform 0.35s var(--ease); }
.exit-overlay.open .exit-modal { transform: none; }
.exit-close { position: absolute; inset-block-start: 12px; inset-inline-end: 14px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,0.35); border: 0; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; }
.exit-close:hover { background: var(--gold); }
.exit-grid { display: grid; grid-template-columns: 0.85fr 1fr; }
.exit-media { position: relative; min-height: 100%; }
.exit-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.exit-body { padding: clamp(26px, 4vw, 42px); }
.exit-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.exit-title { font-size: clamp(24px, 3vw, 32px); line-height: 1.15; margin-top: 10px; }
.exit-sub { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin-top: 12px; }
.exit-form { display: grid; gap: 10px; margin-top: 22px; }
.exit-form input { width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); padding: 14px 15px; border-radius: var(--radius-sm); font-family: var(--body); font-size: 16px; text-align: right; }
.exit-form input:focus { outline: none; border-color: var(--gold); }
.exit-form .btn { width: 100%; }
.exit-err { color: #e2574c; font-size: 13px; min-height: 16px; }
.exit-dismiss { background: none; border: 0; color: var(--muted); font-size: 13px; margin-top: 12px; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.exit-dismiss:hover { color: var(--gold); }
.exit-success { display: none; padding: 48px 32px; text-align: center; }
.exit-success.show { display: block; }
.exit-check { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; display: grid; place-items: center; margin: 0 auto 20px; }
.exit-check svg { width: 36px; height: 36px; }
.exit-success h2 { font-size: 26px; }
.exit-success p { color: var(--ink-soft); margin: 10px 0 24px; }
@media (max-width: 620px) {
  .exit-grid { grid-template-columns: 1fr; }
  .exit-media { display: none; }
}

/* ===== AI Concierge ===== */
#ai-concierge { position: fixed; inset-block-end: 24px; inset-inline-start: 24px; z-index: 96; }
.ai-fab { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep)); color: #FFFFFF; border: 0; padding: 14px 22px 14px 18px; border-radius: 999px; font-family: var(--body); font-weight: 700; font-size: 15px; cursor: pointer; box-shadow: 0 16px 40px -14px rgba(var(--gold-rgb)/0.75); transition: transform 0.3s var(--ease), opacity 0.25s; }
.ai-fab:hover { transform: translateY(-3px) scale(1.03); }
.ai-fab.hidden { opacity: 0; pointer-events: none; transform: scale(0.8); }
.ai-fab-ic { font-size: 20px; animation: aiPulse 2.6s ease-in-out infinite; }
@keyframes aiPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.25); opacity: 0.7; } }
.ai-panel { position: absolute; inset-block-end: 0; inset-inline-start: 0; width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 48px)); background: var(--bg-1); border: 1px solid var(--gold-line); border-radius: 20px; display: flex; flex-direction: column; overflow: hidden; opacity: 0; pointer-events: none; transform: translateY(20px) scale(0.96); transform-origin: bottom right; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); box-shadow: 0 40px 100px -30px rgba(0,0,0,0.8); }
.ai-panel.open { opacity: 1; pointer-events: auto; transform: none; }
.ai-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line-2); background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); }
.ai-head-l { display: flex; align-items: center; gap: 12px; }
.ai-orb { width: 38px; height: 38px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold-deep)); box-shadow: 0 0 18px 2px rgba(var(--gold-rgb)/0.5); position: relative; flex-shrink: 0; }
.ai-orb::after { content: "✦"; position: absolute; inset: 0; display: grid; place-items: center; color: #FFFFFF; font-size: 18px; }
.ai-title { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink); }
.ai-sub { font-size: 12px; color: var(--muted); }
.ai-close { background: none; border: 0; color: var(--muted); font-size: 26px; line-height: 1; cursor: pointer; padding: 0 4px; }
.ai-close:hover { color: var(--gold); }
.ai-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.ai-msg { max-width: 88%; }
.ai-msg p { font-size: 14.5px; line-height: 1.6; padding: 12px 15px; border-radius: 14px; }
.ai-msg.bot { align-self: flex-start; }
.ai-msg.bot p { background: var(--bg-3); color: var(--ink-soft); border-end-start-radius: 4px; }
.ai-msg.user { align-self: flex-end; }
.ai-msg.user p { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #FFFFFF; font-weight: 500; border-end-end-radius: 4px; }
.ai-typing { display: flex; gap: 5px; padding: 14px 16px; background: var(--bg-3); border-radius: 14px; border-end-start-radius: 4px; }
.ai-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: aiBlink 1.2s infinite; }
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes aiBlink { 0%,60%,100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.ai-recs { display: grid; gap: 8px; margin-top: 10px; }
.ai-rec { display: flex; align-items: center; gap: 11px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; transition: 0.25s; }
.ai-rec:hover { border-color: var(--gold-line); transform: translateX(-3px); }
.ai-rec-logo { width: 36px; height: 36px; flex-shrink: 0; }
.ai-rec-meta { flex: 1; display: grid; gap: 2px; }
.ai-rec-meta b { font-size: 14px; color: var(--ink); }
.ai-rec-meta span { font-size: 12px; color: var(--muted); }
.ai-rec-go { color: var(--gold); font-size: 18px; }
.ai-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 18px 12px; }
.ai-chips button { background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-soft); font-family: var(--body); font-size: 12.5px; padding: 8px 13px; border-radius: 999px; cursor: pointer; transition: 0.2s; }
.ai-chips button:hover { border-color: var(--gold-line); color: var(--gold); }
.ai-input { display: flex; gap: 8px; padding: 14px 16px; border-top: 1px solid var(--line-2); background: var(--bg-2); }
.ai-input input { flex: 1; background: var(--bg-1); border: 1px solid var(--line); color: var(--ink); padding: 12px 14px; border-radius: 999px; font-family: var(--body); font-size: 14px; }
.ai-input input:focus { outline: none; border-color: var(--gold); }
.ai-input button { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; border: 0; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #FFFFFF; font-size: 16px; cursor: pointer; transition: 0.25s; }
.ai-input button:hover { transform: scale(1.08); }
@media (max-width: 720px) {
  #ai-concierge { inset-block-end: 16px; inset-inline-start: 16px; }
  .ai-fab-txt { display: none; }
  .ai-fab { padding: 14px; }
}

/* ===== light "ivory" section variant — flips local tokens so every
   child component (cards, text, borders) adapts automatically ===== */
/* ===== light section variant — light-gray band for rhythm (root is light) ===== */
.light-section {
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(var(--gold-rgb)/0.06), transparent 62%),
    var(--bg-1);
  border-block: 1px solid var(--line-2);
}
.light-section .step, .light-section .value, .light-section .car, .light-section .post, .light-section .plan {
  box-shadow: 0 24px 50px -38px rgba(20,20,20,0.18);
}

/* ===== magazine / blog ===== */
.posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.post { display: block; background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; transition: 0.45s var(--ease); }
.post:hover { border-color: var(--gold-line); transform: translateY(-5px); }
.post-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-3); }
.post-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
.post:hover .post-img img { transform: scale(1.06); }
.post-cat { position: absolute; inset-block-start: 14px; inset-inline-start: 14px; background: color-mix(in oklab, var(--bg) 64%, transparent); backdrop-filter: blur(8px); border: 1px solid var(--gold-line); color: var(--gold); font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 999px; }
.post-body { padding: 24px 26px 26px; }
.post-date { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); }
.post h3 { font-size: 21px; margin-top: 10px; line-height: 1.28; }
.post p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-top: 12px; }
.post-cta { display: inline-flex; gap: 6px; margin-top: 16px; color: var(--gold); font-weight: 600; font-size: 14px; transition: gap 0.3s; }
.post:hover .post-cta { gap: 11px; }

/* magazine layout: main + sidebar */
.mag-layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(28px, 4vw, 52px); align-items: start; }
.mag-grid-h { font-family: var(--display); font-size: 24px; margin: 40px 0 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }

/* category filter chips */
.mag-filter { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.mag-chip { background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-soft); padding: 9px 18px; border-radius: 999px; font-family: var(--body); font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.25s; }
.mag-chip:hover { border-color: var(--gold-line); color: var(--gold); }
.mag-chip.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #FFFFFF; border-color: transparent; }

/* featured article */
.mag-feat { display: grid; grid-template-columns: 1.15fr 1fr; background: var(--bg-card); border: 1px solid var(--gold-line); border-radius: var(--radius); overflow: hidden; transition: 0.45s var(--ease); box-shadow: 0 40px 90px -55px rgba(0,0,0,0.7); }
.mag-feat:hover { transform: translateY(-4px); }
.mag-feat-img { position: relative; min-height: 280px; overflow: hidden; }
.mag-feat-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.mag-feat:hover .mag-feat-img img { transform: scale(1.06); }
.mag-feat-body { padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; }
.mag-feat-body h3 { font-size: clamp(24px, 2.8vw, 34px); margin-top: 10px; line-height: 1.2; }
.mag-feat-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin-top: 14px; }

/* sidebar widgets */
.mag-side { position: sticky; top: calc(var(--nav-h) + 12px); display: grid; gap: 20px; }
.mag-widget { background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px 22px; }
.mag-w-h { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.mag-search { width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); padding: 12px 14px; border-radius: var(--radius-sm); font-family: var(--body); font-size: 14px; }
.mag-search:focus { outline: none; border-color: var(--gold); }
.mag-cats { display: grid; gap: 4px; }
.mag-cat-row { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: 0; border-bottom: 1px solid var(--line-2); color: var(--ink-soft); padding: 11px 2px; font-family: var(--body); font-size: 14.5px; cursor: pointer; transition: 0.2s; }
.mag-cat-row:last-child { border-bottom: 0; }
.mag-cat-row:hover { color: var(--gold); padding-inline-start: 6px; }
.mag-cat-row b { color: var(--muted); font-size: 12px; background: var(--bg-2); border-radius: 999px; padding: 2px 9px; }
.mag-pop { display: flex; align-items: center; gap: 13px; padding: 9px 0; border-bottom: 1px solid var(--line-2); }
.mag-pop:last-child { border-bottom: 0; }
.mag-pop-n { font-family: var(--display); font-weight: 700; font-size: 22px; color: transparent; -webkit-text-stroke: 1px var(--gold); flex-shrink: 0; width: 26px; }
.mag-pop-t { font-size: 14px; color: var(--ink-soft); line-height: 1.4; transition: color 0.2s; }
.mag-pop:hover .mag-pop-t { color: var(--gold); }
.mag-news { background: linear-gradient(160deg, color-mix(in oklab, var(--gold) 12%, var(--bg-card)), var(--bg-card)); border-color: var(--gold-line); }
.mag-news-p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 14px; }
.mag-news-form { display: grid; gap: 9px; }
.mag-news-form input { width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); padding: 12px 14px; border-radius: var(--radius-sm); font-family: var(--body); font-size: 14px; }
.mag-news-form input:focus { outline: none; border-color: var(--gold); }
.mag-news-ok { display: none; color: var(--gold); font-size: 14px; font-weight: 600; }
.mag-news-ok.show { display: block; }
.mag-empty { color: var(--muted); grid-column: 1 / -1; padding: 30px 0; text-align: center; }
@media (max-width: 980px) {
  .mag-layout { grid-template-columns: 1fr; }
  .mag-side { position: static; grid-template-columns: 1fr 1fr; }
  .mag-feat { grid-template-columns: 1fr; }
  .posts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) { .mag-side { grid-template-columns: 1fr; } .posts { grid-template-columns: 1fr; } }
.article-hero { min-height: 56vh; }
.article-body { max-width: 760px; margin-inline: auto; }
.article-body p { color: var(--ink-soft); font-size: 18px; line-height: 1.85; margin-bottom: 24px; }
.article-cta { text-align: center; border-top: 1px solid var(--line-2); margin-top: 20px; padding-top: 44px; }
.article-cta h3 { font-size: 26px; }
.art-lead { font-size: clamp(18px, 2vw, 22px) !important; color: var(--ink) !important; line-height: 1.7 !important; font-weight: 500; margin-bottom: 28px !important; }
.art-h2 { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3vw, 34px); margin-top: 40px; margin-bottom: 6px; scroll-margin-top: var(--nav-off); }
.art-ul { list-style: none; margin: 8px 0 24px; display: grid; gap: 12px; }
.art-ul li { position: relative; padding-inline-start: 30px; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.art-ul li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--gold); font-weight: 700; }
.art-quote { border-inline-start: 3px solid var(--gold); margin: 28px 0; padding: 6px 22px; font-family: var(--display); font-size: clamp(20px, 2.4vw, 26px); line-height: 1.5; color: var(--ink); font-style: italic; }
.art-toc { background: var(--bg-card); border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 22px 26px; margin: 8px 0 32px; }
.art-toc-h { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.art-toc ol { margin: 0; padding-inline-start: 20px; display: grid; gap: 8px; }
.art-toc a { color: var(--ink-soft); font-size: 15.5px; transition: color 0.2s; }
.art-toc a:hover { color: var(--gold); }

/* ===== phone inputs: force RTL alignment (Hebrew) across every form ===== */
input[type="tel"] { direction: rtl; text-align: right; }

/* ===== shared visual car picker (image + name autocomplete) ===== */
.c2b-cp-res { position: absolute; z-index: 60; inset-inline: 0; top: calc(100% + 5px); background: var(--bg-card, #fff); border: 1px solid var(--line-2, #e6e3dd); border-radius: 12px; box-shadow: 0 24px 55px -26px rgba(0,0,0,0.45); max-height: 300px; overflow-y: auto; text-align: right; }
.c2b-cp-item { display: flex; align-items: center; gap: 11px; padding: 8px 13px; cursor: pointer; border-bottom: 1px solid var(--line-2, #efece6); }
.c2b-cp-item:last-child { border-bottom: 0; }
.c2b-cp-item:hover { background: var(--bg-1, #f6f5f2); }
.c2b-cp-item img, .c2b-cp-ph { width: 54px; height: 36px; object-fit: contain; flex: 0 0 auto; border-radius: 6px; background: var(--bg-1, #f2f1ee); }
.c2b-cp-item span { font-size: 14px; font-weight: 600; color: var(--ink, #1a1613); }

/* ===== shared consent checkbox (pre-checked, required to submit) ===== */
.c2b-consent { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; line-height: 1.5; color: var(--ink-soft, #57534e); margin: 6px 0 2px; cursor: pointer; text-align: right; direction: rtl; width: 100%; }
.c2b-consent input[type="checkbox"] { margin: 2px 0 0; flex: 0 0 16px; width: 16px; min-width: 16px; height: 16px; accent-color: var(--gold, #2AD8A0); cursor: pointer; }
.c2b-consent span { flex: 1 1 auto; min-width: 0; }
.c2b-consent a { color: var(--gold-deep, #c0551d); text-decoration: underline; }

/* ===== article inline call-to-action banner ===== */
.art-inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; margin: 38px 0; padding: 24px 28px; border-radius: 18px; background: linear-gradient(120deg, color-mix(in oklab, var(--gold) 14%, var(--bg-card)), var(--bg-card)); border: 1px solid var(--gold-line); box-shadow: 0 18px 40px -28px rgba(0,0,0,0.5); }
.art-inline-cta .art-cta-txt { display: grid; gap: 4px; }
.art-inline-cta .art-cta-txt strong { font-family: var(--display); font-size: clamp(18px, 2vw, 22px); color: var(--ink); }
.art-inline-cta .art-cta-txt span { font-size: 15px; color: var(--ink-soft); }
.art-cta-btn { white-space: nowrap; flex-shrink: 0; }
.article-cta .article-cta-sub { color: var(--ink-soft); font-size: 16px; margin-top: 6px; }
@media (max-width: 560px) { .art-inline-cta { padding: 20px; } .art-cta-btn { width: 100%; } }

/* ===== quick-lead popup ===== */
.ql-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.ql-modal.open { display: flex; }
.ql-ov { position: absolute; inset: 0; background: rgba(10,10,14,0.66); backdrop-filter: blur(6px); animation: qlFade 0.25s ease; }
.ql-box { position: relative; z-index: 1; width: min(500px, 100%); max-height: 92vh; overflow-y: auto; background: var(--bg-card, #fff); border: 1px solid var(--gold-line); border-radius: 22px; padding: 30px clamp(20px, 4vw, 36px) 28px; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7); animation: qlPop 0.3s cubic-bezier(0.16,1,0.3,1); }
.ql-x { position: absolute; inset-block-start: 14px; inset-inline-end: 16px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-1); color: var(--muted); font-size: 15px; cursor: pointer; transition: 0.2s; }
.ql-x:hover { color: var(--ink); border-color: var(--gold-line); }
.ql-eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); }
.ql-title { font-family: var(--display); font-size: clamp(22px, 3vw, 28px); line-height: 1.2; margin-top: 8px; color: var(--ink); }
.ql-title span { color: var(--gold-deep); }
.ql-sub { margin-top: 10px; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.ql-form { margin-top: 22px; display: grid; gap: 14px; }
.ql-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ql-field { display: grid; gap: 6px; }
.ql-field span { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.ql-field input { width: 100%; padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--bg-1); color: var(--ink); font-size: 15px; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; }
.ql-field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold) 20%, transparent); }
.ql-submit { margin-top: 4px; width: 100%; padding: 15px; border: 0; border-radius: 12px; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #fff; font-size: 16.5px; font-weight: 800; font-family: inherit; cursor: pointer; transition: transform 0.15s, box-shadow 0.2s; box-shadow: 0 14px 30px -14px var(--gold-deep); }
.ql-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -14px var(--gold-deep); }
.ql-note { text-align: center; font-size: 12.5px; color: var(--muted); }
.ql-ok { display: none; text-align: center; padding: 16px 4px; }
.ql-ok.show { display: block; animation: qlFade 0.35s ease; }
.ql-ok-ic { width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; font-size: 30px; color: #fff; background: linear-gradient(135deg, #34c36e, #1f8a4c); }
.ql-ok h3 { font-family: var(--display); font-size: 24px; color: var(--ink); }
.ql-ok p { margin: 10px 0 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
@keyframes qlFade { from { opacity: 0; } }
@keyframes qlPop { from { opacity: 0; transform: translateY(18px) scale(0.97); } }
@media (max-width: 460px) { .ql-row { grid-template-columns: 1fr; } }

/* ===== article internal links (organic cross-linking, highlighted) ===== */
.article-body .art-ilink { color: var(--gold-deep); font-weight: 700; text-decoration: none; background-image: linear-gradient(var(--gold-line), var(--gold-line)); background-repeat: no-repeat; background-position: 0 100%; background-size: 100% 2px; padding-bottom: 1px; transition: background-size 0.25s var(--ease), color 0.2s; }
.article-body .art-ilink:hover { color: var(--gold-bright); background-size: 100% 100%; background-image: linear-gradient(color-mix(in oklab, var(--gold) 16%, transparent), color-mix(in oklab, var(--gold) 16%, transparent)); border-radius: 4px; }

/* ===== article rich media: figures, charts, video, tables ===== */
.art-fig, .art-video, .art-chart { margin: 32px 0; }
.art-fig img { width: 100%; height: auto; border-radius: var(--radius); display: block; border: 1px solid var(--line); }
.art-fig figcaption, .art-video figcaption { margin-top: 10px; font-size: 14px; color: var(--muted); text-align: center; font-style: italic; }
.art-video-frame { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #000; }
.art-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.art-chart { background: var(--bg-card); border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 24px 26px; }
.art-chart-title { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 18px; }
.art-chart-bars { display: grid; gap: 13px; }
.art-bar-row { display: grid; grid-template-columns: minmax(120px, 34%) 1fr auto; align-items: center; gap: 12px; }
.art-bar-lab { font-size: 14.5px; color: var(--ink-soft); }
.art-bar-track { position: relative; height: 12px; background: var(--bg-1); border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }
.art-bar-fill { position: absolute; inset-block: 0; inset-inline-start: 0; border-radius: 999px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); animation: artBarGrow 0.9s var(--ease) both; }
@keyframes artBarGrow { from { width: 0 !important; } }
.art-bar-row.hl .art-bar-fill { background: linear-gradient(90deg, #1f8a4c, #34c36e); }
.art-bar-row.hl .art-bar-lab { color: var(--ink); font-weight: 700; }
.art-bar-val { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--gold-deep); min-width: 44px; text-align: start; }
.art-chart-note { margin-top: 16px; font-size: 13px; color: var(--muted); line-height: 1.6; }
.art-table-wrap { margin: 30px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.art-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 420px; }
.art-table th { background: var(--bg-1); color: var(--gold-deep); font-weight: 700; text-align: start; padding: 13px 16px; border-bottom: 2px solid var(--gold-line); white-space: nowrap; }
.art-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.art-table tr:last-child td { border-bottom: 0; }
.art-table .art-td-k { color: var(--ink); font-weight: 600; }
.art-table tbody tr:nth-child(even) td { background: color-mix(in oklab, var(--bg-1) 45%, transparent); }
@media (max-width: 560px) { .art-bar-row { grid-template-columns: minmax(90px, 40%) 1fr auto; gap: 8px; } .art-bar-lab { font-size: 13px; } }

/* ===== compare: card button ===== */
.car-compare { position: absolute; inset-block-start: 12px; inset-inline-start: 12px; z-index: 4; background: color-mix(in oklab, var(--bg) 66%, transparent); backdrop-filter: blur(8px); border: 1px solid var(--line); color: var(--ink-soft); font-family: var(--body); font-size: 12.5px; font-weight: 600; padding: 7px 13px; border-radius: 999px; cursor: pointer; transition: 0.25s; }
.car-compare:hover { border-color: var(--gold-line); color: var(--gold); }
.car-compare.active { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #FFFFFF; border-color: transparent; }

/* ===== compare: floating tray ===== */
.compare-tray { position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 95; background: color-mix(in oklab, var(--bg-1) 96%, transparent); backdrop-filter: blur(20px); border-top: 1px solid var(--gold-line); box-shadow: 0 -24px 60px -30px rgba(0,0,0,0.8); transform: translateY(110%); transition: transform 0.4s var(--ease); }
.compare-tray.show { transform: none; }
.ct-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding-block: 16px; }
.ct-head { display: grid; gap: 4px; }
.ct-title { font-family: var(--display); font-size: 17px; color: var(--ink); white-space: nowrap; }
.ct-title span { color: var(--gold); font-size: 14px; }
.ct-clear { background: none; border: 0; color: var(--muted); font-size: 12.5px; cursor: pointer; text-align: start; padding: 0; }
.ct-clear:hover { color: var(--gold); }
.ct-items { display: flex; gap: 12px; overflow-x: auto; }
.ct-item { display: flex; align-items: center; gap: 10px; background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 8px 10px 8px 12px; flex-shrink: 0; }
.ct-logo { width: 34px; height: 34px; }
.ct-meta .ct-name { font-size: 14px; font-weight: 600; white-space: nowrap; }
.ct-meta .ct-price { font-size: 12px; color: var(--muted); }
.ct-remove { background: none; border: 0; color: var(--muted); font-size: 20px; line-height: 1; cursor: pointer; padding: 0 2px; }
.ct-remove:hover { color: var(--gold); }
.ct-go { white-space: nowrap; }
.ct-go.disabled { opacity: 0.4; pointer-events: none; }
/* lift floating buttons above the compare tray when open */
body.tray-open .wa-float { inset-block-end: 116px; }
body.tray-open #ai-concierge { inset-block-end: 116px; }
.ct-inner { padding-inline: 72px; }
@media (max-width: 720px) { body.tray-open .wa-float, body.tray-open #ai-concierge { inset-block-end: 150px; } }

/* ===== compare: page table ===== */
.cmp-wrap { overflow-x: auto; }
.cmp { width: 100%; border-collapse: collapse; min-width: 640px; }
.cmp th, .cmp td { padding: 16px 20px; text-align: start; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
.cmp thead th { vertical-align: top; border-bottom: 1px solid var(--line); width: auto; }
.cmp .cmp-corner { width: 170px; }
.cmp-lbl { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); width: 170px; }
.cmp td { font-size: 15.5px; color: var(--ink-soft); }
.cmp-hi { font-family: var(--display); font-size: 20px; color: var(--gold); font-weight: 700; }
.cmp-card { display: grid; gap: 10px; min-width: 200px; }
.cmp-img { position: relative; display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--line); }
.cmp-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cmp-logo { position: absolute; inset-block-start: 8px; inset-inline-end: 8px; width: 34px; height: 34px; }
.cmp-tier { font-size: 12.5px; color: var(--gold); font-family: var(--mono); letter-spacing: 0.04em; }
.cmp-name { font-family: var(--display); font-size: 21px; color: var(--ink); }
.cmp-name:hover { color: var(--gold); }
.cmp-remove { justify-self: start; background: none; border: 0; color: var(--muted); font-size: 13px; cursor: pointer; padding: 0; }
.cmp-remove:hover { color: var(--gold); }
.cmp-empty { text-align: center; padding: 70px 20px; }
.cmp-empty-ic { width: 76px; height: 76px; border-radius: 50%; border: 1px solid var(--gold-line); color: var(--gold); display: grid; place-items: center; margin: 0 auto 24px; font-size: 34px; }
.cmp-empty h3 { font-size: 26px; }
.cmp-empty p { color: var(--muted); margin: 12px auto 28px; max-width: 42ch; }

/* shop empty + compare polish */
.shop-empty { text-align: center; padding: 60px 20px; }
.shop-empty h3 { font-size: 24px; margin-top: 8px; }
.shop-empty p { color: var(--muted); margin: 12px auto 24px; max-width: 46ch; }
.cmp-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.cmp-toggle { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-soft); cursor: pointer; font-weight: 600; }
.cmp-toggle input { width: 18px; height: 18px; accent-color: var(--gold); }
.cmp-hint { font-size: 13px; color: var(--muted); }
td.cmp-best { background: color-mix(in oklab, var(--gold) 9%, transparent); color: var(--ink); font-weight: 600; }
.cmp-star { color: var(--gold); margin-inline-start: 6px; font-size: 12px; }
.cmp.diff-only .cmp-same { display: none; }

/* ===== hero search-by-characteristics ===== */
.hero-search-wrap { margin-top: 30px; position: relative; z-index: 5; background: linear-gradient(165deg, color-mix(in oklab, var(--bg-2) 88%, transparent), color-mix(in oklab, var(--bg-1) 92%, transparent)); backdrop-filter: blur(20px) saturate(1.25); border: 1px solid var(--line); border-radius: 22px; padding: 26px 24px 22px; max-width: 600px; box-shadow: 0 40px 90px -42px rgba(0,0,0,0.9), inset 0 1px 0 color-mix(in oklab, var(--ink) 8%, transparent); }
.hero-search-wrap::before { content: ""; position: absolute; inset-block-start: 0; inset-inline: 22px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.7; }
.hsw-head { text-align: center; margin-bottom: 18px; }
.hsw-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.hsw-title { font-family: var(--display); font-weight: 500; font-size: clamp(19px, 2.2vw, 23px); color: var(--ink); margin-top: 7px; }
.hsw-foot { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-2); }
.hero-search { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 8px; margin-top: 12px; }
.hs-pill { width: 100%; min-width: 0; appearance: none; -webkit-appearance: none; background: color-mix(in oklab, var(--bg-2) 78%, transparent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C9A45A' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat left 12px center; backdrop-filter: blur(10px); border: 1px solid var(--gold-line); color: var(--ink); padding: 12px 14px 12px 30px; border-radius: 999px; font-family: var(--body); font-size: 14px; cursor: pointer; transition: border-color 0.2s, background-color 0.2s; text-overflow: ellipsis; }
.hs-pill:hover { border-color: var(--gold); }
.hs-pill:focus { outline: none; border-color: var(--gold); }
.hs-btn { padding: 12px 22px; white-space: nowrap; border-radius: 999px; }

/* ===== hero quick rail (catalog CTAs + links) ===== */
.hero-quick { margin-top: clamp(24px, 3vw, 38px); display: grid; gap: 24px; }
.hq-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.hq-cta .btn { min-width: 220px; }
.hq-links { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.hq-link { display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; padding: 18px 12px; border-radius: var(--radius-sm); background: color-mix(in oklab, var(--bg-2) 72%, transparent); backdrop-filter: blur(12px); border: 1px solid var(--line); color: var(--ink-soft); font-size: 13.5px; font-weight: 600; line-height: 1.3; transition: 0.3s var(--ease); position: relative; }
.hq-link:hover { border-color: var(--gold-line); color: var(--gold); transform: translateY(-3px); }
.hq-ic { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gold-line); color: var(--gold); display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.hq-go { color: var(--gold); font-size: 13px; opacity: 0; transition: opacity 0.3s; }
.hq-link:hover .hq-go { opacity: 1; }
@media (max-width: 980px) { .hq-links { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .hq-links { grid-template-columns: repeat(2, 1fr); } .hq-cta .btn { min-width: 0; flex: 1; } }

/* ===== horizontal quick contact strip ===== */
.quick-contact { padding-block: clamp(40px, 6vw, 80px); }
.quick-contact + .section { padding-top: clamp(32px, 4vw, 52px); }
.qc-panel { position: relative; display: grid; grid-template-columns: 0.9fr 1.3fr; gap: clamp(28px, 5vw, 64px); align-items: center; background:
    radial-gradient(700px 340px at 88% -10%, rgba(var(--gold-rgb)/0.12), transparent 60%),
    linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--gold-line); border-radius: 24px; padding: clamp(30px, 4vw, 52px); overflow: hidden; box-shadow: 0 50px 110px -55px rgba(0,0,0,0.85); }
.qc-panel::before { content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.qc-aside .eyebrow { margin-bottom: 14px; }
.qc-h { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.1; }
.qc-p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; margin-top: 14px; max-width: 36ch; }
.qc-phone { display: inline-block; margin-top: 20px; font-family: var(--mono); font-size: 16px; color: var(--gold); letter-spacing: 0.04em; }
.qc-phone:hover { color: var(--gold-bright); }
.qc-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; }
.qc-field input { width: 100%; text-align: right; background: color-mix(in oklab, var(--bg) 55%, transparent); border: 1px solid var(--line); color: var(--ink); padding: 15px 18px; border-radius: var(--btn-radius); font-family: var(--body); font-size: 15px; transition: border-color 0.2s, background-color 0.2s; }
.qc-field input::placeholder { color: var(--muted-2); }
.qc-field input:focus { outline: none; border-color: var(--gold); background: color-mix(in oklab, var(--bg) 35%, transparent); }
.qc-submit { width: 100%; }
.qc-consent { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--muted); margin-top: 16px; }
.qc-consent input { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.qc-consent a { color: var(--gold); text-decoration: underline; }
.qc-success { display: none; color: var(--gold); font-size: 15px; font-weight: 600; margin-top: 14px; }
.qc-success.show { display: block; }
.qc-form.sent .qc-grid, .qc-form.sent .qc-consent { display: none; }
@media (max-width: 780px) {
  .qc-panel { grid-template-columns: 1fr; gap: 24px; }
  .qc-grid { grid-template-columns: 1fr; }
}

/* ===== pinned process (4 steps, scroll-driven) ===== */
.proc-track { position: relative; height: 300vh; }
.proc-stage { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.proc-body { display: grid; grid-template-columns: 280px 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; margin-top: clamp(28px, 4vw, 48px); }
.proc-foot { margin-top: clamp(28px, 4vw, 44px); }

/* step rail */
.proc-rail { position: relative; display: grid; gap: 8px; padding-inline-start: 22px; }
.proc-progress { position: absolute; inset-inline-start: 0; inset-block: 8px; width: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.proc-progress span { position: absolute; inset-inline: 0; inset-block-start: 0; height: 0; background: linear-gradient(var(--gold-bright), var(--gold-deep)); transition: height 0.3s var(--ease); }
.proc-dot { display: flex; align-items: center; gap: 12px; background: none; border: 0; text-align: start; padding: 11px 0; cursor: pointer; opacity: 0.4; transition: opacity 0.35s var(--ease); }
.proc-dot b { font-family: var(--display); font-size: 15px; color: var(--ink); width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; transition: 0.35s var(--ease); }
.proc-dot span { font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--ink); }
.proc-dot.active { opacity: 1; }
.proc-dot.active b { border-color: transparent; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #FFFFFF; box-shadow: 0 8px 20px -8px rgba(var(--gold-rgb)/0.7); }
.proc-dot.done { opacity: 0.8; }

/* big featured card */
.proc-cards { position: relative; min-height: 440px; }
.proc-card { position: absolute; inset: 0; display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; box-shadow: 0 50px 110px -55px rgba(40,30,14,0.55); opacity: 0; transform: translateY(24px) scale(0.985); pointer-events: none; transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.proc-card.active { opacity: 1; transform: none; pointer-events: auto; }
.proc-media { position: relative; overflow: hidden; min-height: 300px; }
.proc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proc-card.active .proc-media img { animation: procZoom 7s ease-out forwards; }
@keyframes procZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.proc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 40%, color-mix(in oklab, var(--bg-card) 92%, transparent)); }
.proc-media-num { position: absolute; inset-block-start: 22px; inset-inline-start: 24px; z-index: 2; font-family: var(--display); font-weight: 700; font-size: clamp(44px, 5vw, 68px); line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--gold-bright); text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.proc-text { padding: clamp(32px, 4.5vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.proc-kick { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.proc-card h3 { font-size: clamp(28px, 3.6vw, 46px); margin-top: 14px; }
.proc-card p { color: var(--ink-soft); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; margin-top: 16px; max-width: 44ch; }

/* fallback before JS / reduced motion: simple stacked grid */
.proc-track:not(.ready) { height: auto; }
.proc-track:not(.ready) .proc-stage { position: static; height: auto; display: block; padding-block: clamp(72px,10vw,120px); }
.proc-track:not(.ready) .proc-cards { min-height: 0; display: grid; gap: 20px; }
.proc-track:not(.ready) .proc-card { position: static; opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 820px) {
  .proc-body { grid-template-columns: 1fr; gap: 24px; }
  .proc-rail { display: flex; gap: 4px; padding-inline-start: 0; padding-block-start: 14px; overflow-x: auto; }
  .proc-rail .proc-dot span { display: none; }
  .proc-progress { inset-block: auto; inset-inline: 0; inset-block-start: 0; width: auto; height: 2px; }
  .proc-progress span { inset-block: 0; inset-inline-start: 0; width: 0; height: auto; transition: width 0.3s var(--ease); }
  .proc-cards { min-height: 460px; }
  .proc-card { grid-template-columns: 1fr; grid-template-rows: 200px 1fr; }
  .proc-media::after { background: linear-gradient(0deg, transparent 50%, color-mix(in oklab, var(--bg-card) 90%, transparent)); }
}

/* ===== instant live search ===== */
.instant { position: relative; margin-bottom: 4px; }
.instant::before { content: ""; position: absolute; inset-block-start: 50%; inset-inline-start: 14px; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: color-mix(in oklab, var(--gold) 22%, transparent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23C9A45A' stroke-width='2.2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E") no-repeat center; pointer-events: none; }
.instant-input { width: 100%; background: color-mix(in oklab, var(--bg-2) 86%, transparent); backdrop-filter: blur(12px); border: 1px solid var(--gold-line); color: var(--ink); padding: 18px 24px 18px 64px; border-radius: 999px; font-family: var(--body); font-size: 16px; transition: border-color 0.2s, box-shadow 0.2s; }
.instant-input::placeholder { color: var(--muted); }
.instant-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(var(--gold-rgb)/0.14); }
.instant-results { position: absolute; inset-inline: 0; inset-block-start: calc(100% + 8px); background: var(--bg-1); border: 1px solid var(--gold-line); border-radius: 18px; box-shadow: 0 30px 70px -24px rgba(0,0,0,0.85); overflow: hidden; opacity: 0; visibility: hidden; transition: opacity 0.22s, visibility 0.22s; z-index: 40; }
.instant-results.show { opacity: 1; visibility: visible; }
.ir-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--line-2); transition: background 0.2s; }
.ir-row:last-child { border-bottom: 0; }
.ir-row:hover { background: var(--bg-2); }
.ir-thumb { width: 64px; height: 44px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.ir-logo { width: 30px; height: 30px; flex-shrink: 0; }
.ir-meta { flex: 1; display: grid; gap: 2px; min-width: 0; }
.ir-meta b { font-size: 14.5px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ir-meta span { font-size: 12px; color: var(--muted); }
.ir-price { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--gold); white-space: nowrap; }
.ir-price small { font-family: var(--body); font-size: 11px; color: var(--muted); font-weight: 400; }
.ir-empty { padding: 18px; text-align: center; color: var(--muted); font-size: 14px; }
.ir-empty a { color: var(--gold); }

/* ===== used-car smart search (yad2) ===== */
.usearch { margin-top: 30px; background: var(--bg-card); border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 30px clamp(20px,3vw,34px) 28px; box-shadow: 0 40px 90px -55px rgba(0,0,0,0.8); display: grid; gap: 24px; }
.usearch-title { text-align: center; display: grid; gap: 10px; margin-bottom: 4px; }
.usearch-title h2 { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.1; }
.usearch-title p { color: var(--muted); font-size: 15.5px; max-width: 52ch; margin: 0 auto; }
.usearch-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 0.8fr; gap: 18px; align-items: end; }
.usearch-sliders { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.usearch-field { display: grid; gap: 10px; min-width: 0; }
.usearch-field > label { font-size: 12px; color: var(--gold); font-family: var(--mono); letter-spacing: 0.06em; }
.usearch-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.usearch-row label { font-size: 12px; color: var(--gold); font-family: var(--mono); letter-spacing: 0.06em; }
.usearch-row b { font-family: var(--display); font-size: 17px; color: var(--ink); }
.usearch-text input { width: 100%; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); padding: 12px 15px; border-radius: var(--radius-sm); font-family: var(--body); font-size: 15px; }
.usearch-text input:focus { outline: none; border-color: var(--gold); }
.usearch select:disabled { opacity: 0.5; cursor: not-allowed; }
.usearch-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line-2); padding-top: 22px; flex-wrap: wrap; }
.usearch-count { font-size: 14px; color: var(--muted); white-space: nowrap; }
.usearch-count b { font-family: var(--display); font-size: 24px; color: var(--gold); }
@media (max-width: 980px) { .usearch-grid { grid-template-columns: 1fr 1fr; } .usearch-text { grid-column: 1 / -1; } }
@media (max-width: 600px) { .usearch-grid, .usearch-sliders { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .hero-search { grid-template-columns: 1fr 1fr; }
  .hs-btn { grid-column: 1 / -1; }
  .hero-search-wrap { max-width: 100%; }
}

/* ===== shop layout (sidebar filter) ===== */
.filter-toggle { display: none; }
.shop { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.filters { position: sticky; top: calc(var(--nav-h) + 12px); max-height: calc(100vh - var(--nav-h) - 36px); overflow-y: auto; overscroll-behavior: contain; background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 24px 22px; display: grid; gap: 20px; }
.filters::-webkit-scrollbar { width: 7px; }
.filters::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.filters::-webkit-scrollbar-thumb:hover { background: var(--gold-line); }
.filter-group { display: grid; gap: 10px; border-bottom: 1px solid var(--line-2); padding-bottom: 20px; }
.filter-group:last-of-type { border-bottom: 0; padding-bottom: 0; }
.filter-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.filter-label b { color: var(--gold); font-family: var(--body); letter-spacing: 0; font-size: 13px; }
.filter-search { background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); padding: 10px 13px; border-radius: var(--radius-sm); font-family: var(--body); font-size: 14px; }
.filter-search:focus { outline: none; border-color: var(--gold); }
.filter-chk { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-soft); cursor: pointer; padding: 3px 0; }
.filter-chk input { width: 17px; height: 17px; accent-color: var(--gold); flex-shrink: 0; }
.filter-chk:hover { color: var(--gold); }
.filter-scroll { display: grid; gap: 2px; padding-inline-end: 4px; }
.filter-reset { background: transparent; border: 1px solid var(--line); color: var(--ink-soft); padding: 11px; border-radius: var(--btn-radius); font-family: var(--body); font-weight: 600; font-size: 14px; transition: 0.25s; cursor: pointer; }
.filter-reset:hover { border-color: var(--gold-line); color: var(--gold); }
.shop-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line-2); flex-wrap: wrap; }
.shop-count { font-size: 15px; color: var(--muted); }
.shop-count b { font-family: var(--display); font-size: 22px; color: var(--ink); }
.shop-sort { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.shop-sort select { background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); padding: 9px 13px; border-radius: var(--radius-sm); font-family: var(--body); font-size: 14px; }
/* custom sort dropdown */
.csel { position: relative; }
.csel-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); padding: 10px 14px; border-radius: var(--radius-sm); font-family: var(--body); font-size: 14px; cursor: pointer; transition: border-color 0.2s; }
.csel-btn:hover { border-color: var(--gold-line); }
.csel-caret { color: var(--gold); font-size: 12px; transition: transform 0.25s; }
.csel.open .csel-caret { transform: rotate(180deg); }
.csel-list { position: absolute; inset-block-start: calc(100% + 6px); inset-inline-end: 0; min-width: 200px; background: var(--bg-1); border: 1px solid var(--gold-line); border-radius: var(--radius-sm); box-shadow: 0 24px 60px -24px rgba(0,0,0,0.7); padding: 6px; display: grid; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: 0.22s; z-index: 40; }
.csel.open .csel-list { opacity: 1; visibility: visible; transform: none; }
.csel-opt { text-align: start; background: none; border: 0; color: var(--ink-soft); padding: 10px 12px; border-radius: 8px; font-family: var(--body); font-size: 14px; cursor: pointer; transition: 0.18s; }
.csel-opt:hover { background: var(--bg-3); color: var(--gold); }
.csel-opt.active { background: color-mix(in oklab, var(--gold) 16%, transparent); color: var(--gold); font-weight: 600; }
.shop-main .gallery { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
.shop-main .car-body { padding: 22px 26px 26px; }
@media (max-width: 980px) { .shop-main .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .shop-main .gallery { grid-template-columns: 1fr; } }

/* ===== model detail ===== */
.detail-hero { min-height: 68vh; }
.back-link { display: inline-block; color: var(--ink-soft); font-size: 13.5px; margin-bottom: 18px; font-family: var(--mono); letter-spacing: 0.04em; }
.back-link:hover { color: var(--gold); }
.detail-price { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.4vw, 40px); color: var(--gold); margin-top: 22px; }
.detail-price small { font-family: var(--body); font-size: 15px; color: var(--ink-soft); font-weight: 400; }
.detail-body { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.detail-figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 10; box-shadow: 0 40px 90px -55px rgba(0,0,0,0.8); }
.detail-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.thumb { padding: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16 / 11; background: var(--bg-3); cursor: pointer; transition: 0.25s; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb.active { border-color: var(--gold); }
.thumb:hover { border-color: var(--gold-line); }
.detail-text { margin-top: 32px; }
.detail-blurb { font-size: 18px; color: var(--ink-soft); line-height: 1.7; margin-top: 14px; }
.detail-video { position: relative; display: block; margin-top: 44px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/8; box-shadow: 0 40px 90px -55px rgba(0,0,0,0.6); }
.detail-video img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.detail-video:hover img { transform: scale(1.05); }
.detail-video::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(0,0,0,0.15), rgba(0,0,0,0.55)); }
.dv-play { position: absolute; inset-block-start: 50%; inset-inline-start: 50%; transform: translate(-50%,-50%); width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.18); backdrop-filter: blur(6px); border: 2px solid #fff; display: grid; place-items: center; color: #fff; transition: 0.3s; }
.detail-video:hover .dv-play { background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); border-color: transparent; transform: translate(-50%,-50%) scale(1.08); }
.dv-play svg { width: 34px; height: 34px; margin-inline-start: 3px; }
.dv-label { position: absolute; inset-block-end: 0; inset-inline: 0; padding: 24px 26px 18px; background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent); color: #fff; font-weight: 600; font-size: clamp(15px, 2vw, 18px); }
.detail-video[data-yt] { cursor: pointer; }
.detail-video .dv-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.detail-extra { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-top: 16px; }
.detail-hl { margin-top: 26px; }
.detail-hl-h { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.detail-hl-list { list-style: none; display: grid; gap: 11px; }
.detail-hl-list li { position: relative; padding-inline-start: 30px; font-size: 16px; color: var(--ink); line-height: 1.5; }
.detail-hl-list li::before { content: ""; position: absolute; inset-inline-start: 0; top: 7px; width: 16px; height: 16px; border-radius: 5px; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); }
.detail-hl-list li::after { content: "✓"; position: absolute; inset-inline-start: 3px; top: 5px; color: #fff; font-size: 11px; font-weight: 700; }
.fit-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.fit-list li { background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 26px 24px; font-size: 16px; line-height: 1.55; color: var(--ink); position: relative; padding-inline-start: 56px; }
.fit-list li::before { content: "✓"; position: absolute; inset-inline-start: 22px; top: 26px; width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; }
@media (max-width: 820px) { .fit-list { grid-template-columns: 1fr; } }
.detail-note { font-size: 14px; color: var(--muted); line-height: 1.6; margin-top: 18px; }
.detail-side { position: sticky; top: calc(var(--nav-h) + 12px); }
.detail-brand-logo { width: 58px; height: 58px; margin-bottom: 18px; }
.spec-card { background: var(--bg-card); border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 28px 26px; }
.spec-card h3 { font-size: 22px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: var(--radius-sm); overflow: hidden; margin-top: 20px; }
.spec { background: var(--bg-card); padding: 16px; display: grid; gap: 5px; }
.spec span { font-size: 12.5px; color: var(--muted); }
.spec b { font-family: var(--display); font-size: 18px; color: var(--ink); font-weight: 700; }
.spec-cta { margin-top: 24px; border-top: 1px solid var(--line-2); padding-top: 22px; }
.spec-price { font-family: var(--display); font-weight: 700; font-size: 30px; color: var(--gold); margin-bottom: 16px; }
.spec-price small { font-family: var(--body); font-size: 14px; color: var(--ink-soft); font-weight: 400; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 520px; }
  .calc, .lead-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .footer-brandcol { grid-column: 1 / -1; }
  .brands-strip { grid-template-columns: repeat(5, 1fr); }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .values { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .media-hero.home { min-height: 88vh; }
  .detail-body { grid-template-columns: 1fr; gap: 36px; }
  .detail-side { position: static; }
  .shop { grid-template-columns: 1fr; gap: 20px; }
  .filters { position: static; display: none; }
  .filters.open { display: grid; }
  .filter-toggle { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 4px; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink); padding: 11px 22px; border-radius: var(--btn-radius); font-weight: 600; font-family: var(--body); font-size: 14.5px; cursor: pointer; }
}
@media (max-width: 1040px) {
  /* header collapses to a single 66px tier here — shrink the content offset to match */
  :root { --nav-h: 66px; --nav-off: 82px; }
  .nav-search { display: none; }
  .nav-bar { border-top: 0; background: transparent; }
  .nav-bar-inner { height: 0; }
  .nav-top-inner { grid-template-columns: 1fr auto 1fr; height: 66px; }
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  .nav-links.open { display: flex; position: fixed; inset-block-start: 66px; inset-inline: 0; flex-direction: column; gap: 0; background: #1E1D1B; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 12px 24px 24px; z-index: 120; }
  .nav-links.open a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .nav .mega-trigger { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-mega { width: 100%; display: block; }
  .mega-panel { display: none; }
  .mega-trigger { padding: 14px 0; border-bottom: 1px solid var(--line-2); width: 100%; }
  .mega-trigger .caret { display: none; }
}
@media (max-width: 720px) {
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat:nth-child(3) { border-inline-start: 0; }
  .stat + .stat { border-top: 1px solid var(--line-2); padding-top: 22px; }
  .stat:nth-child(2) { border-inline-start: 1px solid var(--line-2); }
  .steps, .gallery, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .brands-strip { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .field-row { grid-template-columns: 1fr; }
  .compare-wrap { overflow-x: auto; }
  .compare { min-width: 620px; }
  .ct-inner { grid-template-columns: 1fr; gap: 12px; padding-block: 14px; }
  .ct-head { display: flex; align-items: center; justify-content: space-between; }
  .ct-go { width: 100%; }
}

/* =========================================================
   COMPREHENSIVE MOBILE LAYER
   ========================================================= */
@media (max-width: 640px) {
  /* tighter section rhythm */
  .section { padding-block: clamp(44px, 11vw, 64px); }
  .wrap { padding-inline: 18px; }
  /* typography scale-down */
  .h-sec { font-size: clamp(26px, 7.5vw, 34px); }
  .lead { font-size: 15.5px; }
  .eyebrow { font-size: 12px; }
  /* hero */
  .media-hero.home { min-height: auto; padding-block: 96px 40px; }
  .media-hero.page { min-height: auto; }
  .media-hero.page .mh-content { padding-top: 104px; padding-bottom: 36px; }
  .mh-content h1, .hero-text h1 { font-size: clamp(30px, 9vw, 42px); }
  .hero-trust { flex-wrap: wrap; gap: 12px 0; margin-top: 22px; }
  .hero-trust .ht-item { padding-inline: 12px; width: 50%; }
  .scroll-cue { display: none; }
  /* hero search panel */
  .hero-search-wrap { padding: 16px; }
  .instant-input { font-size: 16px; } /* prevent iOS zoom */
  /* quick links + CTA */
  .hq-cta { flex-direction: column; }
  .hq-cta .btn { width: 100%; }
  /* buttons full-width-ish on small screens */
  .mh-actions { width: 100%; }
  .mh-actions .btn { flex: 1; justify-content: center; }
  .btn-lg { padding: 15px 22px; font-size: 15px; }
  /* steps / values / plans single column */
  .steps, .values, .plans, .gallery, .testi-grid, .posts, .brands-strip { grid-template-columns: 1fr; }
  .brands-strip { grid-template-columns: repeat(3, 1fr); }
  /* calculator stacks */
  .calc { grid-template-columns: 1fr; }
  .calc-result::before { display: none; }
  .res-main { font-size: clamp(44px, 13vw, 60px); }
  /* forms: prevent iOS zoom + comfortable tap targets */
  input, select, textarea { font-size: 16px !important; }
  .field input, .field select, .field textarea,
  .qc-field input, .sched-fields input, .sched-fields select, .sched-fields textarea { padding-block: 14px; }
  /* model detail */
  .detail-body { grid-template-columns: 1fr; }
  .detail-side { position: static; margin-top: 24px; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .detail-thumbs { grid-template-columns: repeat(4, 1fr); }
  /* comparison: horizontal scroll */
  .cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cmp { min-width: 560px; }
  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brandcol { grid-column: auto; }
  .footer { padding-block: 48px 96px; } /* room for sticky bar */
  /* press strip */
  .press-strip { gap: 22px 16px; }
  .press-item { width: 44%; }
  /* scheduler modal full-height comfort */
  .sched-modal { max-height: 88vh; }
  .sched-head, .sched-body, .sched-success { padding-inline: 20px; }
  /* trust stats */
  .trust-inner { padding-block: 28px; }
  .stat .num { font-size: clamp(26px, 8vw, 34px); }
  /* AI concierge panel fits screen */
  .ai-panel { width: calc(100vw - 24px); height: calc(100vh - 90px); }
}

/* very small phones */
@media (max-width: 380px) {
  .hero-trust .ht-item { width: 100%; }
  .brands-strip { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: 1fr; }
}

/* ===== Hero CTA + Quote modal (index) ===== */
.hero-cta { margin-top: 22px; }
.hero-cta .btn { width: 100%; font-size: 19px; padding: 17px 30px; box-shadow: 0 18px 40px -18px rgba(var(--gold-rgb) / .7); }
.hero-cta .btn span { font-size: 1.15em; line-height: 1; margin-inline-start: 4px; }

.qm-overlay { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(10,12,18,.62); backdrop-filter: blur(4px); animation: qmFade .2s ease; }
.qm-overlay[hidden] { display: none; }
@keyframes qmFade { from { opacity: 0; } to { opacity: 1; } }
.qm-card { position: relative; width: min(440px, 100%); background: var(--bg-card); color: var(--ink); border: 1px solid var(--line-2); border-radius: 20px; padding: clamp(26px, 4vw, 38px); box-shadow: 0 40px 90px -40px rgba(0,0,0,.6); animation: qmUp .24s cubic-bezier(.2,.7,.2,1); }
@keyframes qmUp { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }
.qm-x { position: absolute; inset-block-start: 14px; inset-inline-start: 14px; width: 34px; height: 34px; border: none; border-radius: 50%; background: var(--bg-2); color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; transition: background .2s; }
.qm-x:hover { background: var(--bg-3); }
.qm-kicker { font-family: var(--mono, ui-monospace, monospace); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.qm-card h3 { font-size: clamp(21px, 3vw, 26px); margin: 8px 0 6px; line-height: 1.2; }
.qm-sub { color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; margin-bottom: 20px; }
.qm-field { display: block; margin-bottom: 14px; }
.qm-field > span { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 6px; color: var(--ink); }
.qm-field input { width: 100%; padding: 13px 15px; font-size: 16px; font-family: inherit; color: var(--ink); background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px; transition: border-color .2s, box-shadow .2s; }
.qm-field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(var(--gold-rgb) / .16); }
.qm-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.qm-note { margin-top: 12px; font-size: 12px; color: var(--muted); text-align: center; }
.qm-done { padding: 30px 10px; text-align: center; font-size: 18px; font-weight: 700; color: var(--gold-deep); }

/* ===== Home יד 2 carousel (horizontal scroll of used-car cards) ===== */
.used-carousel { display: flex; gap: 20px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; padding: 6px clamp(20px, 5vw, 48px) 26px; margin-top: clamp(20px, 3vw, 32px); -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--gold-line) transparent; }
.used-carousel::-webkit-scrollbar { height: 8px; }
.used-carousel::-webkit-scrollbar-track { background: transparent; }
.used-carousel::-webkit-scrollbar-thumb { background: var(--gold-line); border-radius: 999px; }
.used-carousel > .car { flex: 0 0 clamp(268px, 78vw, 296px); scroll-snap-align: start; }

/* ===== used-car card (יד 2) — global copy (also inline in yad2.html) so it works in the home carousel too ===== */
.ucard.car { background: #fff; border: 1px solid #e8e8e8; color: #232323; border-radius: 20px; box-shadow: 0 20px 50px -34px rgba(0,0,0,.4); overflow: hidden; }
.ucard.car:hover { border-color: var(--gold-line); transform: translateY(-5px); }
.uc-hit { display: block; color: inherit; }
.uc-ph { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #eef0f2; }
.uc-ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.ucard.car:hover .uc-ph img { transform: scale(1.06); }
.uc-fuel { position: absolute; inset-block-start: 14px; inset-inline-start: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 700; color: #fff; box-shadow: 0 6px 16px -8px rgba(0,0,0,.5); }
.uc-fuel svg { width: 14px; height: 14px; }
.uc-fuel.ev { background: #1f8a4c; }
.uc-fuel.hyb { background: #0d8f8f; }
.uc-fuel.gas { background: #3a3a3f; }
.uc-media { position: absolute; inset-block-end: 14px; inset-inline-end: 14px; z-index: 2; display: flex; gap: 8px; }
.uc-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.94); color: #232323; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; box-shadow: 0 6px 16px -8px rgba(0,0,0,.4); }
.uc-chip svg { width: 13px; height: 13px; }
.uc-name { text-align: center; font-family: var(--display); font-weight: 800; font-size: 20px; color: #232323; padding: 18px 18px 0; }
.uc-immediate { display: block; width: calc(100% - 44px); margin: 14px auto 2px; text-align: center; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; font-weight: 800; font-size: 14.5px; padding: 11px 14px; border-radius: 999px; transition: .2s; }
.uc-immediate:hover { filter: brightness(1.06); }
.uc-specs { padding: 6px 22px 4px; }
.uc-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid #ececec; font-size: 14px; }
.uc-row:last-child { border-bottom: 0; }
.uc-row .rk { color: #8a8a8a; }
.uc-row .rv { color: #232323; font-weight: 700; }
.uc-foot { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 10px 18px 20px; }
.uc-pay { display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: #fff; font-weight: 800; font-size: 14.5px; padding: 13px 14px; border-radius: 14px; line-height: 1.2; transition: .2s; }
.uc-pay:hover { filter: brightness(1.06); }
.uc-fav { display: inline-flex; align-items: center; gap: 7px; background: #101013; color: #fff; border: 0; font-family: inherit; font-weight: 700; font-size: 14px; padding: 0 18px; border-radius: 14px; cursor: pointer; transition: .2s; }
.uc-fav svg { width: 16px; height: 16px; }
.uc-fav:hover { background: #23232a; }
.uc-fav.is-fav { background: var(--gold-deep); }
.uc-fav.is-fav svg { fill: #fff; }

/* ===== used-car placeholder (no photo yet) ===== */
.uc-ph.uc-ph-empty { display: grid; place-content: center; justify-items: center; gap: 12px; padding: 20px; background: linear-gradient(160deg, #f3f5f8, #e4e7ec); text-align: center; }
.uc-ph-logo { width: clamp(56px, 20%, 88px); max-height: 60px; object-fit: contain; opacity: .92; }
.uc-ph-model { font-family: var(--display); font-weight: 800; font-size: 18px; color: #2a2f3a; line-height: 1.2; }
.uc-ph-soon { font-size: 12px; font-weight: 600; color: #8a8f99; }

/* ===== Mobile UX fixes (header logo / language / hero CTA / floating whatsapp) ===== */
@media (max-width: 640px) {
  /* header: flex layout so the logo keeps its natural aspect ratio (was squished by the 3-col grid),
     and the language switcher no longer sits on top of the logo. Language stays on tablet/desktop. */
  .nav-top-inner { display: flex !important; justify-content: space-between; align-items: center; gap: 8px; }
  .nav-top-start, #navLang { display: none !important; }  /* language globe + search — no room on phones */
  .nav-logo { justify-self: auto; flex: 0 0 auto; }
  .brand-img { height: 40px; }                   /* natural 440x184 ratio → ~96px wide, not stretched */
  .nav-cta { gap: 8px; flex: 0 1 auto; justify-content: flex-end; }
  /* the floating side WhatsApp is redundant with the bottom bar → hide it on phones */
  .wa-float { display: none !important; }
}
@media (max-width: 560px) {
  /* hero CTA: long Hebrew label was clipped by white-space:nowrap → let it wrap and fill the width */
  .btn-lg { padding: 15px 22px; font-size: 15px; }
  .hero-cta .btn, #quoteCtaBtn { white-space: normal; width: 100%; text-align: center; line-height: 1.3; }
}

/* uniform header logo */
.nav-logo .brand-img{max-height:40px!important;width:auto!important;object-fit:contain}
.footer-brand .brand-img{max-height:38px!important;width:auto!important}

/*WAVE2 v2 split-airy*/
:root{--display:"Assistant","Heebo",Arial,sans-serif;--body:"Assistant","Heebo",Arial,sans-serif;--radius:22px;--radius-sm:16px;--btn-radius:14px;}
.media-hero.home .mh-content h1,.hero-text h1{font-size:clamp(30px,3.7vw,50px)!important;font-weight:800;letter-spacing:-0.02em;}
.media-hero.home .mh-overlay{background:linear-gradient(180deg,rgba(12,12,14,.62),rgba(12,12,14,.30) 42%,rgba(12,12,14,.72))!important;}
.section{padding-block:clamp(84px,11vw,150px);}
.light-section{background:linear-gradient(180deg,var(--bg-1),var(--bg));}
.step,.value,.car,.post,.plan{border-radius:22px!important;box-shadow:0 30px 60px -34px rgba(20,20,40,.28)!important;border:1px solid var(--line-2)!important;}
.btn{font-weight:700;}
.btn-gold{box-shadow:0 16px 34px -14px rgba(var(--gold-rgb)/.6);}
.hero-search-wrap{border-radius:28px!important;}
.hero-trust .ht-ic{border-radius:14px;}
