/* ===============================================================
   Bay Auto Collective — mockup stylesheet
   =============================================================== */

:root {
  --bg:            #0b0d10;
  --bg-2:          #101318;
  --panel:         #14181e;
  --panel-2:       #1a1f26;
  --line:          #242a33;
  --line-soft:     #1c222a;
  --ink:           #eef1f5;
  --ink-2:         #a8b1bd;
  --ink-3:         #6f7987;
  --brand:         #f0a13a;
  --brand-2:       #ffc46b;
  --brand-ink:     #1a1206;
  --good:          #4ade80;
  --radius:        14px;
  --radius-lg:     22px;
  --shadow:        0 18px 48px rgba(0,0,0,.45);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --max: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 999px;
  padding: 11px 20px; font-size: 14.5px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: var(--brand-ink);
  box-shadow: 0 6px 20px rgba(240,161,58,.24);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(240,161,58,.34); }
.btn-ghost { background: rgba(255,255,255,.04); border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #333c48; }
.btn-lg { padding: 14px 26px; font-size: 15.5px; }
.btn-sm { padding: 8px 15px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,13,16,.78);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; gap: 22px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; font-size: 17px; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(160deg, var(--brand-2), var(--brand)); color: var(--brand-ink);
}
.brand-text em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--brand); }

.nav { display: flex; gap: 4px; margin-left: 12px; }
.nav a {
  padding: 8px 13px; border-radius: 9px; font-size: 14.5px; color: var(--ink-2); font-weight: 500;
  transition: color .18s, background .18s;
}
.nav a:hover { color: var(--ink); background: rgba(255,255,255,.05); }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.phone-link:hover { color: var(--ink); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(74,222,128,.14); }

.hamburger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; background: transparent; cursor: pointer; padding: 0; }
.hamburger span { display: block; width: 18px; height: 1.8px; background: var(--ink); margin: 3.6px auto; border-radius: 2px; transition: .2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.4px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.4px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 74px 0 0; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -30% -10% auto -10%; height: 620px; pointer-events: none;
  background:
    radial-gradient(52% 60% at 22% 40%, rgba(240,161,58,.16), transparent 68%),
    radial-gradient(46% 58% at 82% 26%, rgba(80,140,255,.12), transparent 70%);
  filter: blur(6px);
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center; padding-bottom: 70px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 18px;
}
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--good); animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50%     { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.hero h1 { font-size: clamp(38px, 5.4vw, 66px); letter-spacing: -.035em; }
.hero h1 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--brand); }
.lede { margin: 22px 0 30px; font-size: 17.5px; color: var(--ink-2); max-width: 55ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { list-style: none; display: flex; gap: 34px; margin: 44px 0 0; padding: 30px 0 0; border-top: 1px solid var(--line-soft); flex-wrap: wrap; }
.hero-trust strong { display: block; font-size: 21px; letter-spacing: -.02em; }
.hero-trust span { font-size: 13.5px; color: var(--ink-3); }

.hero-art { position: relative; }
.hero-card {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--panel); box-shadow: var(--shadow); aspect-ratio: 16 / 11;
}
.hero-card svg { width: 100%; height: 100%; }
.hero-badge {
  position: absolute; left: -18px; bottom: -22px;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 16px;
  padding: 15px 20px; box-shadow: var(--shadow); min-width: 210px;
}
.hero-badge-label { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); font-weight: 700; }
.hero-badge-title { display: block; font-weight: 700; margin-top: 5px; font-size: 15.5px; }
.hero-badge-price { display: block; font-size: 21px; font-weight: 800; letter-spacing: -.02em; margin-top: 2px; }

