/* ============================================================
   كار إكزت — Car Exit KSA
   Design system: "طريق الليل" — desert-night green + sand gold
   RTL-first, Arabic-first.
   ============================================================ */

:root {
  --night: #0c1f1a;          /* deep green-black */
  --pine: #114b3a;           /* saudi deep green */
  --pine-2: #16644d;
  --emerald: #1dbe85;        /* action green */
  --emerald-dark: #14996a;
  --sand: #e8c878;           /* gold accent */
  --sand-deep: #cfa24f;
  --paper: #f7f5ef;          /* warm off-white page bg */
  --card: #ffffff;
  --ink: #142019;            /* main text */
  --ink-soft: #4c5f57;       /* secondary text */
  --line: #e3ded2;           /* borders */
  --danger: #d1495b;
  --info: #2277c9;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 10px 30px -12px rgba(12, 31, 26, .18);
  --shadow-lg: 0 24px 60px -20px rgba(12, 31, 26, .35);

  --font-head: 'Alexandria', 'Tajawal', sans-serif;
  --font-body: 'Tajawal', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.4; font-weight: 700; }

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

.container { width: min(1180px, 92%); margin-inline: auto; }

::selection { background: var(--sand); color: var(--night); }

/* ---------- road divider motif ---------- */
.road-divider {
  height: 4px; border: none; margin: 0;
  background-image: linear-gradient(90deg, var(--sand) 0 34px, transparent 34px 60px);
  background-size: 60px 4px;
  opacity: .55;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(12, 31, 26, .92);
  backdrop-filter: blur(12px);
  color: #fff;
  border-bottom: 1px solid rgba(232, 200, 120, .18);
}
.site-header .container {
  display: flex; align-items: center; gap: 28px;
  min-height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: #fff; }
.logo .logo-mark { width: 40px; height: 40px; flex: none; }
.logo b { color: var(--sand); }

.main-nav { display: flex; gap: 4px; flex: 1; }
.main-nav a {
  padding: 8px 14px; border-radius: 999px; font-size: .95rem;
  color: #d9e5df; transition: .2s;
}
.main-nav a:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.main-nav a.active { color: var(--night); background: var(--sand); font-weight: 700; }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,.25);
  color: #fff; border-radius: 10px; padding: 6px 12px; font-size: 1.2rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: 999px; border: none;
  font-weight: 700; font-size: 1rem; transition: .2s; white-space: nowrap;
}
.btn-primary { background: var(--emerald); color: #fff; box-shadow: 0 8px 20px -8px rgba(29, 190, 133, .6); }
.btn-primary:hover { background: var(--emerald-dark); transform: translateY(-2px); }
.btn-gold { background: var(--sand); color: var(--night); box-shadow: 0 8px 20px -8px rgba(232, 200, 120, .55); }
.btn-gold:hover { background: var(--sand-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--sand); color: var(--sand); }
.btn-outline { background: transparent; color: var(--pine); border: 1.5px solid var(--pine); }
.btn-outline:hover { background: var(--pine); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: .9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.15rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(29,190,133,.25), transparent 60%),
    radial-gradient(700px 400px at 10% 110%, rgba(232,200,120,.14), transparent 60%),
    linear-gradient(160deg, var(--night) 20%, var(--pine) 90%);
  color: #fff;
  padding: 84px 0 0;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,200,120,.14); color: var(--sand);
  border: 1px solid rgba(232,200,120,.35);
  padding: 6px 16px; border-radius: 999px; font-weight: 700; font-size: .9rem;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 800; margin-bottom: 18px; }
