/* ============================================================
   מוטורהאוס — עסקאות מימון לרכב
   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:    211;
  --gold:      #1560B0;
  --gold-deep: #114D8D;
  --gold-bright: #1B7BE1;
  --gold-rgb:  21 96 176;

  /* 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)); -webkit-backdrop-filter:blur(4px);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; }
/* על ההירו הכהה (תצלום + שכבת כהות) הכחול העמוק של המותג כמעט לא נקרא —
   "כחול על כהה". באזורים כהים בלבד מוחלף בגוון בהיר של אותו כחול. */
.media-hero .gold-text,
.media-hero .eyebrow,
.media-hero .hero-value b,
.dark-zone .gold-text { color: #8FC2FF; }
.media-hero .hero-value { border-inline-start-color: #8FC2FF; }
.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, .nav-mega:focus-within .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:focus-within .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;min-height:100dvh; 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); -webkit-backdrop-filter:blur(10px);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); -webkit-backdrop-filter:blur(8px);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); -webkit-backdrop-filter:blur(8px);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); -webkit-backdrop-filter:blur(8px);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; }

/* חיתוכי רכב על רקע לבן ולוגואים — לעולם לא נחתכים */
img[src*="/images/loan/"], img[src*="images/loan/"],
img[src*="brands-cdn"], .uc-ph-logo, .mega-logo img, .brand-logo img {
  object-fit: contain !important;
}

/* ---------- 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: 10px; margin-top: 14px; }
.footer-social a {
  width: 40px; height: 40px; margin-bottom: 0; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--ink-soft);
  transition: color .25s, background-color .25s, border-color .25s, translate .25s;
}
.footer-social a svg { width: 19px; height: 19px; }
.footer-social a:hover { color: #fff; background: var(--gold); border-color: var(--gold); translate: 0 -2px; }
.footer-waze {
  display: inline-flex !important; align-items: center; gap: 9px; margin-top: 4px; margin-bottom: 12px;
  padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink-soft); font-size: 14px; font-weight: 600;
  transition: color .25s, border-color .25s, background-color .25s;
}
.footer-waze svg { width: 17px; height: 17px; flex: none; }
.footer-waze:hover { color: var(--gold); border-color: var(--gold);
  background: color-mix(in oklab, var(--gold) 8%, transparent); }
.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%); }
/* בעמודים הפנימיים הטקסט יושב בצד ימין (RTL) — אבל שכבת הכהות
   בנויה 90deg, כלומר כהה משמאל ובהירה מימין, בדיוק מתחת לכותרת.
   כאן היא מתהפכת כדי שהכיתוב ישב תמיד על רקע כהה וייקרא. */
.media-hero.page .mh-overlay { background:
  linear-gradient(270deg, var(--bg) 4%, color-mix(in oklab, var(--bg) 92%, transparent) 46%, color-mix(in oklab, var(--bg) 62%, transparent) 76%, color-mix(in oklab, var(--bg) 45%, 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); -webkit-backdrop-filter:blur(10px);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); -webkit-backdrop-filter:blur(8px);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); -webkit-backdrop-filter:blur(8px);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); -webkit-backdrop-filter:blur(8px);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); -webkit-backdrop-filter:blur(6px);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); -webkit-backdrop-filter:blur(6px);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); -webkit-backdrop-filter:blur(8px);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, #1560B0); 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); -webkit-backdrop-filter:blur(6px);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); -webkit-backdrop-filter:blur(8px);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); -webkit-backdrop-filter:blur(20px);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)); -webkit-backdrop-filter:blur(20px) saturate(1.25);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; -webkit-backdrop-filter:blur(10px);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); -webkit-backdrop-filter:blur(12px);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 46%, color-mix(in oklab, var(--bg-card) 78%, 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); -webkit-backdrop-filter:blur(12px);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); -webkit-backdrop-filter:blur(6px);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); -webkit-backdrop-filter:blur(4px);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}


