/* =========================================================
   DriveEasy Rentals — styles
   Navy + orange palette. Mobile-first. Single accent for CTAs.
   (Palette vars are still named --green-* for convenience;
    their values are navy/blue — change them in :root to re-theme.)
   ========================================================= */

:root {
  /* Brand navy — variable names kept as --green-* so the whole site
     re-themes from here; the values below are navy/blue. */
  --green-50:  #eef3fb;
  --green-100: #dce8f7;
  --green-200: #bcd1ee;
  --green-500: #3b76d8;  /* bright accent blue: focus rings, pins, stars */
  --green-600: #2358bf;  /* urgency strip */
  --green-700: #1c3f8f;  /* primary buttons, labels */
  --green-800: #152e6b;
  --green-900: #0c1c44;  /* darkest navy: hero, header bar, footer */

  /* Accent — used for ALL call/conversion buttons */
  --accent:        #f97316;  /* warm orange, high contrast on navy */
  --accent-dark:   #ea580c;

  --ink:      #0f1729;
  --body:     #3a4356;
  --muted:    #6b7488;
  --line:     #e4e8f0;
  --bg:       #ffffff;
  --bg-alt:   #f3f6fb;

  --radius:   16px;
  --radius-sm:10px;
  --shadow:   0 10px 30px rgba(12, 28, 68, .12);
  --shadow-sm:0 4px 14px rgba(12, 28, 68, .09);

  --wrap: 1140px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  /* leave room for the sticky mobile call bar */
  padding-bottom: 0;
}

h1, h2, h3 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
p  { margin: 0 0 1em; }
a  { color: var(--green-700); text-decoration: none; }
img, svg { max-width: 100%; }

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