.hero h1 .grad {
  background: linear-gradient(90deg, var(--sand), #fff2cf);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 1.2rem; color: #cfe0d8; max-width: 34rem; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-art { position: relative; align-self: end; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.4)); }

/* floating chips over hero art */
.float-chip {
  position: absolute; background: #fff; color: var(--ink);
  border-radius: 14px; padding: 10px 16px; box-shadow: var(--shadow-lg);
  font-size: .85rem; font-weight: 700; display: flex; align-items: center; gap: 8px;
  animation: floaty 4s ease-in-out infinite;
}
.float-chip small { display: block; font-weight: 400; color: var(--ink-soft); }
.float-chip .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--emerald); flex: none; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* hero stats band */
.hero-stats {
  margin-top: 30px;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(232,200,120,.22);
  backdrop-filter: blur(6px);
}
.hero-stats .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 26px 0;
}
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--sand); }
.stat .lbl { font-size: .9rem; color: #bcd2c9; }

/* ============ SECTIONS ============ */
.section { padding: 84px 0; }
.section.alt { background: #efece3; }
.section-head { max-width: 44rem; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow {
  display: inline-block; color: var(--pine-2); background: rgba(29,190,133,.12);
  border-radius: 999px; padding: 4px 16px; font-weight: 700; font-size: .85rem; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 10px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ============ CARDS / GRIDS ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow); transition: .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card .icon {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--pine), var(--pine-2)); color: var(--sand);
  margin-bottom: 18px; font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: .97rem; }

/* ============ STEPS (timeline) ============ */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 46px 22px 24px; box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -20px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sand); color: var(--night);
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
  display: grid; place-items: center; box-shadow: 0 6px 14px -4px rgba(207,162,79,.6);
}
.step h4 { margin-bottom: 6px; font-size: 1.05rem; }
.step p { color: var(--ink-soft); font-size: .92rem; }

/* ============ COMPARISON TABLE ============ */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
table.compare { width: 100%; border-collapse: collapse; background: var(--card); min-width: 620px; }
table.compare th, table.compare td { padding: 18px 22px; text-align: right; border-bottom: 1px solid var(--line); }
table.compare thead th { background: var(--night); color: #fff; font-family: var(--font-head); font-size: 1.02rem; }
table.compare thead th.hl { background: var(--pine); color: var(--sand); }
table.compare td.hl { background: rgba(29,190,133,.07); font-weight: 700; color: var(--pine); }
table.compare tr:last-child td { border-bottom: none; }
.yes { color: var(--emerald-dark); font-weight: 800; }
.no { color: var(--danger); font-weight: 800; }

/* ============ LISTING CARDS ============ */
.cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.car-card {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); transition: .25s;
  display: flex; flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.car-media { position: relative; aspect-ratio: 16/9; display: grid; place-items: center; overflow: hidden; }
.car-media svg { width: 78%; height: auto; }
.car-media .badge-status {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.92); color: var(--pine); font-weight: 800; font-size: .78rem;
  padding: 5px 12px; border-radius: 999px;
}
.car-media .badge-city {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(12,31,26,.75); color: #fff; font-size: .78rem;
  padding: 5px 12px; border-radius: 999px;
}
.car-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.car-body h3 { font-size: 1.12rem; }
.car-body .sub { color: var(--ink-soft); font-size: .85rem; margin-top: -8px; }
.car-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.car-num { background: var(--paper); border-radius: 12px; padding: 10px 12px; }
.car-num .v { font-family: var(--font-head); font-weight: 800; color: var(--pine); font-size: 1.02rem; }
.car-num .k { font-size: .74rem; color: var(--ink-soft); }
.car-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.car-foot .paid { font-size: .8rem; color: var(--ink-soft); }
.car-foot .paid b { color: var(--emerald-dark); }

/* progress bar of paid installments */
.pbar { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.pbar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--emerald), var(--sand)); border-radius: 999px; }

/* ============ FORMS ============ */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .95rem; }
.field .hint { font-size: .8rem; color: var(--ink-soft); margin-top: 4px; }
.input, select.input, textarea.input {
  width: 100%; padding: 13px 16px; border-radius: 14px;
  border: 1.5px solid var(--line); background: #fff; font-size: 1rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.input:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 4px rgba(29,190,133,.15); }
.input.err { border-color: var(--danger); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.field-error { color: var(--danger); font-size: .8rem; margin-top: 4px; display: none; }
.field-error.show { display: block; }

.panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow);
}