/*BASEFIX header spec v2*/
.nav{position:sticky!important;top:0!important}
.nav-bar-inner{height:52px!important}
.nav-links{gap:20px}
/* "כלים" dropdown — mirrors mega interaction */
.nav-tools{position:relative;display:flex;align-items:center}
.tools-trigger{display:inline-flex;align-items:center;gap:4px;font-size:14.5px;font-weight:600;cursor:pointer;background:none;border:0;color:inherit;font-family:inherit;padding:0;white-space:nowrap;transition:color .25s}
.tools-trigger .caret{font-size:16px;color:var(--gold);transition:transform .3s}
.nav-tools.open .tools-trigger,.tools-trigger.active,.tools-trigger:hover{color:var(--gold)}
.nav-tools.open .tools-trigger .caret{transform:rotate(180deg)}
.tools-panel{position:absolute;inset-block-start:calc(100% + 14px);inset-inline-start:50%;transform:translateX(50%) translateY(-6px);min-width:200px;background:#fff;color:var(--ink);border:1px solid rgba(0,0,0,.08);border-radius:12px;box-shadow:0 30px 70px -30px rgba(0,0,0,.4);padding:8px;opacity:0;visibility:hidden;transition:opacity .25s var(--ease),transform .25s var(--ease),visibility .25s;z-index:120}
.nav-tools.open .tools-panel{opacity:1;visibility:visible;transform:translateX(50%) translateY(0)}
.tools-panel a{display:block;padding:10px 14px;border-radius:8px;color:var(--ink);font-size:14.5px;font-weight:500;transition:background .2s,color .2s}
.tools-panel a:hover,.tools-panel a.active{background:var(--bg-1);color:var(--gold-deep)}
@media(max-width:1100px){.nav-tools{display:none}}
@media(prefers-reduced-motion:reduce){.nav *,.mega-panel,.tools-panel{transition:none!important;animation:none!important}}

/*FACTORY mono*/
:root{--f-ink:#1C2026;--f-soft:#6B7178;--f-line:rgba(28,32,38,.12);--f-line2:rgba(28,32,38,.06);--f-bar:#F4F5F7;--f-bg:#FFFFFF}

:root{--nav-h:74px;--nav-off:86px}
.nav{position:fixed!important;inset-block-start:0!important;inset-inline:0!important;background:#fff!important;border-bottom:1px solid var(--f-line)!important;box-shadow:none!important;transition:inset-block-start .42s var(--ease),box-shadow .42s var(--ease),border-color .42s var(--ease)}
.nav.nav-hidden{inset-block-start:calc(-1 * var(--nav-h) - 12px)!important}
.nav.scrolled{box-shadow:0 8px 26px -16px rgba(20,24,30,.32)!important;border-bottom-color:transparent!important}
.nav-mn .nav-bar{display:none!important}.nav-mn .nav-top{background:transparent!important}
.nav-mn .nav-top-inner{position:relative;display:flex!important;align-items:center;gap:14px;height:74px!important;max-width:1360px;margin-inline:auto;padding-inline:clamp(20px,3.2vw,46px);transition:height .42s var(--ease)}
.nav-mn .nav-logo{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);margin:0!important}
.nav-mn .nav-logo .brand-img{height:34px!important;transition:height .42s var(--ease)}
.nav-mn .nav-links-top{order:0;display:flex;align-items:center;gap:clamp(12px,1.5vw,26px);margin:0!important;flex-wrap:nowrap;white-space:nowrap;min-width:0}
.nav-mn .nav-top-start{order:1;display:flex;align-items:center;gap:8px;margin-inline-start:auto!important}
.nav-mn .nav-cta{order:2;display:flex;align-items:center;gap:9px;margin:0!important}
.nav.scrolled .nav-mn.nav-top-inner,.nav-mn.scrolled .nav-top-inner{height:64px!important}
.nav .nav-links a,.nav .mega-trigger,.nav .tools-trigger,.nav .nav-phone{color:var(--f-soft)!important}
.nav .burger{color:var(--f-ink)!important}
.nav-mn .nav-links a,.nav-mn .mega-trigger,.nav-mn .tools-trigger{font-size:14px!important;font-weight:600!important;letter-spacing:.02em;color:var(--f-soft)!important}
.nav-mn .nav-links a{position:relative;padding-block:6px}
.nav-mn .nav-links a::after{content:"";position:absolute;inset-block-end:-2px;inset-inline:0;height:1px;background:var(--gold);transform:scaleX(0);transform-origin:center;transition:transform .3s var(--ease)}
.nav-mn .nav-links a:hover::after,.nav-mn .nav-links a.active::after{transform:scaleX(1)}
.nav-mn .nav-links a:hover,.nav-mn .nav-links a.active,.nav-mn .mega-trigger.active,.nav-mn .nav-mega:hover .mega-trigger,.nav-mn .nav-tools.open .tools-trigger,.nav-mn .tools-trigger:hover{color:var(--gold-deep)!important}
.nav-mn .mega-trigger .caret,.nav-mn .tools-trigger .caret{color:var(--f-soft)!important}
.nav-search{background:transparent!important;border:1px solid var(--f-line)!important;border-radius:9px!important;transition:max-width .38s var(--ease)}
.nav-search input{color:var(--f-ink)!important}.nav-search input::placeholder{color:var(--f-soft)!important}.nav-search button{color:var(--f-soft)!important}
.nav-mn .nav-search{max-width:42px}.nav-mn .nav-search input{width:0;padding:0;opacity:0;transition:width .32s var(--ease),opacity .2s}
.nav-mn .nav-search:hover,.nav-mn .nav-search:focus-within{max-width:200px}
.nav-mn .nav-search:hover input,.nav-mn .nav-search:focus-within input{width:100%;padding:10px 4px;opacity:1}
.nav-lang-btn{background:transparent!important;border:1px solid var(--f-line)!important;color:var(--f-soft)!important;border-radius:9px!important}
.nav-phone-pill{background:transparent!important;border:1px solid var(--f-line)!important;color:var(--f-ink)!important;border-radius:9px!important;font-weight:600!important}
.nav-fav{background:transparent!important;border:1px solid var(--f-line)!important;color:var(--f-soft)!important;border-radius:9px!important}
.nav-fav:hover,.nav-fav.has-favs{border-color:var(--gold)!important;color:var(--gold-deep)!important}
.nav-meeting{background:var(--f-ink)!important;color:#fff!important;border:0!important;border-radius:9px!important;padding:11px 22px!important;font-weight:700!important;box-shadow:none!important;transition:background .25s,transform .25s}
.nav-meeting:hover{background:#000!important;color:#fff!important;transform:translateY(-1px)}
.nav-mn .tools-panel a:hover,.nav-mn .tools-panel a.active{background:var(--f-bar)!important;color:var(--gold-deep)!important}
.mega-panel{inset-block-start:74px!important}.nav-mn.scrolled .mega-panel{inset-block-start:64px!important}

.mega-panel{position:fixed!important;left:0!important;right:0!important;width:auto!important;max-width:none!important;margin:0!important;background:#fff!important;border:1px solid var(--f-line)!important;border-top:2px solid var(--gold)!important;border-radius:0 0 14px 14px!important;box-shadow:0 34px 74px -42px rgba(20,24,30,.4)!important;overflow:hidden!important}
.mega-inner{display:block!important;max-width:1240px!important;width:100%!important;margin-inline:auto!important;padding:0!important}
.mega-grid{display:grid!important;grid-template-columns:minmax(0,2.5fr) minmax(0,.9fr) minmax(0,.9fr)!important;gap:0!important;padding:0!important;align-items:stretch!important;width:100%!important}
.mega-col{padding:22px 26px!important;display:block!important}
.mega-col:not(.mega-brands){border-inline-start:1px solid var(--f-line2)!important;background:#FAFBFC}
.mega-h{font-family:var(--body)!important;color:var(--f-ink)!important;font-size:12px!important;font-weight:800!important;letter-spacing:.06em!important;text-transform:uppercase!important;border:0!important;padding:0 0 14px!important;margin-bottom:14px!important;position:relative}
.mega-h::after{content:"";position:absolute;inset-block-end:0;inset-inline-start:0;width:26px;height:2px;background:var(--gold);border-radius:2px}
.mega-brand-grid{grid-template-columns:repeat(5,1fr)!important;gap:5px!important}
.mega-brand-grid a{flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:5px!important;text-align:center!important;padding:9px 5px!important;border:1px solid transparent!important;border-radius:8px!important;background:transparent!important;transition:background .18s,border-color .18s!important}
.mega-brand-grid a:hover{background:var(--f-bar)!important;border-color:var(--f-line)!important;transform:none!important}
.mega-brand-grid .mega-logo{width:27px!important;height:27px!important}
.mega-brand-grid a .mega-name{flex:none!important;color:var(--f-soft)!important;font-weight:600!important;font-size:11px!important;line-height:1.2!important;white-space:normal!important;overflow:visible!important;text-overflow:clip!important;text-align:center!important;max-width:100%}
.mega-brand-grid a:hover .mega-name{color:var(--gold-deep)!important}
.mega-col:not(.mega-brands) > a:not(.mega-all):not(.mega-col-btn){display:flex!important;align-items:center!important;justify-content:space-between!important;border:0!important;border-radius:8px!important;padding:10px 12px!important;margin-bottom:1px!important;color:var(--f-ink)!important;font-size:14px!important;font-weight:500!important;transition:background .18s,color .18s,padding .18s}
.mega-col:not(.mega-brands) > a:not(.mega-all):not(.mega-col-btn)::after{content:"‹";color:#B9C0C8;font-size:16px;transition:color .2s,transform .2s}
.mega-col:not(.mega-brands) > a:not(.mega-all):not(.mega-col-btn):hover{background:var(--f-bar)!important;color:var(--gold-deep)!important;padding-inline-end:15px!important}
.mega-col:not(.mega-brands) > a:hover::after{color:var(--gold);transform:translateX(-3px)}
.mega-all{color:var(--gold-deep)!important;font-weight:700!important;font-size:12.5px!important;margin-top:16px!important;padding-top:13px!important;border-top:1px solid var(--f-line2)!important;border-radius:0!important}
.mega-all:hover{color:var(--gold)!important;opacity:1!important}
.mega-col-btn{display:inline-flex!important;align-items:center;justify-content:center;background:var(--gold)!important;color:#fff!important;border-radius:9px!important;padding:13px 26px!important;margin-top:16px!important;font-weight:700!important;font-size:14px!important;width:100%;box-shadow:none!important}
.mega-col-btn:hover{background:var(--gold-deep)!important;color:#fff!important;padding-inline-start:26px!important}
/* הכפתור יושב בתוך .nav .nav-links, ולכן הכלל האפור שם (0,2,1 + important)
   גבר על .mega-col-btn (0,1,0) והכיתוב יצא אפור על כחול. מעלים ספציפיות. */
.nav .nav-links a.mega-col-btn,
.nav-mn .nav-links a.mega-col-btn,
.mega-col a.mega-col-btn{color:#fff!important}
.nav .nav-links a.mega-col-btn:hover,
.nav-mn .nav-links a.mega-col-btn:hover,
.mega-col a.mega-col-btn:hover{color:#fff!important}
.mega-promo{display:none!important}
@media(max-width:1180px){.mega-grid{grid-template-columns:1fr!important}.mega-col:not(.mega-brands){border-inline-start:0!important;border-top:1px solid var(--f-line2)!important;background:#fff}}
.mega-h{letter-spacing:.09em!important}
@media(max-width:1160px){.nav-mn .nav-links-top{display:none!important}}
@media(prefers-reduced-motion:reduce){.nav,.nav *{transition:none!important}}





/*LOGOFIX no chip · dark logo · mono clearance*/
.nav .nav-logo{background:none!important;box-shadow:none!important;padding:0!important;border-radius:0!important}
.nav .nav-logo .brand-img{height:46px!important;width:auto!important}
.nav-mn .nav-links-top{gap:clamp(9px,1vw,15px)!important}
.nav-mn .nav-links a,.nav-mn .mega-trigger,.nav-mn .tools-trigger{font-size:13.5px!important}


/*CINE — motorhouse cinematic cover (built fresh, royal blue #1560B0)*/
.cine-hero{position:relative;min-height:100dvh;display:flex;align-items:center;justify-content:flex-start;overflow:hidden;isolation:isolate;padding:clamp(116px,15vh,166px) clamp(24px,7vw,96px) clamp(140px,20vh,180px)}
.cine-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-3}
.cine-scrim{position:absolute;inset:0;z-index:-2;background:linear-gradient(90deg,rgba(6,12,22,.40) 0%,rgba(6,12,22,.66) 52%,rgba(6,12,22,.90) 100%),linear-gradient(180deg,rgba(6,12,22,.25) 40%,rgba(5,10,18,.82) 100%)}
.cine-aura{position:absolute;inset:0;z-index:-1;pointer-events:none;background:radial-gradient(44% 42% at 86% 24%,rgba(27,123,225,.30),transparent 70%),radial-gradient(40% 40% at 14% 84%,rgba(21,96,176,.15),transparent 70%);animation:cineAura 18s ease-in-out infinite alternate}
@keyframes cineAura{from{transform:translate3d(-2%,0,0) scale(1);opacity:.9}to{transform:translate3d(3%,-2%,0) scale(1.08);opacity:1}}
.cover-inner{position:relative;z-index:2;width:min(640px,100%);display:flex;flex-direction:column;align-items:flex-start;gap:clamp(15px,2.2vh,24px);text-align:start}
.cine-eyebrow{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:11.5px;letter-spacing:.22em;text-transform:uppercase;color:#8CC3F5;padding:7px 15px;border:1px solid rgba(27,123,225,.45);border-radius:999px;background:rgba(27,123,225,.11);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}
.cine-title{margin:0;font-family:var(--display);font-weight:800;line-height:1.04;letter-spacing:-.018em;color:#fff;font-size:clamp(38px,5.8vw,74px);text-shadow:0 4px 46px rgba(0,0,0,.6)}
.cine-title .gold-text{color:#4FA2EE;text-shadow:0 0 46px rgba(27,123,225,.65)}
.cine-lead{margin:0;max-width:540px;font-size:clamp(15px,1.4vw,18.5px);line-height:1.6;color:rgba(255,255,255,.85)}
.cine-command{position:relative;z-index:5;width:min(580px,100%);display:flex;align-items:center;gap:12px;padding:8px 20px 8px 8px;border-radius:999px;background:linear-gradient(180deg,rgba(255,255,255,.14),rgba(255,255,255,.06));border:1px solid rgba(255,255,255,.22);-webkit-backdrop-filter:blur(20px) saturate(1.3);backdrop-filter:blur(20px) saturate(1.3);box-shadow:0 30px 70px -30px rgba(0,0,0,.7),0 0 46px -22px rgba(27,123,225,.5),inset 0 1px 0 rgba(255,255,255,.22);transition:border-color .3s,box-shadow .3s}
.cine-command:focus-within{z-index:40;border-color:rgba(79,162,238,.72);box-shadow:0 30px 70px -30px rgba(0,0,0,.7),0 0 62px -20px rgba(27,123,225,.82),inset 0 1px 0 rgba(255,255,255,.28)}
.cc-ic{width:22px;height:22px;flex-shrink:0;color:#8CC3F5}.cc-ic svg{width:100%;height:100%;display:block}
.cine-input{flex:1;min-width:0;background:transparent;border:0;outline:none;color:#fff;font-size:16px;padding:13px 0}
.cine-input::placeholder{color:rgba(255,255,255,.55)}
.cc-kbd{flex-shrink:0;font-family:var(--mono);font-size:12px;color:rgba(255,255,255,.6);border:1px solid rgba(255,255,255,.22);border-radius:8px;padding:5px 9px;background:rgba(255,255,255,.06)}
.cine-command .instant-results{position:absolute;top:calc(100% + 12px);inset-inline:0;z-index:20;text-align:start;border-radius:18px;overflow:hidden auto;max-height:0;opacity:0;pointer-events:none;background:rgba(8,15,26,.96);-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);border:1px solid rgba(27,123,225,.28);box-shadow:0 40px 80px -30px rgba(0,0,0,.9);transition:opacity .28s}
.cine-command .instant-results.show{max-height:min(52vh,440px);opacity:1;pointer-events:auto;padding:8px}
.cine-command .ir-row{color:#fff;border-radius:12px}.cine-command .ir-row:hover{background:rgba(27,123,225,.18)}
.cine-command .ir-meta b{color:#fff}.cine-command .ir-meta span{color:rgba(255,255,255,.6)}
.cine-command .ir-price{color:#4FA2EE}
.cine-command .ir-empty{color:rgba(255,255,255,.72);padding:15px}.cine-command .ir-empty a{color:#4FA2EE}
.cine-actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-top:4px}
.cine-cta{position:relative;overflow:hidden;display:inline-flex;align-items:center;gap:12px;font-family:var(--display);font-weight:700;font-size:16px;color:#fff;background:linear-gradient(180deg,#1B7BE1,#114D8D);border:0;border-radius:999px;padding:15px 26px 15px 15px;cursor:pointer;box-shadow:0 18px 40px -16px rgba(21,96,176,.85);transition:transform .4s cubic-bezier(.16,1,.3,1),box-shadow .4s}
.cine-cta:hover{transform:translateY(-2px);box-shadow:0 24px 52px -16px rgba(21,96,176,1)}
.cine-cta:active{transform:scale(.98)}
.cine-cta .cta-ic{width:30px;height:30px;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.16);font-size:19px;line-height:1;transition:transform .4s cubic-bezier(.16,1,.3,1)}
.cine-cta:hover .cta-ic{transform:translateX(-4px)}
.cine-cta::after{content:"";position:absolute;inset:-2px;transform:translateX(-140%) skewX(-18deg);background:linear-gradient(100deg,transparent 30%,rgba(255,255,255,.42),transparent 70%);transition:transform .75s cubic-bezier(.16,1,.3,1)}
.cine-cta:hover::after{transform:translateX(140%) skewX(-18deg)}
.cine-ghost{display:inline-flex;align-items:center;gap:6px;color:#fff;font-weight:600;text-decoration:none;padding:14px 8px;border-bottom:1px solid transparent;transition:border-color .3s,color .3s}
.cine-ghost:hover{color:#8CC3F5;border-color:#8CC3F5}
/* full-width glass stats rail pinned to bottom (signature) */
.cover-rail{position:absolute;inset-block-end:0;inset-inline:0;z-index:3;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:clamp(16px,3vw,40px);padding:20px clamp(24px,7vw,96px);background:linear-gradient(180deg,rgba(9,16,28,.30),rgba(7,12,22,.72));-webkit-backdrop-filter:blur(16px) saturate(1.2);backdrop-filter:blur(16px) saturate(1.2);border-top:1px solid rgba(255,255,255,.12)}
.cr-item{display:flex;flex-direction:column;gap:2px;line-height:1.15;text-align:center}
.cr-item b{font-family:var(--display);font-weight:800;font-size:clamp(18px,1.9vw,23px);color:#fff;display:inline-flex;align-items:center;justify-content:center;gap:4px}
.cr-item b i{color:#4FA2EE;font-style:normal;font-size:.85em;text-shadow:0 0 14px rgba(27,123,225,.7)}
.cr-item span{font-size:12.5px;color:rgba(255,255,255,.62)}
.cr-sep{width:1px;height:34px;background:linear-gradient(180deg,transparent,rgba(255,255,255,.22),transparent)}
.cine-scroll{position:absolute;inset-block-end:96px;inset-inline-start:50%;transform:translateX(-50%);z-index:4;display:flex;flex-direction:column;align-items:center;gap:7px;color:rgba(255,255,255,.6);font-family:var(--mono);font-size:10.5px;letter-spacing:.2em;text-decoration:none;text-transform:uppercase}
.cine-scroll i{width:1px;height:30px;background:linear-gradient(180deg,#4FA2EE,transparent);position:relative;overflow:hidden}
.cine-scroll i::after{content:"";position:absolute;inset-inline:0;top:0;height:10px;background:#4FA2EE;animation:cineScroll 1.9s cubic-bezier(.16,1,.3,1) infinite}
@keyframes cineScroll{0%{transform:translateY(-12px);opacity:0}40%{opacity:1}100%{transform:translateY(30px);opacity:0}}
@media(max-width:820px){.cover-inner{width:100%}.cine-scroll{display:none}.cover-rail{gap:14px 22px;padding:16px 20px}.cr-sep{display:none}.cr-item{flex:0 0 auto}}
@media(max-width:720px){.cine-hero{padding-bottom:clamp(150px,24vh,190px)}.cine-command{padding-inline:16px 8px}.cc-kbd{display:none}.cine-actions{flex-direction:column;gap:12px;align-items:stretch}.cine-cta{width:100%;justify-content:center}.cine-ghost{justify-content:center}}
@media(prefers-reduced-motion:reduce){.cine-aura,.cine-scroll i::after{animation:none!important}}

/*MHLUX — motorhouse $1M elevation pass*/
@property --mhang{syntax:"<angle>";initial-value:0deg;inherits:false}
/* slow ken-burns life on the video */
.cine-video{animation:mhKen 26s ease-in-out infinite alternate;will-change:transform}
@keyframes mhKen{from{transform:scale(1.03)}to{transform:scale(1.13) translateY(-1.2%)}}
/* deeper cinematic scrim + edge vignette */
.cine-scrim{background:linear-gradient(90deg,rgba(6,12,22,.36) 0%,rgba(6,12,22,.62) 52%,rgba(5,10,18,.9) 100%),linear-gradient(180deg,rgba(6,12,22,.20) 34%,rgba(4,8,15,.88) 100%),radial-gradient(132% 122% at 50% 42%,transparent 50%,rgba(2,5,10,.66) 100%)}
/* brighter aura core */
.cine-aura{background:radial-gradient(40% 40% at 84% 24%,rgba(46,155,230,.38),transparent 66%),radial-gradient(42% 42% at 14% 84%,rgba(21,96,176,.18),transparent 70%)}
/* film grain overlay */
.cine-grain{position:absolute;inset:0;z-index:6;pointer-events:none;opacity:.07;mix-blend-mode:overlay;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMjAnIGhlaWdodD0nMTIwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzEwMCUnIGhlaWdodD0nMTAwJScgZmlsdGVyPSd1cmwoI24pJy8+PC9zdmc+");background-size:160px 160px}
/* pulsing live dot in eyebrow */
.cine-eyebrow::before{content:"";width:6px;height:6px;border-radius:50%;background:#4FA2EE;box-shadow:0 0 10px #4FA2EE;animation:mhPulse 2.2s ease-in-out infinite}
@keyframes mhPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.35;transform:scale(.6)}}
/* headline: bigger, gradient shine on white, deeper blue glow */
.cine-title{font-size:clamp(40px,6vw,80px);letter-spacing:-.022em;background:linear-gradient(176deg,#fff 42%,#CFE1F4);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.cine-title .gold-text{-webkit-text-fill-color:#4FA2EE;color:#4FA2EE;text-shadow:0 0 50px rgba(27,123,225,.72)}
/* rotating conic glow border on the command bar */
.cine-command::before{content:"";position:absolute;inset:-1.5px;border-radius:inherit;padding:1.5px;background:conic-gradient(from var(--mhang),transparent 0deg,rgba(27,123,225,.12) 42deg,#1B7BE1 92deg,#8CC3F5 132deg,rgba(27,123,225,.12) 182deg,transparent 262deg,transparent 360deg);-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;animation:mhSpin 7s linear infinite;pointer-events:none;opacity:.72}
.cine-command:focus-within::before{opacity:1;animation-duration:3.4s}
@keyframes mhSpin{to{--mhang:360deg}}
/* CTA: inner bezel ring for depth */
.cine-cta{box-shadow:0 18px 44px -14px rgba(27,123,225,.92),inset 0 0 0 1px rgba(140,195,245,.28),inset 0 1px 0 rgba(255,255,255,.25)}
/* elevated bottom rail: flowing hairline + gradient numbers */
.cover-rail{background:linear-gradient(180deg,rgba(9,16,28,.08),rgba(5,10,18,.80));border-top:0}
.cover-rail::before{content:"";position:absolute;top:0;inset-inline:0;height:1px;background:linear-gradient(90deg,transparent,rgba(79,162,238,.85) 28%,rgba(140,195,245,.98) 50%,rgba(79,162,238,.85) 72%,transparent);background-size:220% 100%;animation:mhFlow 9s linear infinite}
@keyframes mhFlow{to{background-position:-220% 0}}
.cr-item b{background:linear-gradient(180deg,#fff,#9BC8F1);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.cr-item b i{-webkit-text-fill-color:#4FA2EE}
@media(prefers-reduced-motion:reduce){.cine-video,.cine-command::before,.cover-rail::before,.cine-eyebrow::before{animation:none!important}}

/*MHRAILFIX — legible bottom rail*/
/* darker base behind the rail so text never sits on bright video */
.cine-hero.cover::before{content:"";position:absolute;inset-block-end:0;inset-inline:0;height:210px;z-index:0;pointer-events:none;background:linear-gradient(180deg,transparent,rgba(3,7,13,.88) 78%,rgba(2,5,10,.96))}
/* solid dark glass rail */
.cover-rail{background:linear-gradient(180deg,rgba(6,11,20,.72),rgba(3,7,13,.95))!important;-webkit-backdrop-filter:blur(22px) saturate(1.2);backdrop-filter:blur(22px) saturate(1.2);padding-block:22px}
.cover-rail .cr-item b{filter:drop-shadow(0 1px 8px rgba(0,0,0,.6))}
.cover-rail .cr-item span{color:rgba(255,255,255,.85);text-shadow:0 1px 6px rgba(0,0,0,.7)}
.cover-rail .cr-sep{height:38px;background:linear-gradient(180deg,transparent,rgba(140,195,245,.5),transparent)}


/*MHFLOW — compact content so the in-flow rail stays visible above fixed bottom UI*/
.cine-hero.cover{display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;padding:0 0 clamp(74px,9vh,102px)}
.cover-inner{flex:1 1 auto;align-self:flex-start;justify-content:center;box-sizing:border-box;width:min(780px,100%);margin:0;gap:clamp(12px,1.7vh,19px);padding:clamp(102px,12.5vh,142px) clamp(24px,7vw,96px) clamp(14px,2vh,24px) 20px}
.cine-hero.cover .cine-title{font-size:clamp(33px,4.5vw,60px);line-height:1.05}
.cine-hero.cover .cine-lead{max-width:520px}
.cover-rail{position:relative;align-self:stretch;inset:auto;width:100%;margin:0}
.cine-hero.cover::before{display:none}
.cine-hero.cover .cine-scroll{display:none}

/*LOGOSZ*/
header#nav .nav-logo .brand-img{height:52px!important;max-height:52px!important;width:auto!important;object-fit:contain}
header#nav .nav-logo{display:flex;align-items:center}
/*LOGOSZ-END*/

/*HOME-motorhouse*/
/* ---- premium home body (shared skeleton, brand motif: speed) ---- */
.hm-ben{padding-block:clamp(26px,4vh,44px)!important}
.hm-ben-in{position:relative;display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(10px,1.4vw,18px)}
.hm-ben .hm-b{display:flex;align-items:center;gap:12px;padding:15px 17px;border-radius:14px;background:rgba(var(--gold-rgb),.06);border:1px solid rgba(var(--gold-rgb),.16);transition:transform .45s cubic-bezier(.16,1,.3,1),box-shadow .45s}
.hm-ben .hm-b:hover{transform:translateY(-3px);box-shadow:0 16px 34px -18px rgba(var(--gold-rgb),.55)}
.hm-ben .hm-b i{display:grid;place-items:center;width:26px;height:26px;flex-shrink:0;border-radius:50%;background:var(--gold);color:#fff;font-style:normal;font-size:12px;font-weight:900}
.hm-ben .hm-b b{display:block;font-size:14px;line-height:1.25;color:var(--ink,#1a1a1a)}
.hm-ben .hm-b span{display:block;font-size:11.5px;color:var(--ink-soft,#666);margin-top:2px}
.hm-ben .is-hero{background:linear-gradient(135deg,rgba(var(--gold-rgb),.16),rgba(var(--gold-rgb),.05));border-color:rgba(var(--gold-rgb),.45);box-shadow:0 14px 34px -18px rgba(var(--gold-rgb),.5)}
.hm-ben .is-hero i{box-shadow:0 0 0 5px rgba(var(--gold-rgb),.16)}
/* calculator */
.hm-calc{position:relative}
.hm-calc-box{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(22px,3vw,44px);margin-top:clamp(28px,4vh,44px);padding:clamp(22px,3vw,38px);border-radius:22px;background:linear-gradient(160deg,rgba(var(--gold-rgb),.07),rgba(var(--gold-rgb),.02));border:1px solid rgba(var(--gold-rgb),.22);box-shadow:0 34px 80px -44px rgba(0,0,0,.35),inset 0 1px 0 rgba(255,255,255,.5)}
.hm-sliders{display:flex;flex-direction:column;gap:clamp(14px,2vh,20px)}
.hm-sl{display:flex;flex-direction:column;gap:8px}
.hm-sl-top{display:flex;align-items:baseline;justify-content:space-between;gap:12px}
.hm-sl-top b{font-size:13.5px;color:var(--ink,#1a1a1a)}
.hm-sl-top em{font-style:normal;font-weight:800;font-size:14px;color:var(--gold-deep)}
.hm-sl input[type=range]{-webkit-appearance:none;appearance:none;width:100%;height:6px;border-radius:99px;background:linear-gradient(90deg,var(--gold) 0%,rgba(var(--gold-rgb),.18) 0%);background:rgba(var(--gold-rgb),.16);outline:none}
.hm-sl input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:20px;height:20px;border-radius:50%;background:var(--gold);border:3px solid #fff;box-shadow:0 4px 14px rgba(var(--gold-rgb),.6);cursor:pointer;transition:transform .2s}
.hm-sl input[type=range]::-webkit-slider-thumb:hover{transform:scale(1.15)}
.hm-out{display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;gap:8px;padding:clamp(18px,2.4vw,28px);border-radius:16px;background:var(--gold);background:linear-gradient(165deg,var(--gold),var(--gold-deep));color:#fff;box-shadow:0 26px 60px -26px rgba(var(--gold-rgb),.8)}
.hm-out-l{font-size:12.5px;letter-spacing:.06em;opacity:.85}
.hm-out-n{display:flex;align-items:baseline;gap:8px}
.hm-out-n b{font-family:var(--display);font-size:clamp(42px,4.6vw,58px);line-height:1;font-weight:800;font-variant-numeric:tabular-nums;color:#fff}
.hm-out-n span{font-size:14px;opacity:.85}
.hm-out-sub{font-size:12px;opacity:.8}
.hm-out-cta{margin-top:10px;background:#fff!important;color:var(--gold-deep)!important;border:0!important;font-weight:800;box-shadow:0 14px 30px -12px rgba(0,0,0,.4)}
.hm-out-cta:hover{transform:translateY(-2px)}
.hm-disc{margin:8px 0 0;font-size:10.5px;line-height:1.5;opacity:.7}
/* calc layout variants */
.hm-calc-console .hm-calc-box{grid-template-columns:1fr;max-width:860px;margin-inline:auto}
.hm-calc-console .hm-out{flex-direction:row;flex-wrap:wrap;justify-content:space-between;text-align:start}
.hm-calc-console .hm-out .hm-disc{flex-basis:100%}
.hm-calc-plate .hm-calc-box{grid-template-columns:1fr;max-width:680px;margin-inline:auto;text-align:center}
.hm-calc-board .hm-calc-box{grid-template-columns:1fr 1fr}
.hm-calc-ticket .hm-calc-box{position:relative}
.hm-calc-ticket .hm-calc-box::before,.hm-calc-ticket .hm-calc-box::after{content:"";position:absolute;width:22px;height:22px;border-radius:50%;background:var(--page-bg,#fff);top:calc(50% - 11px)}
.hm-calc-ticket .hm-calc-box::before{inset-inline-start:-11px}
.hm-calc-ticket .hm-calc-box::after{inset-inline-end:-11px}
/* benefits variants */
.hm-ben-chips .hm-ben-in{display:flex;flex-wrap:wrap;justify-content:center}
.hm-ben-chips .hm-b{border-radius:999px;padding:11px 18px}
.hm-ben-chips .hm-b span{display:none}
.hm-ben-rail .hm-ben-in{grid-template-columns:repeat(4,1fr)}
.hm-ben-cells .hm-ben-in{gap:1px;background:rgba(var(--gold-rgb),.22);border-radius:14px;overflow:hidden}
.hm-ben-cells .hm-b{border-radius:0;border:0;background:var(--page-bg,#fff);margin:0}
/* section polish */
.section .h-sec{letter-spacing:-.015em}
.lead-section{background:linear-gradient(160deg,var(--gold-deep),var(--gold))}
.h-sec .gold-text{font-style:italic}
.hm-ben-in{transform:skewX(-2deg)}.hm-ben .hm-b>*{transform:skewX(2deg)}
@media(max-width:960px){.hm-ben-in{grid-template-columns:repeat(2,1fr)}.hm-calc-box{grid-template-columns:1fr}}
@media(max-width:560px){.hm-ben-in{grid-template-columns:1fr}.hm-ben-chips .hm-ben-in{flex-direction:column}.hm-out-n b{font-size:38px}}
@media(prefers-reduced-motion:reduce){.hm-calc-box::before{animation:none!important}}
/*HOME-END*/

/*MH*/
.mh{--onyx:#0A1322;--onyx2:#0E1B31;--marble:#F5F8FC;--mink:#10151D;--msoft:#5C6674;--mline:rgba(16,21,29,.1)}
.mh .wrap{max-width:1240px;margin-inline:auto;padding-inline:clamp(18px,4vw,40px)}
.mh-h{font-family:var(--display);font-weight:800;font-size:clamp(30px,4vw,52px);letter-spacing:-.02em;color:var(--mink);margin:0}
.mh-h-onyx{color:#fff}
.mh-kick{font-family:var(--mono);font-size:11px;letter-spacing:.3em;color:var(--gold-bright);text-transform:uppercase}

/* == DESK: concierge (onyx) == */
.mh-desk{background:linear-gradient(180deg,#0A1322,#0C1728);padding-block:clamp(70px,10vh,120px);border-bottom:1px solid rgba(255,255,255,.06)}
.mh-desk-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(30px,4vw,70px);align-items:center}
.mh-desk-aside .mh-h1{font-family:var(--display);font-weight:800;font-size:clamp(40px,5.6vw,76px);line-height:1.02;letter-spacing:-.025em;color:#fff;margin:18px 0 0}
.mh-desk-aside .mh-h1 i{font-style:italic;color:var(--gold-bright)}
.mh-lead{font-size:clamp(15px,1.3vw,17.5px);line-height:1.7;color:rgba(255,255,255,.66);max-width:46ch;margin:22px 0 0}
.mh-phone{display:inline-block;margin-top:26px;font-family:var(--display);font-weight:800;font-size:22px;color:#fff;text-decoration:none;border-bottom:2px solid var(--gold-bright);padding-bottom:4px;transition:color .3s}
.mh-phone:hover{color:var(--gold-bright)}
.mh-desk-card{background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.12);border-radius:24px;padding:clamp(24px,2.6vw,38px);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);box-shadow:0 40px 90px -40px rgba(0,0,0,.6)}
.mh-desk-card .qc-grid{display:flex;flex-direction:column;gap:12px}
.mh-desk-card input[type=text],.mh-desk-card input[type=tel],.mh-desk-card input[type=email]{width:100%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);border-radius:13px;color:#fff;padding:15px 16px;font-size:15px;transition:border-color .3s}
.mh-desk-card input::placeholder{color:rgba(255,255,255,.45)}
.mh-desk-card input:focus{outline:none;border-color:var(--gold-bright)}
.mh-desk-card .qc-submit{width:100%;margin-top:6px;font-family:var(--display);font-weight:800;font-size:16px;color:#fff;background:linear-gradient(180deg,var(--gold-bright),var(--gold));border:0;border-radius:999px;padding:16px;cursor:pointer;transition:transform .35s cubic-bezier(.16,1,.3,1),box-shadow .35s}
.mh-desk-card .qc-submit:hover{transform:translateY(-2px);box-shadow:0 18px 40px -14px rgba(27,123,225,.6)}
.mh-desk-card .qc-consent{display:flex;align-items:center;gap:8px;margin-top:14px;font-size:11px;line-height:1.45;color:rgba(255,255,255,.55);white-space:nowrap;overflow:hidden}
.mh-desk-card .qc-consent a{color:var(--gold-bright)}
.mh-desk-card #qcConsent{width:15px;height:15px;flex:none;accent-color:var(--gold-bright)}
.mh-desk-card .qc-success{color:#7FD99A;margin-top:12px;display:none}
.mh-desk-card .qc-success.show{display:block}

/* == BEN: ledger strip (onyx) == */
.mh-ben{background:#0C1728;padding-block:clamp(26px,3.4vh,40px);border-bottom:1px solid rgba(255,255,255,.06)}
.mh-ben-row{display:grid;grid-template-columns:repeat(4,1fr)}
.mh-ben-i{padding-inline:clamp(14px,2vw,30px);border-inline-start:1px solid rgba(255,255,255,.1)}
.mh-ben-i:first-child{border-inline-start:0;padding-inline-start:0}
.mh-ben-i b{display:block;font-family:var(--display);font-weight:800;font-size:15.5px;color:#fff}
.mh-ben-i span{display:block;margin-top:4px;font-size:12.5px;color:rgba(255,255,255,.5)}

/* == COLLECTION: staggered gallery wall (marble) == */
.mh-collection{background:var(--marble);padding-block:clamp(70px,9vh,110px)}
.mh-sec-head{display:flex;align-items:baseline;justify-content:space-between;gap:18px;margin-bottom:clamp(36px,5vh,54px)}
.mh-more{font-weight:700;font-size:14.5px;color:var(--gold);text-decoration:none;border-bottom:1px solid transparent;transition:border-color .3s}
.mh-more:hover{border-color:var(--gold)}
.mh-collection .gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(18px,2vw,28px);align-items:start}
.mh-collection .car{position:relative;display:flex;flex-direction:column;background:#fff;border:1px solid var(--mline);border-radius:20px;overflow:hidden;box-shadow:none;transition:transform .55s cubic-bezier(.16,1,.3,1),box-shadow .55s,border-color .4s}
.mh-collection .car:nth-child(3n+2){margin-top:34px}
.mh-collection .car:hover{transform:translateY(-6px);border-color:rgba(21,96,176,.4);box-shadow:0 34px 70px -34px rgba(10,19,34,.4)}

.mh-collection .car::after{content:"";position:absolute;inset-inline:0;bottom:0;height:3px;background:linear-gradient(90deg,transparent,var(--gold-bright),transparent);opacity:0;transition:opacity .45s}
.mh-collection .car:hover::after{opacity:1}
.mh-collection .car .car-compare,.mh-collection .car .car-fast,.mh-collection .car .car-logo-badge{display:none}
.mh-collection .car .car-badge{position:absolute;top:14px;inset-inline-start:14px;background:var(--onyx);color:#fff;font-weight:800;font-size:11px;border:0;border-radius:999px;padding:6px 12px;z-index:2}
.mh-collection .car .car-ph{position:relative;height:200px;display:flex;align-items:center;justify-content:center;padding:20px 22px 6px;background:radial-gradient(85% 60% at 50% 88%,rgba(21,96,176,.12),transparent 72%),linear-gradient(180deg,#FBFDFF,#EFF4FA)}
.mh-collection .car .car-ph::after{content:"";position:absolute;bottom:16px;left:50%;transform:translateX(-50%);width:60%;height:14px;border-radius:50%;background:radial-gradient(50% 50% at 50% 50%,rgba(10,19,34,.22),transparent 70%)}
.mh-collection .car .car-ph img{position:relative;z-index:1;width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply;transition:transform .7s cubic-bezier(.16,1,.3,1)}
.mh-collection .car:hover .car-ph img{transform:translateY(-6px) scale(1.04)}
.mh-collection .car .car-body{display:flex;flex-direction:column;flex:1;padding:16px 20px 20px}
.mh-collection .car .car-tier{font-family:var(--mono);font-size:10px;letter-spacing:.22em;text-transform:uppercase;color:var(--gold)}
.mh-collection .car h3{font-size:18px;letter-spacing:-.01em;color:var(--mink);margin:5px 0 7px}
.mh-collection .car .car-spec{font-size:12.5px;color:var(--msoft)}
.mh-collection .car .car-price-row,.mh-collection .car .car-monthly{border:0}
.mh-collection .car .car-monthly b,.mh-collection .car .price-main b{font-family:var(--display);font-size:21px;color:var(--mink)}
.mh-collection .car .car-cta-main,.mh-collection .car a.btn{margin-top:auto;display:flex;align-items:center;justify-content:center;font-family:var(--display);font-weight:800;font-size:14px;color:#fff;background:linear-gradient(180deg,var(--gold-bright),var(--gold));border:0;border-radius:13px;padding:13px 16px;text-decoration:none;transition:transform .35s cubic-bezier(.16,1,.3,1),box-shadow .35s}
.mh-collection .car .car-cta-main:hover,.mh-collection .car a.btn:hover{transform:translateY(-2px);box-shadow:0 14px 30px -12px rgba(27,123,225,.7)}

/* == PRESS (marble) == */
.mh-press{background:var(--marble);padding-block:0 clamp(60px,8vh,90px)}
.mh-press-t{text-align:center;font-family:var(--mono);font-size:11px;letter-spacing:.3em;color:var(--msoft);text-transform:uppercase;margin:0 0 26px}
.mh-press .press-strip{display:grid;grid-template-columns:repeat(5,1fr);gap:0;border-block:1px solid var(--mline)}
.mh-press .press-item{display:flex;flex-direction:column;align-items:center;gap:12px;padding:26px 18px;border-inline-start:1px solid var(--mline);margin:0}
.mh-press .press-item:first-child{border-inline-start:0}
.mh-press .press-imgwrap{display:flex;align-items:center;height:32px}
.mh-press .press-img{max-height:28px;max-width:120px;width:auto;object-fit:contain;filter:grayscale(1);opacity:.7;transition:filter .35s,opacity .35s}
.mh-press .press-img[src*="mako"]{background:#000;border-radius:6px;padding:3px 8px}
.mh-press .press-item:hover .press-img{filter:none;opacity:1}
.mh-press .press-quote{font-size:12px;line-height:1.55;color:var(--msoft);text-align:center;margin:0;max-width:200px}
.mh-press .press-logo{font-weight:800;color:var(--mink)}

/* == CINEMA (onyx) == */
.mh-cinema{background:linear-gradient(180deg,#0A1322,#0C1728);padding-block:clamp(70px,9vh,110px) clamp(40px,5vh,60px);text-align:center}
.mh-sub-onyx{color:rgba(255,255,255,.55);font-size:15px;margin:12px 0 0}
.mh-cinema .video-box{margin:clamp(30px,4vh,46px) auto 0!important;max-width:980px;border-radius:24px;overflow:hidden;border:1px solid rgba(255,255,255,.12);box-shadow:0 60px 120px -50px rgba(27,123,225,.35)}

/* == SCREENING: customers (onyx) == */
.mh-screening{background:#0C1728;padding-block:clamp(40px,5vh,60px) clamp(70px,9vh,110px)}
.mh-screening .wrap:last-child{position:relative;margin-top:clamp(30px,4vh,46px)}
.mh-screening .cmarquee{margin-top:clamp(26px,3.4vh,40px);-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.mh-screening .vtest{background:transparent;border:0;box-shadow:none}
.mh-screening .vtest-slide{display:grid;grid-template-columns:minmax(230px,290px) 1fr;align-items:stretch;gap:0;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.12);border-radius:24px;overflow:hidden}
.mh-screening .vtest-media{position:relative;background:#060B14;min-height:400px}
.mh-screening .vtest-media video,.mh-screening .vtest-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.mh-screening .vtest-body{display:flex;flex-direction:column;justify-content:center;padding:clamp(24px,3vw,42px)}
.mh-screening .vtest-quote{font-size:clamp(17px,1.6vw,22px);line-height:1.55;color:#fff;font-weight:600}
.mh-screening .vtest-name{color:#fff;font-weight:800}
.mh-screening .vtest-car{color:var(--gold-bright);font-weight:600}
.mh-screening .vtest-nav{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:46px;height:46px;border-radius:50%;border:1px solid rgba(255,255,255,.25);background:rgba(10,19,34,.6);color:#fff;font-size:22px;cursor:pointer;transition:background .3s,border-color .3s}
.mh-screening .vtest-nav:hover{background:var(--gold);border-color:transparent}
.mh-screening .vtest-nav.prev{inset-inline-start:2px}
.mh-screening .vtest-nav.next{inset-inline-end:2px}
.mh-screening .vtest-dots button{background:rgba(255,255,255,.25)}
.mh-screening .vtest-dots button.active{background:var(--gold-bright)}

/* == BRANDS (marble) == */
.mh-brands{background:var(--marble);padding-block:clamp(70px,9vh,100px);text-align:center}
.mh-brands .brands-strip{margin-top:clamp(30px,4vh,44px)}

/* == CALC (marble, split) == */
.mh-calc{background:linear-gradient(180deg,var(--marble),#EDF2F9);padding-block:clamp(70px,9vh,110px)}
.mh-calc-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(30px,4vw,70px);align-items:center}
.mh-ro{display:flex;align-items:baseline;gap:12px;margin-top:clamp(20px,3vh,32px)}
.mh-ro b{font-family:var(--display);font-weight:800;font-size:clamp(64px,7vw,104px);letter-spacing:-.03em;color:var(--mink);line-height:1;font-variant-numeric:tabular-nums}
.mh-ro span{font-size:17px;color:var(--msoft);font-weight:700}
.mh-ro-sub{margin-top:10px;font-size:14px;color:var(--msoft)}
.mh-cta{display:inline-block;margin-top:24px;font-family:var(--display);font-weight:800;font-size:15.5px;color:#fff;background:linear-gradient(180deg,var(--gold-bright),var(--gold));border:0;border-radius:999px;padding:15px 30px;cursor:pointer;text-decoration:none;transition:transform .35s cubic-bezier(.16,1,.3,1),box-shadow .35s}
.mh-cta:hover{transform:translateY(-2px);box-shadow:0 18px 40px -14px rgba(27,123,225,.55)}
.mh-cta-ghost{background:none;border:1.5px solid rgba(255,255,255,.4);color:#fff}
.mh-cta-ghost:hover{background:rgba(255,255,255,.1);box-shadow:none}
.mh-disc{margin-top:14px;font-size:11.5px;color:var(--msoft)}
.mh-dials{background:#fff;border:1px solid var(--mline);border-radius:24px;padding:clamp(24px,2.6vw,38px);box-shadow:0 30px 70px -40px rgba(10,19,34,.25);display:flex;flex-direction:column;gap:20px}
.mh-dial{display:grid;grid-template-columns:1fr auto;align-items:center;gap:4px 10px}
.mh-dial b{font-size:13.5px;font-weight:700;color:var(--mink)}
.mh-dial em{font-style:normal;font-family:var(--display);font-weight:800;font-size:15px;color:var(--gold);font-variant-numeric:tabular-nums}
.mh-dial input[type=range]{grid-column:1/-1;width:100%;appearance:none;-webkit-appearance:none;height:4px;border-radius:4px;background:linear-gradient(to left,var(--gold) 0%,var(--gold) 50%,rgba(16,21,29,.12) 50%);outline:none}
.mh-dial input[type=range]::-webkit-slider-thumb{appearance:none;-webkit-appearance:none;width:22px;height:22px;border-radius:50%;background:#fff;border:2.5px solid var(--gold);box-shadow:0 3px 10px rgba(10,19,34,.25);cursor:pointer;transition:transform .25s}
.mh-dial input[type=range]::-webkit-slider-thumb:hover{transform:scale(1.15)}

/* == FLOORS: proc reskin (onyx) == */
.mh-floors{background:linear-gradient(180deg,#0A1322,#0C1728)!important}
.mh-floors .h-sec,.mh-floors h2{color:#fff}
.mh-floors .center p{color:rgba(255,255,255,.75)}
.mh-floors .proc-kick{color:var(--gold-bright);font-family:var(--mono);letter-spacing:.24em;text-transform:uppercase;font-size:11px}
.mh-floors .proc-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:24px;overflow:hidden}
.mh-floors .proc-text h3{color:#fff}
.mh-floors .proc-text p{color:rgba(255,255,255,.82);font-size:16px;line-height:1.75}
.mh-floors .proc-media-num{font-family:var(--display);font-weight:800;color:transparent;-webkit-text-stroke:1.5px rgba(255,255,255,.5)}
.mh-floors .proc-dot{color:rgba(255,255,255,.82);opacity:.9}
.mh-floors .proc-dot span{color:rgba(255,255,255,.8)}
.mh-floors .proc-dot.active span{color:#fff}
.mh-floors .proc-dot b{border-color:rgba(255,255,255,.28)}
.mh-floors .proc-dot span{font-size:15px;font-weight:700}
.mh-floors .proc-dot b{font-size:15px;color:rgba(255,255,255,.6)}
.mh-floors .proc-dot b{font-family:var(--display)}
.mh-floors .proc-dot.active{color:#fff}
.mh-floors .proc-dot.active b{color:var(--gold-bright)}
.mh-floors .proc-progress{background:rgba(255,255,255,.12)}
.mh-floors .proc-progress span,.mh-floors #procFill{background:var(--gold-bright)}
.mh-floors .proc-foot .btn{color:#fff;border-color:rgba(255,255,255,.3)}

/* == VALUES: wide-hero bento (marble) == */
.mh-values{background:var(--marble);padding-block:clamp(70px,9vh,110px)}
.mh-values .values{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(14px,1.6vw,22px);margin-top:clamp(34px,5vh,50px)}
.mh-values .value{position:relative;background:#fff;border:1px solid var(--mline);border-radius:20px;box-shadow:none;padding:clamp(24px,2.4vw,32px);margin:0;overflow:hidden;transition:transform .5s cubic-bezier(.16,1,.3,1),box-shadow .5s,border-color .4s}
.mh-values .value:hover{transform:translateY(-5px);border-color:rgba(21,96,176,.35);box-shadow:0 30px 60px -34px rgba(10,19,34,.35)}
.mh-values .value:first-child{grid-column:1/-1;display:flex;flex-direction:column;justify-content:center;min-height:190px;background:linear-gradient(165deg,#0E1B31,#0A1322);border-color:transparent}
.mh-values .value:first-child h3,.mh-values .value:first-child p{max-width:56ch}
.mh-values .value:first-child::after{content:"₪";position:absolute;top:-38px;inset-inline-end:-10px;font-family:var(--display);font-weight:800;font-size:210px;line-height:1;color:transparent;-webkit-text-stroke:1.5px rgba(27,123,225,.25);pointer-events:none}
.mh-values .value:first-child h3{color:#fff;font-size:24px}
.mh-values .value:first-child p{color:rgba(255,255,255,.68);font-size:15px}
.mh-values .vic{width:50px;height:50px;display:grid;place-items:center;border-radius:14px;color:#fff;background:linear-gradient(160deg,var(--gold-bright),var(--gold));margin-bottom:16px;box-shadow:0 12px 26px -12px rgba(10,19,34,.4)}
.mh-values .value:last-child{grid-column:span 2}
.mh-values .value h3{font-size:18px;color:var(--mink);margin:0 0 7px}
.mh-values .value p{font-size:13.5px;line-height:1.6;color:var(--msoft);margin:0}

/* == TRADE: double-bezel (marble) == */
.mh-trade{background:var(--marble);padding-block:0 clamp(70px,9vh,110px)}
.mh-trade .split{display:grid;grid-template-columns:1.05fr .95fr;gap:0;background:#0C1728;border-radius:28px;overflow:hidden;padding:10px;border:1px solid rgba(16,21,29,.12)}
.mh-trade .split-media{border-radius:20px;overflow:hidden;min-height:340px}
.mh-trade .split-media img{width:100%;height:100%;object-fit:cover;display:block}
.mh-trade .split>div:last-child{display:flex;flex-direction:column;justify-content:center;padding:clamp(28px,3.4vw,54px)}
.mh-trade .split-tag{font-family:var(--mono);font-size:11px;letter-spacing:.28em;text-transform:uppercase;color:var(--gold-bright)}
.mh-trade h2,.mh-trade h3{color:#fff}
.mh-trade p{color:rgba(255,255,255,.65)}
.mh-trade .btn{align-self:flex-start;margin-top:20px;font-family:var(--display);font-weight:800;color:#fff;background:linear-gradient(180deg,var(--gold-bright),var(--gold));border:0;border-radius:999px;padding:14px 28px}

/* == LEDGER: dealsteps as rows (marble) == */
.mh-ledger{background:var(--marble);padding-block:0 clamp(70px,9vh,110px)}
.mh-ledger .dealsteps{display:block;margin-top:clamp(30px,4vh,44px);border-top:1px solid var(--mline)}
.mh-ledger .dstep{display:grid;grid-template-columns:90px 1fr 1.6fr;align-items:center;gap:clamp(14px,2vw,30px);background:none;border:0;border-bottom:1px solid var(--mline);border-radius:0;box-shadow:none;padding:clamp(22px,3vh,32px) 6px;text-align:start;transition:background .35s,padding .4s cubic-bezier(.16,1,.3,1)}
.mh-ledger .dstep:hover{background:#fff;padding-inline-start:18px}
.mh-ledger .dstep::before,.mh-ledger .dstep::after{display:none}
.mh-ledger .dstep-num{position:static;width:auto;height:auto;background:none;border:0;margin:0;font-family:var(--display);font-weight:800;font-size:40px;line-height:1;color:transparent;-webkit-text-stroke:1.3px var(--gold)}
.mh-ledger .dstep-ic{display:none}
.mh-ledger .dstep.featured{background:none;border-color:var(--mline)}
.mh-ledger .dstep.featured .dstep-num{background:none!important;color:transparent!important;-webkit-text-stroke:1.3px var(--gold)}
.mh-ledger .dstep.featured h3,.mh-ledger .dstep.featured p{color:inherit}
.mh-ledger .dstep h3{font-size:19px;color:var(--mink);margin:0}
.mh-ledger .dstep p{font-size:14px;line-height:1.6;color:var(--msoft);margin:0}

/* == KEY: final CTA (onyx, photo) == */
.mh-key{position:relative;background:#0A1322;padding-block:clamp(90px,13vh,150px);overflow:hidden;text-align:center}
.mh-key-bg{position:absolute;inset:0;background:linear-gradient(180deg,rgba(10,19,34,.55),rgba(10,19,34,.92)),url("images/floors/key.jpg?v=1787731747") center/cover no-repeat}
.mh-key .wrap{position:relative;z-index:1}
.mh-key-h{font-family:var(--display);font-weight:800;font-size:clamp(44px,7vw,96px);letter-spacing:-.025em;line-height:1;color:#fff;margin:0}
.mh-key-p{margin:18px auto 0;font-size:clamp(15px,1.4vw,18px);color:rgba(255,255,255,.7);max-width:52ch}
.mh-key-cta{display:flex;gap:14px;justify-content:center;margin-top:clamp(26px,4vh,40px);flex-wrap:wrap}

@supports (animation-timeline: view()){
  @media (prefers-reduced-motion: no-preference){
    .mh-key-h{background:linear-gradient(90deg,#fff 40%,rgba(255,255,255,.22) 60%);background-size:250% 100%;background-position:100% 0;-webkit-background-clip:text;background-clip:text;color:transparent;animation:mhFill linear both;animation-timeline:view();animation-range:entry 20% cover 55%}
  }
}
@keyframes mhFill{from{background-position:100% 0}to{background-position:0% 0}}

@media (max-width:1020px){
  .mh-desk-grid,.mh-calc-grid{grid-template-columns:1fr}
  .mh-ben-row{grid-template-columns:1fr 1fr;gap:18px}
  .mh-ben-i:nth-child(odd){border-inline-start:0;padding-inline-start:0}
  .mh-collection .gallery{grid-template-columns:1fr 1fr}
  .mh-collection .car:nth-child(3n+2){margin-top:0}
  .mh-press .press-strip{grid-template-columns:repeat(2,1fr);row-gap:4px}
  .mh-press .press-item:nth-child(odd){border-inline-start:0}
  .mh-screening .vtest-slide{grid-template-columns:1fr}
  .mh-screening .vtest-media{min-height:280px}
  .mh-values .values{grid-template-columns:1fr 1fr}
  .mh-values .value:first-child,.mh-values .value:last-child{grid-column:1/-1}
  .mh-trade .split{grid-template-columns:1fr}
  .mh-ledger .dstep{grid-template-columns:64px 1fr;grid-template-rows:auto auto}
  .mh-ledger .dstep p{grid-column:2}
}
@media (max-width:640px){
  .mh-collection .gallery{grid-template-columns:1fr}
  .mh-values .values{grid-template-columns:1fr}
  .mh-ben-row{grid-template-columns:1fr}
  .mh-ben-i{border-inline-start:0;padding-inline:0}
}
@media (prefers-reduced-motion:reduce){.mh *,.mh-key-h{transition:none!important;animation:none!important}}
/* footer logo: bigger, no chip */
.footer-brand .brand-img{height:64px!important;max-height:64px!important;width:auto!important;background:none!important;padding:0!important;border-radius:0!important;object-fit:contain}
/*MH-END*/

/*MH2*/
/* == SCREEN: full-bleed video opener == */
.mh2-screen{position:relative;height:min(86vh,780px);min-height:520px;overflow:hidden;background:#0A1322}
.mh2-screen .video-box{position:absolute;inset:0;margin:0!important;max-width:none;height:100%;border:0;border-radius:0;overflow:hidden}
.mh2-screen .video-box img,.mh2-screen .video-box video{width:100%;height:100%;object-fit:cover}
.mh2-screen::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(10,19,34,.92) 0%,rgba(10,19,34,.25) 45%,rgba(10,19,34,.3) 100%);pointer-events:none}
.mh2-screen-cap{position:absolute;inset-inline:0;bottom:clamp(34px,7vh,70px);z-index:2;text-align:center;pointer-events:none}
.mh2-screen-h{font-family:var(--display);font-weight:800;font-size:clamp(30px,4.4vw,58px);line-height:1.1;letter-spacing:-.02em;color:#fff;margin:12px 0 0;text-shadow:0 2px 30px rgba(0,0,0,.6)}
.mh2-screen .video-cap{display:none}
.mh2-screen .video-overlay{background:none}

/* == GUEST BOOK == */
.mh2-guest{background:var(--marble,#F5F8FC);padding-block:clamp(64px,9vh,104px)}
.mh2-guest-sub{color:#5C6674;font-size:15px;margin:10px 0 0}
.mh2-quote-wrap{position:relative;max-width:820px!important;margin-inline:auto!important;margin-top:clamp(18px,2.6vh,28px);padding-inline:64px}
.mh2-guest .vtest{background:none;border:0;box-shadow:none;margin:0}
.mh2-guest .vtest-slide{display:flex;flex-direction:column;align-items:center;text-align:center;background:none;border:0;box-shadow:none;padding:clamp(6px,1.4vh,14px) 0;gap:0;min-height:0}
.mh2-guest .vtest-viewport{min-height:0}
.mh2-guest .vtest-media{display:none}
.mh2-guest .vtest-quote-mark{font-size:clamp(60px,6vw,90px);line-height:.55;color:var(--gold-bright);opacity:.55}
.mh2-guest .vtest-quote{font-family:var(--display);font-weight:800;font-size:clamp(22px,2.6vw,36px);line-height:1.45;color:#10151D;margin-top:10px;max-width:34ch}
.mh2-guest .vtest-by{margin-top:16px;justify-content:center}
.mh2-guest .vtest-name{font-weight:800;color:#10151D}
.mh2-guest .vtest-car{color:var(--gold-deep);font-weight:700}
.mh2-guest .vtest-nav{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:46px;height:46px;border-radius:50%;border:1.5px solid rgba(16,21,29,.2);background:#fff;color:#10151D;font-size:22px;cursor:pointer;transition:background .3s,color .3s}
.mh2-guest .vtest-nav:hover{background:#10151D;color:#fff}
.mh2-guest .vtest-nav.prev{inset-inline-start:0!important;inset-inline-end:auto!important;right:auto!important;left:0!important}
.mh2-guest .vtest-nav.next{inset-inline-end:0!important;inset-inline-start:auto!important;left:auto!important;right:0!important}
.mh2-guest .vtest-dots{margin-top:16px}
.mh2-guest .cmarquee{margin-top:clamp(26px,4vh,42px)}
.mh2-guest .vtest-dots{justify-content:center}
.mh2-guest .vtest-dots button.active{background:var(--gold)}
/* polaroids */
.mh2-guest .cmarquee{margin-top:clamp(34px,5vh,54px);overflow:visible;-webkit-mask-image:none;mask-image:none}
.mh2-guest .cmarquee-track{display:flex;flex-wrap:wrap;justify-content:center;gap:clamp(14px,2vw,26px);animation:none!important;width:auto!important}
.mh2-guest .cm-cell{width:196px;height:236px;margin:0;background:#fff;border:1px solid rgba(16,21,29,.1);border-radius:6px;padding:9px 9px 0;box-shadow:0 18px 40px -22px rgba(16,21,29,.45);transform:rotate(var(--r,0deg));transition:transform .4s cubic-bezier(.34,1.56,.64,1),box-shadow .4s;overflow:hidden}
.mh2-guest .cm-cell:hover{transform:rotate(0) translateY(-6px) scale(1.04);box-shadow:0 30px 60px -26px rgba(16,21,29,.55);z-index:2}
.mh2-guest .cm-cell img{width:100%;height:160px;object-fit:cover;border-radius:3px;display:block}
.mh2-guest .cm-cap{position:static;background:none;color:#10151D;padding:8px 2px;font-size:11.5px;text-align:center}
.mh2-guest .cm-cap b{display:block;font-size:12px}
.mh2-guest .cm-cap span{color:#5C6674;font-size:10.5px}
/* press hairline */
.mh2-press-line{display:flex;align-items:center;gap:clamp(14px,2vw,28px);margin-top:clamp(40px,6vh,60px);padding-top:22px;border-top:1px solid rgba(16,21,29,.1)}
.mh2-press-t{font-family:var(--mono);font-size:10px;letter-spacing:.24em;color:#5C6674;text-transform:uppercase;white-space:nowrap}
.mh2-press-line .press-strip{display:flex;flex:1;align-items:center;justify-content:space-around;gap:12px;border:0}
.mh2-press-line .press-item{display:flex;align-items:center;border:0;padding:0;margin:0}
.mh2-press-line .press-quote{display:none}
.mh2-press-line .press-imgwrap{display:flex;align-items:center;height:30px}
.mh2-press-line .press-img{max-height:24px;max-width:104px;width:auto;object-fit:contain;filter:grayscale(1);opacity:.7;transition:filter .35s,opacity .35s}
.mh2-press-line .press-img[src*="mako"]{background:#000;border-radius:6px;padding:3px 7px}
.mh2-press-line .press-item:hover .press-img{filter:none;opacity:1}

/* == SPEC merge == */
.mh2-spec{padding-block:clamp(64px,9vh,104px)!important;background:#F5F8FC!important}
.mh2-spec-t{font-family:var(--mono);font-size:11px;letter-spacing:.28em;color:#5C6674;text-transform:uppercase;margin:clamp(44px,6vh,64px) 0 0}

/* == FAQ == */
.mh2-faq{background:#fff;padding-block:clamp(64px,9vh,104px)}
.mh2-acc{max-width:860px;margin:clamp(28px,4vh,44px) auto 0;display:flex;flex-direction:column;gap:12px}
.mh2-q{background:#F5F8FC;border:1px solid rgba(16,21,29,.1);border-radius:18px;overflow:hidden;transition:border-color .35s,box-shadow .4s}
.mh2-q[open]{background:#fff;border-color:rgba(21,96,176,.4);box-shadow:0 30px 70px -40px rgba(10,19,34,.3)}
.mh2-q summary{display:flex;align-items:center;gap:16px;padding:clamp(16px,2.2vh,22px) clamp(18px,2.4vw,26px);cursor:pointer;list-style:none}
.mh2-q summary::-webkit-details-marker{display:none}
.mh2-q summary h3{font-family:var(--display);font-weight:800;font-size:clamp(15.5px,1.6vw,19px);color:#10151D;margin:0;flex:1}
.mh2-q summary i{position:relative;width:28px;height:28px;flex:none;border-radius:50%;border:1.5px solid rgba(16,21,29,.18);transition:transform .45s cubic-bezier(.16,1,.3,1),background .3s}
.mh2-q summary i::before,.mh2-q summary i::after{content:"";position:absolute;top:50%;left:50%;width:10px;height:1.6px;background:#10151D;transform:translate(-50%,-50%)}
.mh2-q summary i::after{transform:translate(-50%,-50%) rotate(90deg);transition:transform .35s}
.mh2-q[open] summary i{background:var(--gold);border-color:transparent;transform:rotate(180deg)}
.mh2-q[open] summary i::before,.mh2-q[open] summary i::after{background:#fff}
.mh2-q[open] summary i::after{transform:translate(-50%,-50%) rotate(0)}
.mh2-q p{margin:0;padding:0 clamp(18px,2.4vw,26px) clamp(16px,2.2vh,22px);font-size:14px;line-height:1.7;color:#5C6674}

/* == KEY + INVITE form == */
.mh2-key{position:relative;padding-block:clamp(80px,11vh,130px);overflow:hidden}
.mh2-key .wrap{position:relative;z-index:1}
.mh2-key-grid{display:grid;grid-template-columns:1fr minmax(340px,440px);gap:clamp(30px,4vw,70px);align-items:center}
.mh2-key .mh-key-h{text-align:start;font-size:clamp(40px,5.6vw,80px)}
.mh2-key .mh-key-p{margin:16px 0 0;text-align:start;max-width:44ch}
.mh2-invite{position:relative}
.mh2-invite-tag{position:absolute;top:-13px;inset-inline-start:24px;background:var(--gold-bright);color:#fff;font-weight:800;font-size:12px;border-radius:999px;padding:6px 14px}

@media (max-width:1020px){
  .mh2-key-grid{grid-template-columns:1fr}
  .mh2-screen{height:64vh;min-height:420px}
  .mh2-guest .cm-cell{width:160px;height:200px}
  .mh2-guest .cm-cell img{height:128px}
  .mh2-press-line{flex-direction:column;align-items:flex-start;gap:12px}
  .mh2-press-line .press-strip{flex-wrap:wrap;justify-content:flex-start}
}
@media (prefers-reduced-motion:reduce){.mh2-guest .cm-cell{transform:none}}
/*MH2-END*/

/*MH3*/
/* ===== GARAGE DOOR: the house opens for the collection ===== */
.mh-garage{position:relative;overflow:hidden;border-radius:20px;padding:10px;margin:-10px}
.mh-garage.done{overflow:visible}
.mh-shutter{position:absolute;inset:0;z-index:6;pointer-events:none;
  background:
    repeating-linear-gradient(180deg,
      #16233A 0 10px,
      #1B2B45 10px 26px,
      #0F1A2C 26px 28px),
    linear-gradient(90deg,rgba(0,0,0,.45),transparent 12%,transparent 88%,rgba(0,0,0,.45));
  box-shadow:0 22px 40px -18px rgba(5,12,24,.65);
  transform:translateY(0);
  transition:transform 1.7s cubic-bezier(.62,.02,.2,1)}
.mh-shutter-lip{position:absolute;inset-inline:0;bottom:0;height:6px;background:linear-gradient(180deg,var(--gold-bright),var(--gold-deep));box-shadow:0 0 26px rgba(27,123,225,.75)}
.mh-garage.open .mh-shutter{transform:translateY(-101%)}
.mh-garage.done .mh-shutter{display:none}
.mh-garage-glow{position:absolute;inset-inline:6%;top:0;height:120px;z-index:5;pointer-events:none;
  background:radial-gradient(60% 100% at 50% 0%,rgba(27,123,225,.34),transparent 72%);
  opacity:0;transition:opacity .9s ease .35s}
.mh-garage.open .mh-garage-glow{opacity:1}
.mh-garage.done .mh-garage-glow{opacity:0;transition:opacity 1s ease}
/* cars roll out after the door lifts */
.mh-garage .car{opacity:0;transform:translateY(26px)}
.mh-garage.open .car{opacity:1;transform:none;transition:opacity .7s ease,transform .9s cubic-bezier(.16,1,.3,1)}
.mh-garage.open .car:nth-child(3n+1){transition-delay:.75s}
.mh-garage.open .car:nth-child(3n+2){transition-delay:.88s}
.mh-garage.open .car:nth-child(3n+3){transition-delay:1.01s}
.mh-garage.open .car:nth-child(n+4){transition-delay:1.12s}
.mh-collection .car:nth-child(3n+2){margin-top:34px}
@media (prefers-reduced-motion:reduce){
  .mh-garage .car{opacity:1!important;transform:none!important}
  .mh-shutter{display:none}
}

/* ===== POLAROIDS LANDING on the guest book ===== */
.mh2-guest .cm-cell{opacity:0;transform:translateY(-34px) rotate(calc(var(--r,0deg) * 2.6)) scale(.92)}
.mh2-guest.land .cm-cell{opacity:1;transform:rotate(var(--r,0deg));
  transition:opacity .5s ease,transform .85s cubic-bezier(.22,1.15,.3,1)}
.mh2-guest.land .cm-cell:nth-child(1){transition-delay:.05s}
.mh2-guest.land .cm-cell:nth-child(2){transition-delay:.16s}
.mh2-guest.land .cm-cell:nth-child(3){transition-delay:.27s}
.mh2-guest.land .cm-cell:nth-child(4){transition-delay:.38s}
.mh2-guest.land .cm-cell:nth-child(5){transition-delay:.49s}
.mh2-guest.land .cm-cell:nth-child(6){transition-delay:.6s}
.mh2-guest.land .cm-cell:nth-child(7){transition-delay:.71s}
.mh2-guest.land .cm-cell:nth-child(8){transition-delay:.82s}
@media (prefers-reduced-motion:reduce){
  .mh2-guest .cm-cell{opacity:1!important;transform:rotate(var(--r,0deg))!important}
}

/* ===== KEY LIGHT: a slow sweep across the finale ===== */
.mh2-key{isolation:isolate}
.mh2-key::after{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;
  background:linear-gradient(105deg,transparent 34%,rgba(255,255,255,.09) 46%,rgba(27,123,225,.16) 50%,rgba(255,255,255,.09) 54%,transparent 66%);
  transform:translateX(-60%);opacity:0}
.mh2-key.lit::after{animation:mhSweep 2.6s cubic-bezier(.4,0,.2,1) .25s both}
@keyframes mhSweep{
  0%{transform:translateX(-60%);opacity:0}
  18%{opacity:1}
  82%{opacity:1}
  100%{transform:translateX(60%);opacity:0}
}
@media (prefers-reduced-motion:reduce){.mh2-key::after{display:none}}
/*MH3-END*/

/*MH4*/
/* ============ shared editorial furniture ============ */
.mh4-head{max-width:640px}
.mh4-lead{font-size:clamp(15px,1.35vw,17.5px);line-height:1.75;color:#5C6674;margin:16px 0 0;max-width:46ch}
.mh4-lead-c{margin-inline:auto;text-align:center}
.mh4-brands-head{max-width:620px;margin-inline:auto;text-align:center}

/* ============ SPEC: editorial list, no cards, no icon chips ============ */
.mh2-spec{background:#0A1322!important;padding-block:clamp(70px,10vh,120px)!important}
.mh2-spec .mh-h{color:#fff}
.mh2-spec .mh-kick{color:var(--gold-bright)}
.mh2-spec .mh4-lead{color:rgba(255,255,255,.6)}
.mh2-spec .values{display:grid;grid-template-columns:1fr 1fr;gap:0 clamp(40px,6vw,110px);margin-top:clamp(40px,6vh,66px);counter-reset:mhspec}
.mh2-spec .value{position:relative;counter-increment:mhspec;display:grid;grid-template-columns:auto 1fr;align-items:start;gap:clamp(18px,2.4vw,34px);
  background:none!important;border:0!important;border-top:1px solid rgba(255,255,255,.13)!important;border-radius:0!important;
  box-shadow:none!important;padding:clamp(26px,3.6vh,40px) 0!important;margin:0!important;min-height:0!important;
  transition:none}
.mh2-spec .value:hover{transform:none!important;box-shadow:none!important}
.mh2-spec .value::before{content:counter(mhspec,decimal-leading-zero);position:static;font-family:var(--display);font-weight:800;
  font-size:clamp(30px,3.2vw,42px);line-height:.9;color:transparent;-webkit-text-stroke:1.3px rgba(255,255,255,.3);
  transition:-webkit-text-stroke-color .4s;inset:auto;top:auto;background:none;width:auto;height:auto;opacity:1}
.mh2-spec .value:hover::before{-webkit-text-stroke-color:var(--gold-bright)}
.mh2-spec .value::after{display:none!important}
.mh2-spec .vic{display:none!important}
.mh2-spec .value h3{font-family:var(--display);font-weight:800;font-size:clamp(19px,2vw,25px)!important;color:#fff!important;margin:0 0 9px!important;letter-spacing:-.01em}
.mh2-spec .value p{font-size:14.5px!important;line-height:1.7;color:rgba(255,255,255,.62)!important;margin:0!important;max-width:44ch}
/* the ledger sitting under the spec */
.mh2-spec-t{color:rgba(255,255,255,.42)!important;margin-top:clamp(50px,7vh,74px)!important}
.mh2-spec .dealsteps{border-top:1px solid rgba(255,255,255,.13)}
.mh2-spec .dstep{border-bottom:1px solid rgba(255,255,255,.13)!important;background:none!important}
.mh2-spec .dstep:hover{background:rgba(255,255,255,.04)!important}
.mh2-spec .dstep-num{-webkit-text-stroke:1.2px var(--gold-bright)!important}
.mh2-spec .dstep h3{color:#fff!important}
.mh2-spec .dstep p{color:rgba(255,255,255,.55)!important}

/* ============ CALC: onyx drama ============ */
.mh-calc{background:linear-gradient(180deg,#0A1322,#0E1B31)!important;padding-block:clamp(70px,10vh,120px)!important;position:relative;overflow:hidden}
.mh-calc::before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:linear-gradient(rgba(27,123,225,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(27,123,225,.07) 1px,transparent 1px);
  background-size:64px 64px;
  -webkit-mask-image:radial-gradient(70% 60% at 50% 40%,#000,transparent 78%);
  mask-image:radial-gradient(70% 60% at 50% 40%,#000,transparent 78%)}
.mh-calc .wrap{position:relative;z-index:1}
.mh-calc .mh-h-inv{margin-top:10px}
.mh-calc-grid{align-items:center;gap:clamp(34px,5vw,86px)!important}
.mh-ro{margin-top:clamp(18px,2.6vh,28px)}
.mh-ro b{font-size:clamp(76px,9vw,132px)!important;color:#fff!important;letter-spacing:-.045em;
  text-shadow:0 0 70px rgba(27,123,225,.45)}
.mh-ro span{color:rgba(255,255,255,.5)!important;font-size:15px!important}
.mh-ro-sub{color:rgba(255,255,255,.45)!important;font-size:13.5px!important}
.mh-calc .mh-cta{background:linear-gradient(180deg,var(--gold-bright),var(--gold));margin-top:28px}
.mh-calc .mh-disc{color:rgba(255,255,255,.35)!important}
.mh-dials{background:rgba(255,255,255,.045)!important;border:1px solid rgba(255,255,255,.12)!important;
  border-radius:22px!important;box-shadow:none!important;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);gap:24px!important;
  padding:clamp(26px,3vw,40px)!important}
.mh-dial b{color:rgba(255,255,255,.82)!important}
.mh-dial em{color:var(--gold-bright)!important}
.mh-dial input[type=range]{height:2px!important;background:linear-gradient(to left,var(--gold-bright) 0%,var(--gold-bright) 50%,rgba(255,255,255,.16) 50%)!important}
.mh-dial input[type=range]::-webkit-slider-thumb{background:#0A1322!important;border:2px solid var(--gold-bright)!important;
  box-shadow:0 0 0 4px rgba(27,123,225,.18)!important;width:20px!important;height:20px!important}

/* ============ BRANDS: tight two-row marquee ============ */
.mh-brands{background:#FFFFFF!important;padding-block:clamp(56px,8vh,86px)!important}
.mh4-mq{display:flex!important;flex-direction:column;gap:12px;grid-template-columns:none!important;
  margin-top:clamp(30px,4.4vh,46px);
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent)}
.mh4-mq-row{overflow:hidden;direction:ltr}
.mh4-mq-in{display:flex;gap:12px;width:max-content;direction:ltr;animation:mh4Mq 68s linear infinite}
.mh4-mq-row.rev .mh4-mq-in{animation-direction:reverse;animation-duration:82s}
.mh4-mq:hover .mh4-mq-in{animation-play-state:paused}
@keyframes mh4Mq{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.mh4-mq .brand-chip{direction:rtl;flex:0 0 auto;display:flex!important;align-items:center;gap:10px;
  background:#FBFCFE!important;border:1px solid rgba(16,21,29,.09)!important;border-radius:12px!important;
  padding:12px 18px!important;margin:0!important;text-decoration:none;white-space:nowrap;
  font-size:13px!important;font-weight:700;color:#5C6674!important;
  transition:border-color .3s,color .3s,background .3s}
.mh4-mq .brand-chip:hover{border-color:rgba(21,96,176,.45)!important;color:#10151D!important;background:#fff!important}
.mh4-mq .brand-logo{width:30px!important;height:22px!important;display:grid;place-items:center;background:none!important;border:0!important;flex:none}
.mh4-mq .brand-logo img{max-width:28px;max-height:20px;width:auto;height:auto;object-fit:contain;
  filter:grayscale(1);opacity:.62;transition:filter .35s,opacity .35s}
.mh4-mq .brand-chip:hover .brand-logo img{filter:none;opacity:1}
@media (prefers-reduced-motion:reduce){.mh4-mq-in{animation:none!important}.mh4-mq-row{overflow-x:auto}}

/* ============ art direction: tighten + warm the light bands ============ */
.mh-collection{background:#FBFAF8!important;padding-block:clamp(60px,8.5vh,96px)!important}
.mh-press{background:#FBFAF8!important}
.mh2-guest{background:#FBFAF8!important;padding-block:clamp(60px,8.5vh,96px)!important}
.mh-trade{background:#FFFFFF!important;padding-block:clamp(56px,8vh,90px)!important}
.mh2-faq{background:#FBFAF8!important;padding-block:clamp(60px,8.5vh,96px)!important}
.mh-h{font-size:clamp(31px,4.1vw,55px)!important;letter-spacing:-.028em!important}

@media (max-width:1020px){
  .mh2-spec .values{grid-template-columns:1fr}
  .mh4-mq .brand-chip{padding:10px 14px!important;font-size:12px!important}
}

/* --- fixes --- */
.mh-calc .mh-h,.mh-calc .mh-h-inv{color:#fff!important}
.mh-calc .mh-kick{color:var(--gold-bright)!important;display:block;margin-bottom:6px}
/* spec: keep number in col1 spanning both rows, text in col2 */
.mh2-spec .value{grid-template-columns:auto minmax(0,1fr)!important;grid-template-rows:auto auto;align-items:baseline;
  gap:6px clamp(16px,2vw,28px)!important;padding:clamp(22px,3vh,32px) 0!important}
.mh2-spec .value::before{grid-column:1;grid-row:1/span 2;align-self:start}
.mh2-spec .value h3{grid-column:2;grid-row:1}
.mh2-spec .value p{grid-column:2;grid-row:2}
.mh2-spec .value:first-child{grid-column:auto!important;min-height:0!important;display:grid!important;flex-direction:unset!important;justify-content:unset!important}
.mh2-spec .value:last-child{grid-column:auto!important}
.mh2-spec .value:first-child h3{font-size:clamp(19px,2vw,25px)!important}
.mh2-spec .value:first-child p{font-size:14.5px!important}

.mh4-mq .brand-chip{opacity:1!important;transform:none!important}
/*MH4-END*/

/*MH5*/
/* opener video: true full-bleed */
.mh2-screen{position:relative!important}
/* אחרי הסרת סרטון התדמית נשאר בסקשן רק הכיתוב, אבל הגובה של 780px —
   שנקבע כדי להחזיק וידאו במסך מלא — נשאר, והשאיר כ-600px חלל כהה ריק
   מעל הכותרת. הגובה נגזר עכשיו מהתוכן. */
.mh2-screen{height:auto!important;min-height:0!important;padding:clamp(64px,9vh,110px) 0 clamp(56px,8vh,96px)}
.mh2-screen-cap{position:static!important;bottom:auto!important}
.mh2-screen .video-box{position:absolute!important;top:0!important;bottom:0!important;left:0!important;right:0!important;
  inset:0!important;width:100%!important;height:100%!important;max-width:none!important;margin:0!important;padding:0!important;
  border:0!important;border-radius:0!important;transform:none!important}
.mh2-screen .video-box>img,.mh2-screen .video-box>video,.mh2-screen .video-box .poster{
  position:absolute!important;inset:0!important;width:100%!important;height:100%!important;max-width:none!important;object-fit:cover!important;margin:0!important}
.mh2-screen .video-overlay{position:absolute!important;inset:0!important;width:100%!important;height:100%!important}

/* ===== SHOWROOM SPOTLIGHT: a beam sweeps the car when a step opens ===== */
.mh-floors .proc-media{position:relative;overflow:hidden}
.mh-beam{position:absolute;inset:-20% -60%;z-index:2;pointer-events:none;opacity:0;
  background:linear-gradient(105deg,
    transparent 34%,
    rgba(255,255,255,.10) 43%,
    rgba(190,222,255,.30) 48%,
    rgba(255,255,255,.55) 50%,
    rgba(190,222,255,.30) 52%,
    rgba(255,255,255,.10) 57%,
    transparent 66%);
  mix-blend-mode:screen;transform:translateX(-72%)}
.mh-beam.sweep{animation:mhBeam 1.9s cubic-bezier(.4,0,.18,1) both}
@keyframes mhBeam{
  0%{transform:translateX(-72%);opacity:0}
  14%{opacity:1}
  86%{opacity:1}
  100%{transform:translateX(72%);opacity:0}
}
/* floor reflection lights up under the beam */
.mh-floors .proc-card.active .proc-media::before{content:"";position:absolute;inset-inline:8%;bottom:0;height:34%;z-index:1;
  pointer-events:none;background:radial-gradient(60% 100% at 50% 100%,rgba(27,123,225,.28),transparent 72%);
  opacity:0;animation:mhFloor 2.1s ease .25s both}
@keyframes mhFloor{0%{opacity:0}35%{opacity:1}100%{opacity:.45}}

/* ===== rail dot glows like a headlight when it becomes active ===== */
.mh-floors .proc-dot.active b{position:relative}
.mh-floors .proc-dot.active b::after{content:"";position:absolute;inset:-6px;border-radius:50%;pointer-events:none;
  box-shadow:0 0 18px 3px rgba(27,123,225,.55);animation:mhLamp 1.5s ease-out both}
@keyframes mhLamp{0%{opacity:0;transform:scale(.7)}30%{opacity:1;transform:scale(1.08)}100%{opacity:.55;transform:scale(1)}}

@media (prefers-reduced-motion:reduce){
  .mh-beam,.mh-floors .proc-card.active .proc-media::before,.mh-floors .proc-dot.active b::after{display:none}
}
/*MH5-END*/


/*PILOT-FIXES — replicated from the euro-lease audit round*/
/* skip link: visible only when it takes focus */
.skip-link{position:fixed;top:-48px;inset-inline-start:14px;z-index:3000;background:#101828;color:#fff;
  font-weight:800;padding:12px 22px;border-radius:0 0 12px 12px;text-decoration:none;transition:top .2s}
.skip-link:focus{top:0;outline:3px solid var(--gold-bright,var(--gold,#4EA8FF))}
/* form error lines (rendered by JS on failed sends/validation) */
.qc-error,.qm-err{margin-top:10px;font-size:13.5px;font-weight:600;color:#D24B4B}
.qc-error a,.qm-err a{color:inherit;text-decoration:underline}
/*PILOT-FIXES-END*/

/* כיווניות שדה טלפון */
/* type=tel מקבל direction:ltr מגיליון ברירת המחדל של הדפדפן, ולכן
   "טלפון" נצמד לשמאל בזמן ששאר שדות הטופס נצמדים לימין. הספרות עצמן
   נשארות בסדר LTR תקין כי הן strong-LTR בבידי. */
input[type="tel"] { direction: rtl; text-align: right; }

/* ══════════════════════════════════════════════════════════════════
   --- סרגל עליון וכפתורים צפים במובייל ---
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  /* כפתור היועץ ישב 16px מהתחתית בעוד פס הפעולות תופס 58px, ו-z-index
     שלו נמוך יותר (96 מול 97) — כלומר חציו נעלם מאחורי הפס. */
  #ai-concierge, .wa-float { inset-block-end: 72px !important; }
  #a11yFab { inset-block-end: 72px !important; }
  body:has(#cookieBar) #ai-concierge,
  body:has(#cookieBar) .wa-float,
  body:has(#cookieBar) #a11yFab { inset-block-end: 196px !important; }
  .cookie-bar { inset-block-end: 74px; }
}

@media (max-width: 640px) {
  /* ‎.nav-mn .nav-logo‎ ממוקם absolute וממורכז, ולכן יצא מזרימת ה-flex
     ומספר החיוג נחת על הלוגו (חפיפה נמדדת של 33px). בנייד הוא חוזר
     לזרימה, והלוגו והכפתור מתכווצים כדי לשבת זה לצד זה. */
  .nav .nav-logo, .nav-mn .nav-logo { position: static !important;
    transform: none !important; inset: auto !important; }
  .nav-top-inner { gap: 10px !important; }
  /* ‎header#nav .nav-logo .brand-img‎ קובע 52px עם !important ובספציפיות
     של מזהה — צריך להשוות לו כדי לגבור */
  header#nav .nav-logo .brand-img,
  .nav-logo .brand-img, .brand-img { max-height: 36px !important; height: 36px !important; }
  .nav-phone-pill { padding: 7px 12px !important; font-size: 12.5px !important; }
  .nav-cta { min-width: 0; }
}
@media (max-width: 400px) {
  header#nav .nav-logo .brand-img,
  .nav-logo .brand-img, .brand-img { max-height: 30px !important; height: 30px !important; }
  .nav-phone-pill { padding: 6px 10px !important; font-size: 11.5px !important; }
}

/* ══════════════════════════════════════════════════════════════════
   --- היועץ החכם כגיליון תחתון במובייל ---
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* גיליון תחתון שנצמד ל-viewport החזותי, לא לחלון */
  .ai-panel {
    position: fixed !important;
    inset-inline: 0 !important;
    inset-block-start: auto !important;
    inset-block-end: var(--kb, 0px) !important;
    width: 100% !important;
    height: min(76dvh, 600px) !important;
    max-height: calc(100dvh - var(--kb, 0px) - 6px) !important;
    border-radius: 18px 18px 0 0 !important;
    transform-origin: bottom center;
  }
  .ai-panel:not(.open) { transform: translateY(14px) scale(.98); }
  /* ידית גרירה ויזואלית — מסמנת שזו שכבה ולא עמוד */
  .ai-panel::before { content: ""; position: absolute; inset-block-start: 7px;
    inset-inline-start: 50%; transform: translateX(50%); width: 38px; height: 4px;
    border-radius: 999px; background: color-mix(in oklab, var(--ink) 22%, transparent);
    z-index: 3; pointer-events: none; }
  .ai-head { padding-block-start: 18px !important; }
  .ai-body { overscroll-behavior: contain; }
  .ai-input { padding-bottom: max(14px, env(safe-area-inset-bottom)) !important; }

  /* כל עוד הגיליון פתוח אין מקום לשאר השכבות הקבועות */
  body.ai-sheet #ai-concierge { z-index: 1300 !important; }
  body.ai-sheet .ai-fab,
  body.ai-sheet .mbar,
  body.ai-sheet #a11yFab,
  body.ai-sheet .wa-float,
  body.ai-sheet .cookie-bar,
  body.ai-sheet .compare-tray { display: none !important; }
  body.ai-sheet { overflow: hidden; }
  /* כהות מאחורי הגיליון */
  body.ai-sheet::after { content: ""; position: fixed; inset: 0;
    background: rgba(10,14,11,.5); z-index: 1290; }
}