/* ---------- Icons (inline SVG sprite) ---------- */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ic {
  width: 1.15em; height: 1.15em; flex: none; display: inline-block;
  vertical-align: -0.18em;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.ic--fill { fill: currentColor; stroke: none; }
/* inline icons (inside text/links) get a little trailing space */
.utilbar__phone .ic, .footer__col a .ic, .searchform__note .ic,
.urgency .ic, .cta-band__fine .ic, .legal a .ic { margin-right: .35em; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--bg-btn); color: #fff;
  font-family: inherit; font-weight: 700; font-size: 1rem;
  padding: .8em 1.3em; border: none; border-radius: 999px;
  cursor: pointer; text-align: center; line-height: 1.1;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn__ico { font-size: 1.05em; line-height: 1; }

.btn--call, .btn--accent { --bg-btn: var(--accent); }
.btn--call:hover, .btn--accent:hover { background: var(--accent-dark); }

.btn--ghost {
  background: transparent; color: var(--green-800);
  box-shadow: inset 0 0 0 2px var(--green-200);
}
.btn--ghost:hover { background: var(--green-50); box-shadow: inset 0 0 0 2px var(--green-500); }

.btn--lg { font-size: 1.06rem; padding: .95em 1.6em; }
.btn--xl { font-size: 1.18rem; padding: 1.05em 2em; }
.btn--block { width: 100%; }

/* ---------- Utility bar ---------- */
.utilbar {
  background: var(--green-900); color: #d3e3fb;
  font-size: .82rem;
}
.utilbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 7px; padding-bottom: 7px; }
.utilbar__msg { display: inline-flex; align-items: center; gap: 8px; }
.utilbar__msg strong { color: #fff; }
.utilbar__phone { color: #fff; font-weight: 700; white-space: nowrap; }

.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-500); display: inline-block; position: relative;
  box-shadow: 0 0 0 0 rgba(59,118,216,.6); animation: pulse 1.8s infinite;
}
.pulse-dot--light { background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(59,118,216,.6); }
  70%  { box-shadow: 0 0 0 9px rgba(59,118,216,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,118,216,0); }
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 18px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { display: inline-flex; }
.brand__name { font-weight: 800; font-size: 1.2rem; color: var(--green-900); letter-spacing: -.02em; }
.brand__name span { color: var(--green-600); }
.nav { display: none; gap: 22px; margin-left: auto; }
.nav a { color: var(--ink); font-weight: 600; }
.nav a:hover { color: var(--green-600); }
.header__cta { margin-left: auto; white-space: nowrap; }
@media (max-width: 719px) {
  .header__cta-num { display: none; } /* sticky bottom bar shows the full number on mobile */
  /* utility bar: stack the message above the phone, centered */
  .utilbar { font-size: .8rem; }
  .utilbar__inner { flex-direction: column; gap: 3px; text-align: center; }
  .utilbar__msg { justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--green-900); color: #eef4fc; }
.hero__bg {
  position: absolute; inset: 0;
  /* gradient acts as guaranteed fallback if the photo fails to load */
  background: linear-gradient(160deg, #0c1c44 0%, #163163 60%, #1c3f8f 130%);
}
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8,22,56,.94) 0%, rgba(8,22,56,.80) 38%, rgba(8,22,56,.45) 72%, rgba(8,22,56,.25) 100%),
    linear-gradient(0deg, rgba(8,22,56,.55), rgba(8,22,56,0) 40%);
}
.hero__inner { position: relative; display: grid; gap: 32px; padding-top: 48px; padding-bottom: 56px; }
.hero__copy { max-width: 640px; }
.eyebrow {
  display: inline-block; background: rgba(255,255,255,.12); color: #d6e6fc;
  font-weight: 600; font-size: .85rem; padding: .4em .9em; border-radius: 999px; margin-bottom: 14px;
}
.eyebrow--live { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #22c55e; flex: none;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7); animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero h1 { color: #fff; letter-spacing: -.02em; }
.hero__sub { font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: #c5d8f5; max-width: 540px; }
.hero__sub strong { color: #fff; }
.trust-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 0; margin: 18px 0 26px; }
.trust-chips li { font-weight: 600; font-size: .92rem; color: #eef4fc; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__ctas .btn--ghost { color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.4); }
.hero__ctas .btn--ghost:hover { background: rgba(255,255,255,.1); }

/* Search card */
.searchcard {
  background: #fff; color: var(--ink);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
}
.searchcard__title { font-size: 1.25rem; margin-bottom: 16px; }
.searchform { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 700; color: var(--green-800); }
.field input, .field select {
  font-family: inherit; font-size: .98rem; color: var(--ink);
  padding: .7em .8em; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; width: 100%;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px var(--green-100); }
.searchform .btn--block { grid-column: 1 / -1; margin-top: 4px; }
.searchform__note { grid-column: 1 / -1; text-align: center; font-size: .82rem; color: var(--muted); margin: 6px 0 0; }
.searchform__note strong { color: var(--green-700); }

/* Autocomplete dropdown */
.ac-list {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 40;
  margin: 4px 0 0; padding: 4px; list-style: none;
  background: #fff; border: 1.5px solid var(--green-200); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); max-height: 252px; overflow-y: auto;
}
.ac-list[hidden] { display: none; }
.ac-item {
  display: flex; align-items: center; gap: 8px;
  padding: .55em .7em; border-radius: 8px; cursor: pointer;
  font-size: .95rem; color: var(--ink); white-space: nowrap;
}
.ac-item .ic { width: 1em; height: 1em; color: var(--green-600); }
.ac-item[aria-selected="true"], .ac-item:hover { background: var(--green-50); }
.ac-item mark { background: transparent; color: var(--green-700); font-weight: 700; }

/* ---------- Quick-action chips ---------- */
.quicklinks { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.quicklinks__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 12px; padding: 16px 0; }
.quicklinks__lead { font-weight: 700; color: var(--ink); font-size: .92rem; }
.qchip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1.5px solid var(--green-200); color: var(--green-800);
  font-weight: 700; font-size: .9rem; padding: .5em .9em; border-radius: 999px;
  box-shadow: var(--shadow-sm); transition: transform .12s ease, border-color .2s ease, background .2s ease;
}
.qchip:hover { transform: translateY(-2px); border-color: var(--green-500); background: var(--green-50); }
.qchip .ic { width: 1em; height: 1em; color: var(--green-600); }

/* ---------- Trust stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 10px; padding: 28px 0 4px; text-align: center; }
.stat__num { display: block; font-size: clamp(1.5rem, 4vw, 1.9rem); font-weight: 800; color: var(--green-700); line-height: 1; }
.stat__label { font-size: .82rem; color: var(--muted); font-weight: 600; }

/* ---------- Partners / trust strip ---------- */
.partners { background: #fff; border-bottom: 1px solid var(--line); }
.partners__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 28px; padding: 22px 0; text-align: center; border-top: 1px solid var(--line); margin-top: 22px; }
.partners__lead { color: var(--muted); font-weight: 600; font-size: .9rem; }
.partners__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; padding: 0; margin: 0; }
.partners__list li {
  font-family: Georgia, "Times New Roman", serif; font-weight: 700;
  font-size: 1.05rem; letter-spacing: .01em; color: #000; opacity: 1;
}

/* ---------- Urgency strip ---------- */
.urgency { background: var(--green-600); color: #fff; }
.urgency__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 18px; padding-top: 12px; padding-bottom: 12px; font-size: .95rem; text-align: center; }
.urgency strong { font-weight: 800; }
.urgency__item { display: inline-flex; align-items: center; gap: 8px; }
.urgency__sep { width: 1px; height: 18px; background: rgba(255,255,255,.4); }
.countdown { font-variant-numeric: tabular-nums; background: rgba(0,0,0,.18); padding: .15em .5em; border-radius: 6px; font-weight: 800; }
@media (max-width: 719px) {
  .urgency__inner { flex-direction: column; gap: 7px; padding-top: 11px; padding-bottom: 11px; }
  .urgency__sep { display: none; }
}

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.section__head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section__cta { text-align: center; margin-top: 36px; }

/* ---------- Car categories ---------- */
.cars-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.car-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .2s ease;
}
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.car-card__media {
  position: relative; aspect-ratio: 16 / 10;
  background: linear-gradient(140deg, var(--green-100), var(--green-200));
}
.car-card__fallback { position: absolute; inset: 0; display: grid; place-items: center; color: var(--green-700); }
.car-card__fallback svg { width: 90px; height: 90px; }
.car-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.car-card__badge {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(255,255,255,.95); color: var(--green-800);
  font-size: .78rem; font-weight: 600; padding: .35em .75em; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.car-card__badge strong { font-size: 1.05rem; color: var(--green-700); }
.car-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.car-card h3 { margin: 0 0 2px; font-size: 1.18rem; }
.car-card__eg { font-size: .85rem; color: var(--muted); }
.car-card__feats { list-style: none; padding: 0; margin: 14px 0 18px; display: flex; flex-wrap: wrap; gap: 6px 14px; }
.car-card__feats li { font-size: .85rem; color: var(--body); }
.car-card__feats li::before { content: "✓ "; color: var(--green-600); font-weight: 800; }
.car-card__body .btn { margin-top: auto; }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 20px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.step__num { width: 44px; height: 44px; border-radius: 50%; background: var(--green-700); color: #fff; font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; margin: 0 auto 14px; }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Locations ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.loc-card {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform .12s ease, border-color .2s ease;
}
.loc-card:hover { transform: translateY(-2px); border-color: var(--green-500); }
.loc-card__pin { color: var(--green-600); }
.loc-card__sub { display: block; font-size: .78rem; color: var(--muted); font-weight: 500; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.why-card__ico { display: inline-grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 14px; background: var(--green-100); color: var(--green-700); }
.why-card__ico .ic { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.1rem; }
.why-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: 1fr; gap: 18px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin: 0; box-shadow: var(--shadow-sm); }
.stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 10px; }
.review blockquote { margin: 0 0 16px; font-size: 1.02rem; color: var(--ink); }
.review figcaption { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--body); font-size: .92rem; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; font-weight: 800; font-size: .8rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 18px 20px; font-weight: 700; color: var(--ink);
  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.4rem; color: var(--green-600); font-weight: 700; line-height: 1; }