/* ============ WIZARD ============ */
.wizard-steps { display: flex; gap: 0; margin-bottom: 34px; }
.wstep { flex: 1; text-align: center; position: relative; padding-top: 34px; font-size: .85rem; color: var(--ink-soft); }
.wstep::before {
  content: attr(data-n); position: absolute; top: 0; right: 50%; transform: translateX(50%);
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--line); color: var(--ink-soft); font-weight: 800; font-size: .85rem; z-index: 2;
}
.wstep::after {
  content: ""; position: absolute; top: 14px; right: calc(50% + 15px); width: calc(100% - 30px);
  height: 3px; background: var(--line);
}
.wstep:last-child::after { display: none; }
.wstep.done::before, .wstep.now::before { background: var(--emerald); color: #fff; }
.wstep.done::after { background: var(--emerald); }
.wstep.now { color: var(--pine); font-weight: 800; }

/* ============ FAQ ============ */
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 800; font-family: var(--font-head);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--emerald); transition: .2s; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--ink-soft); }
.faq-item[open] { border-color: var(--emerald); }

/* ============ CALCULATOR ============ */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.calc-result {
  position: sticky; top: 100px;
  background: linear-gradient(160deg, var(--night), var(--pine));
  color: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg);
}
.calc-result h3 { color: var(--sand); margin-bottom: 20px; }
.res-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,.15); font-size: .98rem; }
.res-row:last-of-type { border-bottom: none; }
.res-row .v { font-family: var(--font-head); font-weight: 800; color: #fff; }
.res-row .v.gold { color: var(--sand); font-size: 1.25rem; }
.res-row .v.green { color: var(--emerald); }
.res-note { margin-top: 18px; font-size: .8rem; color: #a9c3b8; background: rgba(255,255,255,.06); border-radius: 12px; padding: 12px 16px; }

.big-figure {
  text-align: center; background: rgba(232,200,120,.12); border: 1px dashed rgba(232,200,120,.5);
  border-radius: 16px; padding: 18px; margin-bottom: 18px;
}
.big-figure .amount { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--sand); }
.big-figure .cap { font-size: .85rem; color: #cfe0d8; }

/* ============ DASHBOARD ============ */
.dash-grid { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.dash-side { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; position: sticky; top: 100px; }
.dash-side .u-name { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; }
.dash-side .u-phone { color: var(--ink-soft); font-size: .85rem; margin-bottom: 16px; direction: ltr; text-align: right; }
.dash-nav { display: flex; flex-direction: column; gap: 6px; }
.dash-nav button {
  text-align: right; background: none; border: none; padding: 10px 14px; border-radius: 12px;
  font-size: .95rem; color: var(--ink-soft); font-weight: 700;
}
.dash-nav button.active, .dash-nav button:hover { background: rgba(29,190,133,.1); color: var(--pine); }

.status-chip { display: inline-block; padding: 4px 14px; border-radius: 999px; font-size: .78rem; font-weight: 800; }
.status-chip.review { background: #fdf3d7; color: #8a6d1a; }
.status-chip.active { background: #dcf5ea; color: var(--emerald-dark); }
.status-chip.sold { background: #e8e8e8; color: #666; }
.status-chip.pending { background: #e3effb; color: var(--info); }

.list-row {
  display: flex; align-items: center; gap: 18px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 14px;
}
.list-row .grow { flex: 1; }
.list-row h4 { font-size: 1.02rem; }
.list-row .meta { color: var(--ink-soft); font-size: .84rem; }

/* ============ FOOTER ============ */
.site-footer { background: var(--night); color: #b9cec5; padding: 64px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.site-footer h4 { color: var(--sand); font-size: 1rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-brand p { font-size: .9rem; margin-top: 12px; max-width: 26rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: .82rem;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.trust-badge {
  border: 1px solid rgba(232,200,120,.35); color: var(--sand); border-radius: 10px;
  font-size: .74rem; padding: 5px 10px; display: inline-flex; align-items: center; gap: 6px;
}

/* ============ MISC ============ */
.notice {
  background: #fdf6e4; border: 1px solid #eedfae; color: #7a6320;
  border-radius: 14px; padding: 14px 18px; font-size: .9rem;
}
.notice.green { background: #e7f7f0; border-color: #bfe8d7; color: var(--pine); }
.notice.blue { background: #e9f2fb; border-color: #c4dcf3; color: #1d5e9e; }

.toast {
  position: fixed; bottom: 26px; right: 50%; transform: translateX(50%) translateY(20px);
  background: var(--night); color: #fff; padding: 14px 26px; border-radius: 999px;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: .3s; z-index: 200;
  font-weight: 700; font-size: .95rem; border: 1px solid rgba(232,200,120,.4);
}
.toast.show { opacity: 1; transform: translateX(50%) translateY(0); }

.modal-back {
  position: fixed; inset: 0; background: rgba(12,31,26,.6); backdrop-filter: blur(4px);
  display: none; place-items: center; z-index: 150; padding: 20px;
}
.modal-back.open { display: grid; }
.modal {
  background: #fff; border-radius: var(--radius-lg); padding: 34px; width: min(480px, 100%);
  box-shadow: var(--shadow-lg); position: relative;
}
.modal .close-x { position: absolute; top: 16px; left: 16px; background: none; border: none; font-size: 1.4rem; color: var(--ink-soft); }

.page-hero {
  background: linear-gradient(160deg, var(--night), var(--pine)); color: #fff;
  padding: 60px 0 50px; text-align: center;
}
.page-hero h1 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: #cfe0d8; max-width: 38rem; margin-inline: auto; }

.filters-bar {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  box-shadow: var(--shadow); margin-top: -34px; position: relative; z-index: 5;
}

.legal-doc { max-width: 60rem; margin-inline: auto; }
.legal-doc h2 { font-size: 1.25rem; margin: 34px 0 10px; color: var(--pine); }
.legal-doc p, .legal-doc li { color: #38473f; font-size: .98rem; }
.legal-doc ul, .legal-doc ol { padding-right: 24px; margin: 8px 0; }
.legal-doc .updated { color: var(--ink-soft); font-size: .85rem; }

.otp-boxes { display: flex; gap: 10px; direction: ltr; justify-content: center; }
.otp-boxes input {
  width: 56px; height: 62px; text-align: center; font-size: 1.6rem; font-weight: 800;
  border: 1.5px solid var(--line); border-radius: 14px; font-family: var(--font-head);
}
.otp-boxes input:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 4px rgba(29,190,133,.15); }

.upload-box {
  border: 2px dashed var(--line); border-radius: var(--radius); padding: 22px; text-align: center;
  color: var(--ink-soft); cursor: pointer; transition: .2s; background: #fcfbf8;
}
.upload-box:hover { border-color: var(--emerald); color: var(--pine); }
.upload-box.done { border-color: var(--emerald); background: #e7f7f0; color: var(--pine); font-weight: 700; }

.cta-band {
  background: linear-gradient(120deg, var(--pine), var(--pine-2));
  border-radius: var(--radius-lg); color: #fff; padding: 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 15% 120%, rgba(232,200,120,.25), transparent 70%);
}
.cta-band h2 { font-size: 1.6rem; position: relative; }
.cta-band p { color: #cfe0d8; position: relative; }
.cta-band .btn { position: relative; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.empty-state .big { font-size: 3rem; margin-bottom: 12px; }

/* onboarding tour modal */
.tour-steps { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.tour-steps i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.tour-steps i.on { background: var(--emerald); width: 24px; border-radius: 999px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid, .calc-grid, .grid-3, .cars-grid, .dash-grid { grid-template-columns: 1fr 1fr; }
  .hero-art { display: none; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .filters-bar { grid-template-columns: 1fr 1fr; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-side { position: static; }
}
@media (max-width: 700px) {
  .main-nav {
    position: fixed; inset: 72px 0 auto 0; background: var(--night);
    flex-direction: column; padding: 16px; display: none; border-bottom: 2px solid var(--sand);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2, .cars-grid, .calc-grid, .form-row, .form-row-3, .steps { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .section { padding: 56px 0; }
  .hero { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-cta .btn-ghost { display: none; }
  .cta-band { padding: 34px 26px; }
  .panel { padding: 24px 20px; }
}