.marquee { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; background: rgba(255,255,255,.015); }
.marquee-track { display: flex; gap: 26px; align-items: center; padding: 13px 0; width: max-content; animation: slide 34s linear infinite; }
.marquee-track span { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.marquee-track i { color: var(--brand); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 38px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.section-sub { color: var(--ink-3); font-size: 14.5px; max-width: 42ch; margin: 0; }

/* ---------- filters ---------- */
.filters {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 14px;
}
.search-field { position: relative; flex: 1 1 260px; display: flex; align-items: center; }
.search-field svg { position: absolute; left: 14px; color: var(--ink-3); }
.search-field input {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 11px;
  padding: 11px 14px 11px 42px; color: var(--ink); font-size: 14.5px; outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.search-field input::placeholder { color: var(--ink-3); }
.search-field input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(240,161,58,.15); }

.chips { display: flex; gap: 7px; flex-wrap: wrap; }
.chip {
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 15px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); cursor: pointer;
  transition: .18s;
}
.chip:hover { color: var(--ink); border-color: #333c48; }
.chip.is-active { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }

.filter-right { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }
.select-field { display: flex; flex-direction: column; gap: 3px; }
.select-field span { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; padding-left: 2px; }
.select-field select {
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 12px; color: var(--ink); font-size: 13.5px; font-family: inherit; cursor: pointer; outline: none;
}
.select-field select:focus { border-color: var(--brand); }

.result-count { margin: 20px 0 18px; font-size: 13.5px; color: var(--ink-3); }
.result-count b { color: var(--ink); }

/* ---------- grid + cards ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer; display: flex; flex-direction: column;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  animation: rise .4s ease both;
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } }
.card:hover { transform: translateY(-4px); border-color: #333c48; box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16 / 11; background: #0f1216; overflow: hidden; }
.card-media svg { width: 100%; height: 100%; transition: transform .5s ease; }
.card:hover .card-media svg { transform: scale(1.045); }
.card-flags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.flag {
  font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 6px; background: rgba(11,13,16,.82); border: 1px solid var(--line); color: var(--ink-2);
  backdrop-filter: blur(6px);
}
.flag-hot { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.flag-sold { background: #ef4444; border-color: #ef4444; color: #fff; }
.flag-new { background: rgba(74,222,128,.15); border-color: rgba(74,222,128,.4); color: var(--good); }

.fav {
  position: absolute; top: 11px; right: 11px; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(11,13,16,.8); backdrop-filter: blur(6px);
  display: grid; place-items: center; cursor: pointer; color: var(--ink-2); font-size: 15px; transition: .18s;
}
.fav:hover { color: #ff6b6b; border-color: #ff6b6b; transform: scale(1.08); }
.fav.is-on { color: #ff6b6b; border-color: #ff6b6b; background: rgba(255,107,107,.14); }

.media-count {
  position: absolute; bottom: 11px; right: 11px; display: flex; gap: 6px;
}
.media-pill {
  display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700;
  padding: 5px 9px; border-radius: 7px; background: rgba(11,13,16,.82); border: 1px solid var(--line);
  color: var(--ink-2); backdrop-filter: blur(6px);
}

.card-body { padding: 17px 18px 19px; display: flex; flex-direction: column; flex: 1; }
.card-top { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; }
.card-title { font-size: 16.5px; font-weight: 700; letter-spacing: -.015em; }
.card-trim { font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.card-price { font-size: 20px; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }
.card-price small { display: block; font-size: 11.5px; font-weight: 600; color: var(--ink-3); text-align: right; margin-top: 1px; }
.card-specs {
  display: flex; gap: 14px; flex-wrap: wrap; margin: 14px 0 16px;
  padding-top: 14px; border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--ink-2);
}
.card-specs span { display: inline-flex; align-items: center; gap: 6px; }
.card-specs b { font-weight: 600; color: var(--ink); }
.card-foot { margin-top: auto; display: flex; gap: 9px; }
.card-foot .btn { flex: 1; }

.empty { text-align: center; padding: 60px 20px; border: 1px dashed var(--line); border-radius: var(--radius-lg); color: var(--ink-2); }
.empty strong { color: var(--ink); font-size: 18px; }

/* ---------- steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.steps li { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px; }
.step-n { display: block; font-family: var(--serif); font-size: 34px; color: var(--brand); line-height: 1; margin-bottom: 14px; }
.steps h3 { font-size: 17px; margin-bottom: 9px; }
.steps p { color: var(--ink-2); font-size: 14.5px; margin: 0; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.about-art { max-width: 400px; }
.portrait { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.portrait-svg { width: 100%; height: auto; }
.portrait-tag {
  position: absolute; left: 16px; bottom: 16px; background: rgba(11,13,16,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 12.5px; font-weight: 700;
}
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.about-stats div { background: var(--panel); border: 1px solid var(--line); border-radius: 13px; padding: 14px 12px; text-align: center; }
.about-stats strong { display: block; font-size: 18px; letter-spacing: -.02em; }
.about-stats span { font-size: 11.5px; color: var(--ink-3); }
.about-copy h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 22px; }
.about-copy p { color: var(--ink-2); font-size: 16px; }
.about-sign { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.sig { font-family: var(--serif); font-size: 32px; color: var(--brand); display: block; line-height: 1; }
.sig-sub { font-size: 13px; color: var(--ink-3); }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; }
.stars { color: var(--brand); letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
.review p { font-size: 15px; color: var(--ink); margin-bottom: 18px; }
.review-by { margin-top: auto; display: flex; align-items: center; gap: 11px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 14px; color: var(--brand-ink); background: linear-gradient(150deg, var(--brand-2), var(--brand)); }
.review-by b { display: block; font-size: 14px; }
.review-by span { font-size: 12.5px; color: var(--ink-3); }

/* ---------- faq ---------- */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.faq-head h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 14px; }
.faq-head .section-sub { margin-bottom: 22px; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.qa { background: var(--panel); border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.qa summary {
  list-style: none; cursor: pointer; padding: 19px 22px; font-weight: 600; font-size: 15.5px;
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; color: var(--brand); font-size: 21px; font-weight: 400; line-height: 1; transition: transform .22s; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa .qa-body { padding: 0 22px 20px; color: var(--ink-2); font-size: 15px; }

/* ---------- cta band ---------- */
.cta-band { background: linear-gradient(140deg, #17120a, #0b0d10 60%); border-top: 1px solid var(--line-soft); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 62px 24px; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 10px; }
.cta-inner p { color: var(--ink-2); margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line-soft); padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 13px; }
.footer-grid p { font-size: 14.5px; color: var(--ink-2); }
.footer-grid a:hover { color: var(--brand); }
.footer-note { margin-top: 15px; font-size: 14px; color: var(--ink-3); }
.muted { color: var(--ink-3); font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 13px; color: var(--ink-3); }

/* ---------- overlays ---------- */
.overlay { position: fixed; inset: 0; z-index: 200; display: flex; }
.overlay[hidden] { display: none; }
.overlay-scrim { position: absolute; inset: 0; background: rgba(4,6,8,.72); backdrop-filter: blur(4px); animation: fade .2s ease; }
@keyframes fade { from { opacity: 0; } }
.overlay-close {
  position: absolute; top: 18px; right: 18px; z-index: 5; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(20,24,30,.9); cursor: pointer; color: var(--ink-2); font-size: 15px;
}
.overlay-close:hover { color: var(--ink); border-color: #3a4450; }

.detail-panel {
  position: relative; margin-left: auto; width: min(860px, 100%); height: 100%;
  background: var(--bg); border-left: 1px solid var(--line); overflow-y: auto;
  animation: slidein .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes slidein { from { transform: translateX(40px); opacity: .4; } }

.modal {
  position: relative; margin: auto; width: min(620px, calc(100% - 32px)); max-height: calc(100vh - 48px);
  overflow-y: auto; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); animation: pop .24s cubic-bezier(.2,.8,.2,1);
}
@keyframes pop { from { transform: translateY(16px) scale(.98); opacity: 0; } }

/* ---------- detail content ---------- */
.d-gallery { position: relative; background: #0f1216; border-bottom: 1px solid var(--line); }
.d-stage { aspect-ratio: 16 / 10; position: relative; cursor: zoom-in; }
.d-stage svg { width: 100%; height: 100%; }
.d-stage .video-badge {
  position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none;
}
.play-btn {
  width: 74px; height: 74px; border-radius: 50%; background: rgba(240,161,58,.94); color: var(--brand-ink);
  display: grid; place-items: center; font-size: 24px; box-shadow: 0 10px 34px rgba(0,0,0,.5);
  animation: breathe 2.6s ease-in-out infinite;
}
@keyframes breathe { 50% { transform: scale(1.07); } }
.d-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%;
  background: rgba(11,13,16,.78); border: 1px solid var(--line); color: var(--ink); cursor: pointer; backdrop-filter: blur(6px); }
.d-nav:hover { background: rgba(11,13,16,.95); }
.d-prev { left: 14px; } .d-next { right: 14px; }
.d-thumbs { display: flex; gap: 8px; padding: 12px 14px; overflow-x: auto; }
.d-thumb {
  flex: 0 0 92px; height: 62px; border-radius: 9px; overflow: hidden; border: 1.5px solid var(--line);
  background: #0f1216; cursor: pointer; padding: 0; position: relative;
}
.d-thumb.is-on { border-color: var(--brand); }
.d-thumb svg { width: 100%; height: 100%; }
.d-thumb .tv { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0,0,0,.4); font-size: 16px; }

.d-head { padding: 26px 30px 0; }
.d-flags { display: flex; gap: 7px; margin-bottom: 14px; flex-wrap: wrap; }
.d-title { font-size: 28px; letter-spacing: -.03em; }
.d-sub { color: var(--ink-3); font-size: 15px; margin-top: 5px; }
.d-pricerow { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 22px 0 0; flex-wrap: wrap; }
.d-price { font-size: 34px; font-weight: 800; letter-spacing: -.03em; }
.d-price .strike { font-size: 16px; color: var(--ink-3); text-decoration: line-through; font-weight: 600; margin-left: 10px; }
.d-price small { display: block; font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.d-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.d-body { padding: 30px; display: grid; gap: 30px; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.spec { background: var(--panel); padding: 15px 16px; }
.spec span { display: block; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.spec b { display: block; font-size: 15px; margin-top: 4px; font-weight: 600; }

.d-section h3 { font-size: 18px; margin-bottom: 14px; }
.d-note { color: var(--ink-2); font-size: 15.5px; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.feature-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.feature-list li::before { content: ""; flex: 0 0 16px; height: 16px; margin-top: 3px; border-radius: 50%;
  background: rgba(74,222,128,.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/10px no-repeat; }

.flaws { display: flex; flex-direction: column; gap: 9px; }
.flaw { display: flex; gap: 11px; align-items: flex-start; background: rgba(240,161,58,.06); border: 1px solid rgba(240,161,58,.22);
  border-radius: 12px; padding: 13px 15px; font-size: 14.5px; color: var(--ink-2); }
.flaw b { color: var(--brand); font-weight: 700; }

.history { display: flex; flex-direction: column; gap: 0; }
.hist-item { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.hist-item:last-child { border-bottom: 0; }
.hist-item time { color: var(--brand); font-weight: 700; font-size: 13px; }
.hist-item span { color: var(--ink-2); }

.calc { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.calc-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 18px; }
.calc label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; margin-bottom: 6px; }
.calc input, .calc select {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px; color: var(--ink); font: inherit; font-size: 14.5px; outline: none;
}
.calc input:focus, .calc select:focus { border-color: var(--brand); }
.calc-out { display: flex; align-items: baseline; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.calc-out strong { font-size: 30px; letter-spacing: -.03em; }
.calc-out span { color: var(--ink-3); font-size: 13.5px; }
.calc-note { font-size: 12px; color: var(--ink-3); margin: 10px 0 0; }

.d-sticky {
  position: sticky; bottom: 0; background: rgba(11,13,16,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: 14px 30px; display: flex; gap: 12px; align-items: center; justify-content: space-between;
}
.d-sticky .sp { font-size: 13px; color: var(--ink-3); }
.d-sticky .sp b { display: block; color: var(--ink); font-size: 17px; font-weight: 800; }

/* ---------- lightbox ---------- */
.lightbox .lightbox-stage {
  position: relative; margin: auto; width: min(1100px, calc(100% - 60px)); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line); background: #0f1216; box-shadow: var(--shadow);
}
.lightbox-stage svg { width: 100%; height: auto; }
.video-shell { position: relative; }
.video-scan { position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.03) 0 2px, transparent 2px 4px); }
.video-bar { display: flex; align-items: center; gap: 14px; padding: 13px 18px; border-top: 1px solid var(--line); background: var(--panel); }
.video-bar .vb-play { width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: var(--brand-ink); border: 0; cursor: pointer; }
.vb-track { flex: 1; height: 4px; border-radius: 3px; background: var(--line); overflow: hidden; }
.vb-fill { height: 100%; width: 0%; background: var(--brand); transition: width .25s linear; }
.vb-time { font-size: 12.5px; color: var(--ink-3); font-variant-numeric: tabular-nums; }

/* ---------- booking ---------- */
.bk { padding: 30px; }
.bk h3 { font-size: 24px; letter-spacing: -.025em; }
.bk .bk-sub { color: var(--ink-3); font-size: 14.5px; margin: 8px 0 24px; }
.bk-steps { display: flex; gap: 8px; margin-bottom: 24px; }
.bk-steps i { flex: 1; height: 3px; border-radius: 3px; background: var(--line); font-style: normal; }
.bk-steps i.on { background: var(--brand); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 11px;
  padding: 12px 14px; color: var(--ink); font: inherit; font-size: 15px; outline: none; transition: border-color .18s, box-shadow .18s;
}
.field textarea { min-height: 84px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(240,161,58,.14); }
.field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field.two > div { display: contents; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.err { border-color: #ef4444 !important; }
.err-msg { color: #ff8080; font-size: 12.5px; margin-top: 6px; }

.days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.day {
  background: var(--bg); border: 1px solid var(--line); border-radius: 11px; padding: 10px 4px; text-align: center;
  cursor: pointer; transition: .16s;
}
.day:hover:not(:disabled) { border-color: #3a4450; }
.day.is-on { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.day:disabled { opacity: .3; cursor: not-allowed; }
.day span { display: block; font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.day.is-on span { color: rgba(26,18,6,.66); }
.day b { display: block; font-size: 17px; font-weight: 700; margin-top: 2px; }

.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 14px; }
.slot { background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 10px 4px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: .16s; }
.slot:hover:not(:disabled) { border-color: #3a4450; }
.slot.is-on { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.slot:disabled { opacity: .32; cursor: not-allowed; text-decoration: line-through; }

.bk-car { display: flex; gap: 14px; align-items: center; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 12px; margin-bottom: 22px; }
.bk-car .thumb { flex: 0 0 92px; height: 62px; border-radius: 9px; overflow: hidden; background: #0f1216; }
.bk-car > div:nth-child(2) { flex: 1 1 auto; min-width: 0; }
.bk-car b { display: block; font-size: 15px; }
.bk-car span { font-size: 13px; color: var(--ink-3); }
.bk-car .bk-car-price { margin-left: auto; font-weight: 800; font-size: 17px; }

.bk-foot { display: flex; gap: 10px; margin-top: 24px; }
.bk-foot .btn { flex: 1; }

.confirm { text-align: center; padding: 14px 0 4px; }
.confirm-icon { width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center;
  background: rgba(74,222,128,.14); border: 1px solid rgba(74,222,128,.4); color: var(--good); font-size: 30px; }
.confirm h3 { margin-bottom: 10px; }
.confirm p { color: var(--ink-2); }
.confirm-card { text-align: left; background: var(--panel); border: 1px solid var(--line); border-radius: 15px; padding: 20px; margin: 22px 0; }
.confirm-line { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.confirm-line:last-child { border-bottom: 0; }
.confirm-line span { color: var(--ink-3); }
.confirm-line b { font-weight: 600; text-align: right; }

/* ---------- toasts ---------- */
.toast-wrap { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 400; display: flex; flex-direction: column; gap: 9px; align-items: center; pointer-events: none; }
.toast {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow); animation: toastin .3s cubic-bezier(.2,.8,.2,1);
}
.toast.good { border-color: rgba(74,222,128,.4); }
@keyframes toastin { from { transform: translateY(14px); opacity: 0; } }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .grid, .reviews { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 10px 18px 18px; display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 6px; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .hamburger { display: block; }
  .phone-link { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding-bottom: 56px; }
  .hero { padding-top: 52px; }
  .hero-badge { left: auto; right: 12px; bottom: -18px; }
  .about-grid, .faq-wrap { grid-template-columns: 1fr; gap: 36px; }
  .filter-right { margin-left: 0; width: 100%; }
  .filter-right .select-field { flex: 1; }
  .filter-right select { width: 100%; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .grid, .reviews, .steps { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .calc-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .d-body, .d-head { padding-left: 20px; padding-right: 20px; }
  .d-sticky { padding: 12px 18px; }
  .bk { padding: 24px 20px; }
  .days { grid-template-columns: repeat(4, 1fr); }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .hero-trust { gap: 22px; }
  .bk-car .thumb { flex: 0 0 72px; height: 50px; }
  .bk-car b { font-size: 14px; }
  .bk-car .bk-car-price { font-size: 15px; }
  .row2, .field.two { grid-template-columns: 1fr; }
  .btn { padding: 10px 17px; }
  .header-actions .btn-primary { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