.faq__item[open] summary::after { content: "−"; }
.faq__body { padding: 0 20px 18px; }
.faq__body p { margin: 0; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--green-700), var(--green-900)); color: #fff; text-align: center; }
.cta-band__inner { padding: 56px 20px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c5d8f5; font-size: 1.1rem; }
.cta-band .btn { margin: 8px 0 14px; }
.cta-band__fine { font-size: .9rem; color: #a3bbe6; margin: 0; }

/* ---------- Disclaimer ---------- */
.disclaimer { background: var(--bg-alt); padding: 28px 0; border-top: 1px solid var(--line); }
/* match the footer width (full .wrap, not narrow) and left-align */
.disclaimer .wrap--narrow { max-width: var(--wrap); }
.disclaimer p { font-size: .82rem; color: var(--muted); margin: 0; text-align: left; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: #b2c4e4; padding-top: 48px; }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
.footer__brand p { font-size: .92rem; max-width: 320px; }
.brand--footer .brand__name--footer { color: #fff; }
.brand--footer .brand__name--footer span { color: var(--green-500); }
.footer .btn--call { margin-top: 8px; color: #fff; }
.footer__col h3 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col li { white-space: nowrap; }
.footer__col a { color: #b2c4e4; display: inline-flex; align-items: center; }
.footer__col a:hover { color: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0; font-size: .82rem; }
.footer__barinner { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(12,28,68,.12);
}
.callbar__btn {
  display: flex; align-items: center; justify-content: center; gap: .5em;
  width: 100%; background: var(--accent); color: #fff; font-weight: 800;
  padding: .95em; border-radius: 999px; font-size: 1.05rem;
  animation: barpulse 2.4s ease-in-out infinite;
}
@keyframes barpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,.45); }
  50%      { box-shadow: 0 0 0 8px rgba(249,115,22,0); }
}

/* ---------- Call modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8,22,56,.55); backdrop-filter: blur(2px); }
.modal__card {
  position: relative; background: #fff; border-radius: 22px; padding: 34px 28px 28px;
  max-width: 420px; width: 100%; text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,.3);
  animation: pop .2s ease;
}
@keyframes pop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal__close { position: absolute; top: 10px; right: 14px; background: none; border: none; font-size: 1.8rem; line-height: 1; color: var(--muted); cursor: pointer; }
.modal__close:hover { color: var(--ink); }
.modal__ring { width: 84px; height: 84px; margin: 0 auto 16px; position: relative; display: grid; place-items: center; }
.modal__ring-ico { position: relative; z-index: 1; color: var(--green-700); display: inline-flex; animation: shake 1s ease-in-out infinite; }
.modal__ring-ico .ic { width: 38px; height: 38px; }
.modal__ring-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--green-100); animation: ringpulse 1.6s ease-out infinite; }
@keyframes ringpulse { 0% { transform: scale(.7); opacity: .9; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes shake { 0%,100% { transform: rotate(0); } 20% { transform: rotate(-14deg); } 40% { transform: rotate(12deg); } 60% { transform: rotate(-8deg); } 80% { transform: rotate(6deg); } }
.modal__msg { color: var(--body); }
.modal__fine { font-size: .82rem; color: var(--muted); margin: 12px 0 0; }
.modal .btn { margin-top: 4px; }

/* ---------- Online Support Desk popup (full-screen on mobile) ---------- */
.supportpop { position: fixed; inset: 0; z-index: 110; }
.supportpop[hidden] { display: none; }
.supportpop__backdrop { position: absolute; inset: 0; background: rgba(8,22,56,.6); }
.supportpop__card {
  position: absolute; inset: 0; background: #fff; overflow: hidden;
  width: 100%; height: 100%; height: 100dvh;
  display: flex; flex-direction: column;
  animation: popfade .25s ease;
}
@keyframes popfade { from { opacity: 0; } to { opacity: 1; } }
.supportpop__head {
  flex: none;
  display: flex; align-items: center; justify-content: center; position: relative;
  background: var(--green-700); color: #fff; font-weight: 800; letter-spacing: .04em;
  font-size: 1rem; padding: 16px 48px;
}
.supportpop__close {
  position: absolute; top: 50%; right: 14px; transform: translateY(-50%);
  background: none; border: none; color: #fff; font-size: 1.9rem; line-height: 1; cursor: pointer; padding: 0 6px;
}
.supportpop__close:hover { opacity: .8; }
.supportpop__body {
  flex: 1 1 auto; display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 12px; padding: 48px 24px calc(26px + env(safe-area-inset-bottom)); text-align: center;
}
.supportpop__body > *, .supportpop__intro > *, .supportpop__cta > * { margin: 0; }
.supportpop__mid { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; }
.supportpop__avatar { position: relative; width: 200px; height: 200px; }
.supportpop__avatar img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center 22%;
  border: 4px solid #fff; box-shadow: 0 8px 24px rgba(8,22,56,.22), 0 0 0 2px var(--green-100);
  background: var(--green-100);
}
.supportpop__online { position: absolute; right: 12px; bottom: 12px; width: 24px; height: 24px; border-radius: 50%; background: #22c55e; border: 3px solid #fff; }
.supportpop__intro { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }
.supportpop__cta { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100%; }
.supportpop__title { font-weight: 800; color: var(--ink); font-size: 1.2rem; }
.supportpop__desc { color: var(--muted); font-size: .95rem; line-height: 1.5; max-width: 340px; }
.supportpop__topic { background: var(--green-700); font-size: .98rem; width: 100%; max-width: 360px; }
.supportpop__topic:hover { background: var(--green-800); }
.supportpop__sub { font-weight: 700; color: var(--ink); font-size: .92rem; }
.supportpop__body .btn--call { width: 100%; max-width: 360px; }
.supportpop__fine { font-weight: 700; color: var(--ink); font-size: .9rem; }
/* Desktop: never show (this popup is mobile-only) */
@media (min-width: 720px) { .supportpop { display: none !important; } }

/* =========================================================
   Responsive — tablet & up
   ========================================================= */
@media (min-width: 720px) {
  .nav { display: flex; }
  .header__cta { margin-left: 0; }
  .hero__inner { grid-template-columns: 1.1fr .9fr; align-items: center; padding-top: 64px; padding-bottom: 80px; }
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .statband { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; }
  /* call bar is mobile-only; pad body only on mobile */
}

@media (min-width: 1024px) {
  .cars-grid { grid-template-columns: repeat(3, 1fr); }
  .loc-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Hide sticky call bar on larger screens (header CTA is visible there) */
@media (min-width: 720px) {
  .callbar { display: none; }
}
/* On mobile, add bottom padding so content isn't hidden behind call bar */
@media (max-width: 719px) {
  body { padding-bottom: 76px; }
}

/* =========================================================
   Legal / policy pages
   ========================================================= */
.pagehero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff; padding: 52px 0 44px;
}
.pagehero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 8px; }
.pagehero p { color: #c5d8f5; margin: 0; max-width: 680px; }
.pagehero .crumbs { font-size: .85rem; color: #a3bbe6; margin-bottom: 14px; }
.pagehero .crumbs a { color: #d6e6fc; }

.legal { padding: 44px 0 60px; }
.legal__updated { font-size: .9rem; color: var(--muted); margin: 0 0 26px; }
.legal__toc {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 22px; margin: 0 0 34px;
}
.legal__toc strong { display: block; margin-bottom: 10px; color: var(--ink); }
.legal__toc ul { list-style: none; padding: 0; margin: 0; }
.legal__toc li { margin: 6px 0; }
.legal h2 { font-size: 1.3rem; margin: 38px 0 12px; scroll-margin-top: 90px; }
.legal h2:first-of-type { margin-top: 8px; }
.legal h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--body); }
.legal ul { padding-left: 1.25em; margin: 0 0 1.1em; }
.legal li { margin-bottom: .45em; }
.legal a { text-decoration: underline; }
.legal__note {
  background: var(--green-50); border-left: 4px solid var(--green-500);
  padding: 14px 18px; border-radius: 8px; margin: 22px 0; color: var(--ink);
}
.legal__note p:last-child { margin-bottom: 0; }
@media (min-width: 720px) {
  .legal__toc ul { columns: 2; column-gap: 30px; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
