/* North Road Motors - Brand Styles */
:root {
  --nrm-blue: #1f5fd6;
  --nrm-blue-dark: #0b3f9c;
  --nrm-blue-highlight: #3b82f6;
  --nrm-black: #05070d;
  --nrm-charcoal: #111827;
  --nrm-white: #ffffff;
  --nrm-light: #f8fafc;
  --nrm-light-alt: #f1f5f9;
  --nrm-border: #e2e8f0;
  --nrm-text: #0f172a;
  --nrm-muted: #64748b;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --radius: 0.875rem;
  --radius-lg: 1.25rem;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --section-pad: clamp(4rem, 8vw, 6.5rem);
  --container-pad: clamp(1rem, 2.5vw, 1.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; width: 100%; overflow-x: clip; }
body { font-family: var(--font); color: var(--nrm-text); background: var(--nrm-white); line-height: 1.6; width: 100%; margin: 0; overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: none; margin-inline: auto; padding-inline: var(--container-pad); }
.flex { display: flex; }
.grid { display: grid; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.text-center { text-align: center; }
.text-muted { color: var(--nrm-muted); }
.text-blue { color: var(--nrm-blue); }
.font-bold { font-weight: 700; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.py-16 { padding-block: 4rem; }
.section-light { background: var(--nrm-light); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.65rem; border-radius: .625rem; font-weight: 600; font-size: .9375rem; border: none; cursor: pointer; transition: .2s ease; letter-spacing: -.01em; }
.btn-primary { background: var(--nrm-blue); color: #fff; }
.btn-primary:hover { background: var(--nrm-blue-dark); }
.btn-secondary { background: #fff; color: var(--nrm-blue); border: 1px solid var(--nrm-border); }
.btn-secondary:hover { background: var(--nrm-light); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-blue { background: transparent; color: #fff; border: 1.5px solid var(--nrm-blue-highlight); }
.btn-outline-blue:hover { background: rgba(59,130,246,.15); }
.btn-dark { background: rgba(17,24,39,.92); color: #fff; border: 1px solid rgba(255,255,255,.12); }
.btn-dark:hover { background: rgba(17,24,39,1); }
.btn-block { width: 100%; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #0a0b0f; backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,.1); }
.site-header--transparent { position: absolute; left: 0; right: 0; background: rgba(10,11,15,.72); border-bottom-color: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.page-home .site-header--transparent + main { padding-top: 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.75rem; padding-block: 1rem; }
.logo { display: flex; align-items: center; gap: .65rem; color: #fff; flex-shrink: 0; }
.logo-image { width: auto; height: 46px; max-width: 140px; object-fit: contain; display: block; flex-shrink: 0; }
.logo--image-only .logo-image { height: 92px; max-width: 340px; }
.logo-text { line-height: 1.1; }
.logo--footer { margin-bottom: 1rem; }
.logo-text-top { font-size: .82rem; font-weight: 700; letter-spacing: .06em; line-height: 1.1; }
.logo-text-bottom { font-size: .68rem; color: var(--nrm-blue-highlight); letter-spacing: .18em; line-height: 1.2; }
.main-nav { display: none; flex: 1; justify-content: center; flex-wrap: nowrap; align-items: center; gap: .15rem; min-width: 0; }
.main-nav > a,
.main-nav .nav-trigger {
  color: rgba(255,255,255,.88);
  padding: .45rem .55rem;
  font-size: .8125rem;
  font-weight: 500;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: none;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}
.main-nav > a:hover,
.main-nav .nav-trigger:hover,
.main-nav .nav-item:hover > .nav-trigger,
.main-nav .nav-item:focus-within > .nav-trigger { color: #fff; background: transparent; }
.main-nav > a.active,
.main-nav .nav-item.is-active > .nav-trigger { color: #fff; border-bottom-color: var(--nrm-blue-highlight); }
.main-nav .nav-item { position: relative; display: flex; align-items: center; }
.main-nav .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.main-nav .nav-caret {
  font-size: .65rem;
  line-height: 1;
  opacity: .85;
  transition: transform .2s;
}
.main-nav .nav-item:hover .nav-caret,
.main-nav .nav-item:focus-within .nav-caret,
.main-nav .nav-item.is-open .nav-caret { transform: rotate(180deg); }
.main-nav .nav-submenu {
  position: absolute;
  top: calc(100% + .35rem);
  left: 50%;
  transform: translateX(-50%) translateY(.35rem);
  min-width: 12.5rem;
  padding: .45rem;
  background: #0a1224;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .65rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  gap: .15rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s, visibility .18s, transform .18s;
  z-index: 50;
}
.main-nav .nav-item:hover > .nav-submenu,
.main-nav .nav-item:focus-within > .nav-submenu,
.main-nav .nav-item.is-open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.main-nav .nav-submenu a {
  display: block;
  color: rgba(255,255,255,.88);
  padding: .7rem .85rem;
  font-size: .8375rem;
  font-weight: 500;
  border-radius: .45rem;
  border-bottom: none;
  white-space: nowrap;
}
.main-nav .nav-submenu a:hover,
.main-nav .nav-submenu a.active {
  color: #fff;
  background: rgba(31,95,214,.28);
}
.header-ctas { display: none; gap: 1.15rem; align-items: center; flex-shrink: 0; }
.header-calls { display: flex; align-items: center; gap: .85rem; }
.header-call {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  white-space: nowrap;
}
.header-call svg { flex-shrink: 0; color: #fff; }
.header-call-text { display: flex; flex-direction: column; line-height: 1.15; gap: .1rem; }
.header-call-label { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.7); }
.header-call-number { font-size: .875rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.header-call:hover .header-call-number { color: var(--nrm-blue-highlight); }
.header-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}
.header-saved {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  padding-right: .35rem;
  text-decoration: none;
  white-space: nowrap;
}
.header-saved svg { flex-shrink: 0; }
.header-saved:hover { color: var(--nrm-blue-highlight); }
.header-saved-count {
  position: absolute;
  top: -.55rem;
  right: -.55rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 .28rem;
  border-radius: 999px;
  background: var(--nrm-blue);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(5,7,13,.9);
}
.menu-toggle { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.mobile-nav { display: none; padding: 1rem 1.25rem 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-nav.open { display: flex; flex-direction: column; gap: .35rem; }
.mobile-nav > a,
.mobile-nav-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  color: #fff;
  padding: .85rem 1rem;
  font-size: 1.05rem;
  border-radius: .5rem;
  border: none;
  background: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.mobile-nav > a:hover,
.mobile-nav-trigger:hover { background: rgba(255,255,255,.1); }
.mobile-nav > a.active { color: var(--nrm-blue-highlight); }
.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-submenu {
  display: none;
  flex-direction: column;
  gap: .15rem;
  padding: 0 0 .35rem .75rem;
}
.mobile-nav-group.is-open .mobile-nav-submenu { display: flex; }
.mobile-nav-group.is-open .nav-caret { transform: rotate(180deg); }
.mobile-nav-submenu a {
  display: block;
  color: rgba(255,255,255,.88);
  padding: .7rem 1rem;
  font-size: .975rem;
  border-radius: .5rem;
}
.mobile-nav-submenu a:hover,
.mobile-nav-submenu a.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.mobile-nav .nav-caret {
  font-size: .75rem;
  opacity: .85;
  transition: transform .2s;
}
.mobile-nav-saved {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.mobile-nav-saved .header-saved-count {
  position: static;
  box-shadow: none;
}
.mobile-nav-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* Hero */
.hero { background: linear-gradient(135deg, #05070d 0%, #0b1f4d 50%, #0b3f9c 100%); color: #fff; overflow: hidden; position: relative; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(59,130,246,.15), transparent 50%); pointer-events: none; }
.hero-grid { display: grid; gap: 2rem; align-items: center; padding: 4rem 1rem; position: relative; z-index: 1; }
.hero-eyebrow { color: var(--nrm-blue-highlight); font-size: .85rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .75rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 36rem; }
.hero-bullets { margin: 1.5rem 0; }
.hero-bullets li { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; color: rgba(255,255,255,.9); }
.hero-bullets li::before { content: '✓'; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: rgba(31,95,214,.3); color: var(--nrm-blue-highlight); display: grid; place-items: center; font-size: .75rem; flex-shrink: 0; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-image { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; display: none; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.breadcrumb a:hover { color: #fff; }

/* Split hero – diagonal layout. This is the shared hero used across all
   marketing pages (sell your car, finance, about, part exchange, used cars/vans,
   contact, faqs, find us, local seo, etc.) - the home page uses its own
   .home-hero component instead. vw (not %) for --split-media-w so this value
   means the same thing wherever it's reused in calc() below - a % re-resolves
   against whatever element's box consumes it, which silently breaks the
   content/bar safe-width math at different viewport widths. */
.split-hero {
  --split-media-w: min(70vw, 64rem);
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 16% 30%, rgba(31,95,214,.28), transparent 46%),
    linear-gradient(160deg, #05070d 0%, #0a1630 48%, #07101f 100%);
}
.split-hero-media,
.split-hero-slash {
  display: none;
  pointer-events: none;
}
.split-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(2.25rem, 4.5vw, 3.25rem);
  padding-block: clamp(3rem, 6.5vw, 4.75rem) clamp(1.75rem, 3.5vw, 2.5rem);
}
.split-hero-content { max-width: 40rem; }
.split-hero-eyebrow {
  color: var(--nrm-blue-highlight);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.split-hero h1 {
  font-size: clamp(2.15rem, 7.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin-bottom: 1rem;
  max-width: 18ch;
}
.split-hero-lead {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.7vw, 1.125rem);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.split-hero-eyebrow--ruled {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.split-hero-eyebrow--ruled::before,
.split-hero-eyebrow--ruled::after {
  content: '';
  width: 1.35rem;
  height: 1px;
  background: currentColor;
  opacity: .75;
}
.split-hero-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin: 0;
}
.split-hero-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.92);
  font-size: .875rem;
  font-weight: 600;
  /* Mobile: bordered tiles (desktop resets below) */
  padding: .85rem .8rem;
  border: 1px solid rgba(59,130,246,.32);
  border-radius: .75rem;
  background: rgba(8, 16, 36, .45);
}
.split-hero-list-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  /* Mobile: solid blue discs with light checks (desktop softens below) */
  background: var(--nrm-blue);
  border: 1px solid transparent;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(59,130,246,.22);
}
.split-hero-list-icon svg { width: .95rem; height: .95rem; }
.split-hero-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
  width: 100%;
}
.split-hero-ctas .btn {
  width: 100%;
  justify-content: center;
  padding: .9rem .7rem;
  font-size: .875rem;
  gap: .4rem;
}
.split-hero-ctas .btn::after {
  content: '›';
  font-size: 1.15em;
  line-height: 1;
  font-weight: 400;
  margin-left: .1rem;
}
.split-hero-bar {
  display: grid;
  gap: .7rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.split-hero-bar li {
  display: flex;
  align-items: center;
  gap: .85rem;
  /* Mobile: stacked action cards with chevron */
  padding: 1rem 1rem;
  border: 1px solid rgba(59,130,246,.3);
  border-radius: .85rem;
  background: rgba(8, 16, 36, .55);
  position: relative;
  padding-right: 2.4rem;
}
.split-hero-bar li::after {
  content: '›';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.7);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 400;
}
.split-hero-bar-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(31,95,214,.14);
  border: 1px solid rgba(59,130,246,.3);
  color: var(--nrm-blue-highlight);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.split-hero-bar-icon svg { width: 1.1rem; height: 1.1rem; }
.split-hero-bar strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .15rem;
}
.split-hero-bar li > span:last-child {
  flex: 1;
  min-width: 0;
}
.split-hero-bar li > span:last-child span {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .8125rem;
  line-height: 1.45;
}
/* Use more of the horizontal blue area, scaled to the actual safe zone at the
   TOP of the hero (where the diagonal clip leaves the most room) instead of a
   fixed width - a static max-width either overlapped the image on normal
   screens or left a huge gap on ultra-wide ones, since --split-media-w's
   rem-cap changes the safe zone's proportion at different viewport widths.
   (Desktop-only; see @media 900px block below.) */

/* Part exchange hero – two-column with rounded media + feature bar */
.px-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(31,95,214,.16), transparent 45%),
    linear-gradient(180deg, #0a1020 0%, #070b14 100%);
  color: #fff;
}
.px-hero-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.px-hero-eyebrow {
  color: var(--nrm-blue-highlight);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.px-hero h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.px-hero-lead {
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  max-width: 34rem;
}
.px-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.px-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111827;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
  order: -1;
}
.px-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.px-hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.15rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.px-hero-features li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.px-hero-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(31,95,214,.12);
  border: 1px solid rgba(59,130,246,.35);
  color: var(--nrm-blue-highlight);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.px-hero-feature-icon svg { width: 1.1rem; height: 1.1rem; }
.px-hero-features strong {
  display: block;
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .15rem;
}
.px-hero-features li > span:last-child span {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .8125rem;
  line-height: 1.45;
}

/* About hero – two-column with glowing slash + rounded media */
.about-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse at 78% 55%, rgba(31,95,214,.22), transparent 52%),
    radial-gradient(ellipse at 18% 30%, rgba(31,95,214,.12), transparent 42%),
    linear-gradient(160deg, #05070d 0%, #0a1428 48%, #070b14 100%);
}
.about-hero-slash {
  display: none;
  pointer-events: none;
}
.about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.about-hero-eyebrow {
  color: var(--nrm-blue-highlight);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.about-hero h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 12ch;
}
.about-hero h1::after {
  content: '';
  display: block;
  width: 3.25rem;
  height: 3px;
  margin-top: .95rem;
  border-radius: 999px;
  background: var(--nrm-blue-highlight);
  box-shadow: 0 0 16px rgba(59,130,246,.65);
}
.about-hero-lead {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  max-width: 32rem;
}
.about-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.about-hero-ctas .btn-primary {
  box-shadow:
    0 0 0 1px rgba(96,165,250,.25),
    0 0 28px rgba(59,130,246,.45);
}
.about-hero-ctas .btn svg {
  flex-shrink: 0;
}
.about-hero-image {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111827;
  border: 1px solid rgba(96,165,250,.35);
  box-shadow:
    0 24px 60px rgba(0,0,0,.5),
    0 0 40px rgba(59,130,246,.2),
    0 0 2px rgba(96,165,250,.5);
  order: -1;
}
.about-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(5,7,13,.55) 0%,
    rgba(31,95,214,.22) 18%,
    transparent 42%
  );
  pointer-events: none;
}
.about-hero-image::after {
  content: '';
  position: absolute;
  inset: auto -10% -25% auto;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(59,130,246,.35), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (min-width: 900px) {
  .split-hero {
    min-height: clamp(38rem, 72vh, 46rem);
  }
  .split-hero-media {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: var(--split-media-w);
    z-index: 0;
    overflow: hidden;
    /* Cuts the corner opposite the classic split-hero direction (narrow at
       top, wide at bottom) to match the shared mockup */
    clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
  }
  .split-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 40%;
    filter: brightness(1.08) contrast(1.05);
  }
  .split-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      100deg,
      rgba(5,7,13,.62) 0%,
      rgba(5,7,13,.2) 16%,
      transparent 38%
    );
  }
  .split-hero-slash {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: calc(100% - var(--split-media-w));
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 50%, #1f5fd6 100%);
    box-shadow:
      0 0 14px rgba(96,165,250,1),
      0 0 36px rgba(59,130,246,.8),
      0 0 64px rgba(37,99,235,.45);
    transform: skewX(-16.5deg);
    transform-origin: bottom left;
  }
  .split-hero-inner {
    min-height: inherit;
    align-content: space-between;
    padding-block: clamp(3.5rem, 6vw, 5rem) clamp(2rem, 3.5vw, 2.75rem);
    padding-left: clamp(2.5rem, 6vw, 5.25rem);
  }
  /* Extra buffer (beyond the plain top-of-hero safe zone) because the skewed
     diagonal keeps moving left as you go down the page - text lower in the
     content column (e.g. the lead paragraph) needs more clearance than the
     eyebrow does */
  .split-hero-content { max-width: calc(100% - .74 * var(--split-media-w) - 13.5rem); }
  /* Reset mobile card tiles back to the open desktop checklist look */
  .split-hero-list {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .split-hero-list--checks {
    grid-template-columns: max-content max-content;
    gap: 1.15rem 2.25rem;
  }
  .split-hero-list li {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    font-size: .975rem;
    font-weight: 500;
    gap: .85rem;
  }
  .split-hero-eyebrow { margin-bottom: 1.4rem; }
  .split-hero h1 {
    font-size: clamp(2.2rem, 5.2vw, 3.4rem);
    margin-bottom: 1.75rem;
    max-width: 22ch;
  }
  .split-hero-lead {
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    margin-bottom: 1.75rem;
  }
  .split-hero-list-icon {
    width: 2.15rem;
    height: 2.15rem;
    background: rgba(31,95,214,.22);
    border: 1px solid rgba(59,130,246,.4);
    color: var(--nrm-blue-highlight);
    box-shadow: 0 0 18px rgba(59,130,246,.12);
  }
  .split-hero-list-icon svg { width: 1.05rem; height: 1.05rem; }
  .split-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    margin-top: 2.75rem;
    width: auto;
  }
  .split-hero-ctas .btn {
    width: auto;
    padding: .85rem 1.65rem;
    font-size: .9375rem;
  }
  .split-hero-ctas .btn::after { content: none; }
  .split-hero-bar {
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    gap: 2rem;
    padding-top: 1.5rem;
    /* the bar sits low in the hero where the image is at its widest, so (unlike
       the content column above) it needs its own safe max-width reservation */
    max-width: calc(100% - var(--split-media-w) - 3.5rem);
  }
  .split-hero-bar li {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    align-items: flex-start;
    padding-right: 0;
  }
  .split-hero-bar li::after { content: none; }
  .split-hero-bar-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .split-hero-bar-icon svg { width: 1.15rem; height: 1.15rem; }
  .px-hero-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 2.5rem 3rem;
  }
  .px-hero-image {
    order: 0;
    grid-column: 2;
    grid-row: 1;
  }
  .px-hero-content {
    grid-column: 1;
    grid-row: 1;
  }
  .px-hero-features {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: .5rem;
  }
  .about-hero {
    min-height: clamp(28rem, 58vh, 36rem);
    padding-block: clamp(3.25rem, 6vw, 5rem);
  }
  .about-hero-slash {
    display: block;
    position: absolute;
    z-index: 1;
    top: -12%;
    left: 48%;
    width: 3px;
    height: 124%;
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 45%, #1f5fd6 100%);
    box-shadow:
      0 0 14px rgba(96,165,250,1),
      0 0 36px rgba(59,130,246,.85),
      0 0 70px rgba(37,99,235,.5);
    transform: skewX(-24deg);
    transform-origin: center center;
  }
  .about-hero-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 2.5rem 3.5rem;
  }
  .about-hero-image {
    order: 0;
  }
  .about-hero-content {
    max-width: 34rem;
  }
}

/* Cards */
.card { background: #fff; border: 1px solid var(--nrm-border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.card-body { padding: 1.5rem; }
.card-hover { transition: transform .2s, box-shadow .2s; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(16,24,40,.12); }

/* Vehicle card */
.vehicle-grid { display: grid; gap: clamp(1.5rem, 3vw, 2rem); grid-template-columns: 1fr; }
.vehicle-card-media { position: relative; }
.vehicle-card-image { display: block; aspect-ratio: 4/3; overflow: hidden; position: relative; border-radius: var(--radius) var(--radius) 0 0; background: var(--nrm-light-alt); }
.vehicle-card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.vehicle-card:hover .vehicle-card-image img { transform: scale(1.05); }
.vehicle-save-btn {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(5,7,13,.55);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: .2s ease;
}
.vehicle-save-btn svg { width: 1.05rem; height: 1.05rem; }
.vehicle-save-btn:hover {
  background: rgba(31,95,214,.9);
  border-color: transparent;
}
.vehicle-save-btn.is-saved {
  background: var(--nrm-blue);
  border-color: transparent;
  color: #fff;
}
.vehicle-save-btn.is-saved svg { fill: currentColor; }
.vehicle-save-btn--detail {
  position: static;
  width: 100%;
  height: auto;
  border-radius: .625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.65rem;
  backdrop-filter: none;
}
.vehicle-save-btn--detail svg { width: 1.1rem; height: 1.1rem; }
.split-hero--compact {
  min-height: 0 !important;
}
.split-hero--compact .split-hero-inner {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  align-content: center;
}
.split-hero--compact .split-hero-media,
.split-hero--compact .split-hero-slash { display: none !important; }
.page-saved .stock-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--nrm-muted);
}
.page-saved .stock-empty .btn { margin-top: 1rem; }
.badge { display: inline-block; padding: .25rem .65rem; border-radius: 999px; font-size: .75rem; font-weight: 600; }
.badge-fuel { background: rgba(5,7,13,.82); color: #fff; text-transform: uppercase; letter-spacing: .04em; font-size: .68rem; padding: .3rem .55rem; border-radius: .35rem; }
.badge-white { background: rgba(255,255,255,.95); color: var(--nrm-text); }
.vehicle-meta-item { display: inline-flex; align-items: center; gap: .35rem; }
.badge-blue { background: var(--nrm-blue); color: #fff; }
.badge-amber { background: #fbbf24; color: var(--nrm-text); }
.badge-red { background: #dc2626; color: #fff; }
.badges { position: absolute; top: .75rem; left: .75rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.vehicle-price { font-size: 1.5rem; font-weight: 700; color: var(--nrm-blue); margin: .75rem 0; }
.vehicle-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: var(--nrm-muted); }
.vehicle-actions { display: flex; gap: .75rem; margin-top: 1rem; }
.vehicle-actions .btn { flex: 1; font-size: .85rem; padding: .6rem 1rem; }

/* Search panel */
.search-panel { background: #fff; border: 1px solid var(--nrm-border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; margin-top: -2rem; position: relative; z-index: 10; }
.search-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .35rem; }
.form-control { width: 100%; padding: .65rem .75rem; border: 1px solid var(--nrm-border); border-radius: .5rem; font-size: .9rem; }
.form-control:focus { outline: none; border-color: var(--nrm-blue); box-shadow: 0 0 0 3px rgba(31,95,214,.15); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-check { display: flex; gap: .5rem; align-items: flex-start; font-size: .85rem; color: var(--nrm-muted); }
.form-check input { margin-top: .2rem; }

/* Trust strip */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; text-align: center; padding: 2.5rem 1rem; }
.trust-icon { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(31,95,214,.1); color: var(--nrm-blue); display: grid; place-items: center; margin: 0 auto .75rem; font-weight: 700; }
.trust-item h3 { font-size: .9rem; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, #05070d 0%, #0b1f4d 50%, #0b3f9c 100%); color: #fff; text-align: center; padding: 4rem 1rem; position: relative; }
.cta-band h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 40rem; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band .hero-ctas { justify-content: center; }

/* Reviews */
.review-grid { display: grid; gap: 1.5rem; }
.review-stars { color: #fbbf24; margin-bottom: 1rem; }
.review-card { padding: 1.5rem; }

/* FAQ page */
.faq-page {
  padding: clamp(2.75rem, 5.5vw, 4.25rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  background: #f5f7fb;
}
.faq-page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.faq-page-header-copy h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #0b1f4d;
  line-height: 1.15;
  margin-bottom: .55rem;
}
.faq-page-header-copy p {
  color: var(--nrm-muted);
  font-size: 1.05rem;
  max-width: 36rem;
  line-height: 1.55;
}
.faq-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  background: #0b1f4d;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.faq-chat-btn:hover { background: #12306a; color: #fff; }
.faq-cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.faq-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 28px rgba(11, 31, 77, .06);
  border: 1px solid rgba(15, 36, 72, .06);
  padding: 1.35rem 1.35rem 1.1rem;
  min-height: 100%;
}
.faq-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .35rem;
}
.faq-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(31, 95, 214, .12);
  color: var(--nrm-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.faq-card-icon svg { width: 1.15rem; height: 1.15rem; }
.faq-card-header h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0b1f4d;
  letter-spacing: -.015em;
}
.faq-card-list { display: flex; flex-direction: column; }
.faq-card .faq-item {
  border: none;
  border-radius: 0;
  background: transparent;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(15, 36, 72, .08);
  overflow: hidden;
}
.faq-card .faq-item:last-child { border-bottom: none; }
.faq-card .faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
  color: #15233f;
  font-family: inherit;
}
.faq-card .faq-plus {
  color: var(--nrm-blue);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-card .faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-card .faq-answer {
  padding: 0 0 1rem;
  color: var(--nrm-muted);
  display: none;
  line-height: 1.65;
  font-size: .925rem;
}
.faq-card .faq-item.open .faq-answer { display: block; }

/* Shared FAQ accordion (homepage preview, etc.) */
.faq-item { border: 1px solid var(--nrm-border); border-radius: .75rem; background: #fff; margin-bottom: 0; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 1.25rem; background: none; border: none; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; font-size: 1rem; }
.faq-answer { padding: 0 1.25rem 1.25rem; color: var(--nrm-muted); display: none; line-height: 1.65; }
.faq-item.open .faq-answer { display: block; }

.faq-cta {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(2.25rem, 4.5vw, 3rem) 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(145deg, #071127 0%, #0b1f4d 55%, #12306a 100%);
  color: #fff;
  text-align: center;
}
.faq-cta-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, .18);
  color: var(--nrm-blue-highlight);
  border: 1px solid rgba(96, 165, 250, .35);
}
.faq-cta-icon svg { width: 1.35rem; height: 1.35rem; }
.faq-cta h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .55rem;
}
.faq-cta p {
  color: rgba(255, 255, 255, .78);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
}
.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0a1224 0%, #05070d 55%, #05070d 100%);
  color: #fff;
  position: relative;
}
.footer-main {
  display: grid;
  gap: clamp(2.25rem, 4vw, 2.75rem);
  padding-block: clamp(3.5rem, 7vw, 5rem);
  grid-template-columns: 1fr;
}
.footer-brand .logo--footer { margin-bottom: 1.25rem; display: inline-flex; }
.footer-brand .logo--footer .logo-image { height: 64px; max-width: 200px; }
.footer-tagline {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 18rem;
  margin-bottom: 1.5rem;
}
.footer-col h3 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--nrm-blue-highlight);
  margin-bottom: 1.25rem;
  padding-bottom: .55rem;
  border-bottom: 2px solid var(--nrm-blue-highlight);
  width: fit-content;
}
.footer-links,
.footer-checks,
.footer-contact {
  display: grid;
  gap: .7rem;
}
.footer-links a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: color .2s;
}
.footer-links a::before {
  content: '›';
  color: rgba(255,255,255,.45);
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 400;
}
.footer-links a:hover { color: #fff; }
.footer-checks li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  line-height: 1.45;
}
.footer-check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(59,130,246,.14);
  color: var(--nrm-blue-highlight);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: .05rem;
}
.footer-check-icon svg { width: .95rem; height: .95rem; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  line-height: 1.55;
}
.footer-contact a { color: rgba(255,255,255,.8); }
.footer-contact a:hover { color: #fff; }
.footer-contact-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--nrm-blue-highlight);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.footer-contact-icon svg { width: 1.05rem; height: 1.05rem; }
.footer-hours { display: block; }
.footer-search-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.footer-search-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .45rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(59,130,246,.45);
  color: rgba(255,255,255,.85);
  font-size: .8125rem;
  font-weight: 500;
  transition: background .2s, border-color .2s, color .2s;
}
.footer-search-pills a:hover {
  background: rgba(59,130,246,.15);
  border-color: rgba(96,165,250,.7);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .75rem;
  align-items: center;
}
.footer-bottom-links a { color: rgba(255,255,255,.55); }
.footer-bottom-links a:hover { color: #fff; }
.footer-credit { color: var(--nrm-blue-highlight) !important; text-decoration: underline; text-underline-offset: 2px; }
.footer-sep { color: rgba(255,255,255,.28); }
.social-links { display: flex; gap: .65rem; margin-top: .25rem; }
.social-links a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .2s, border-color .2s;
}
.social-links a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }
.social-links svg { width: 1.05rem; height: 1.05rem; fill: currentColor; }
.social-links a[aria-label="Email"] svg { fill: none; stroke: currentColor; }

/* Mobile footer — centred brand + glowing panel cards */
@media (max-width: 899px) {
  .site-footer {
    background:
      radial-gradient(ellipse at 50% 0%, rgba(31,95,214,.22), transparent 45%),
      linear-gradient(180deg, #07101f 0%, #05070d 50%, #04060c 100%);
  }
  .footer-main {
    gap: 1.75rem;
    padding-block: 2.75rem 2rem;
  }
  .footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand .logo--footer {
    margin-bottom: 1rem;
  }
  .footer-brand .logo--footer .logo-image {
    height: 72px;
    max-width: 220px;
  }
  .footer-tagline {
    max-width: 22rem;
    margin-inline: auto;
    margin-bottom: 1.35rem;
    text-align: center;
    color: rgba(255,255,255,.82);
  }
  .social-links {
    justify-content: center;
    gap: .85rem;
  }
  .social-links a {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(12, 22, 44, .9);
    border: 1px solid rgba(59,130,246,.45);
    box-shadow: 0 0 0 1px rgba(59,130,246,.12), 0 0 18px rgba(37,99,235,.35);
  }
  .social-links a:hover {
    background: rgba(31,95,214,.25);
    border-color: rgba(96,165,250,.75);
  }
  .footer-col {
    background: linear-gradient(180deg, rgba(14, 24, 48, .92) 0%, rgba(8, 14, 28, .95) 100%);
    border: 1px solid rgba(59,130,246,.22);
    border-radius: 1rem;
    padding: 0 1.15rem 1.15rem;
    box-shadow: 0 0 28px rgba(37,99,235,.12);
    position: relative;
    overflow: hidden;
  }
  .footer-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6 20%, #60a5fa 50%, #3b82f6 80%, transparent);
    box-shadow: 0 0 12px rgba(59,130,246,.85);
  }
  .footer-col h3 {
    width: 100%;
    text-align: center;
    border-bottom: none;
    padding: 1.15rem 0 .85rem;
    margin-bottom: 0;
    letter-spacing: .16em;
    font-size: .8rem;
    font-weight: 700;
  }
  .footer-links {
    gap: 0;
  }
  .footer-links li + li {
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .footer-links a {
    width: 100%;
    justify-content: space-between;
    padding: .95rem .15rem;
    font-size: .95rem;
    color: rgba(255,255,255,.9);
  }
  .footer-links a::before { content: none; }
  .footer-links a::after {
    content: '›';
    color: var(--nrm-blue-highlight);
    font-size: 1.2rem;
    line-height: 1;
  }
  .footer-checks,
  .footer-contact {
    gap: 0;
  }
  .footer-checks li,
  .footer-contact li {
    padding: .95rem .1rem;
    align-items: center;
  }
  .footer-checks li + li,
  .footer-contact li + li {
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .footer-check-icon {
    width: 1.85rem;
    height: 1.85rem;
    background: transparent;
    margin-top: 0;
  }
  .footer-check-icon svg { width: 1.2rem; height: 1.2rem; }
  .footer-contact-icon {
    width: 1.65rem;
    height: 1.65rem;
    margin-top: 0;
  }
  .footer-contact-icon svg { width: 1.15rem; height: 1.15rem; }
  .footer-col--searches {
    padding-bottom: 1.35rem;
  }
  .footer-search-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }
  .footer-search-pills a {
    width: 100%;
    padding: .7rem .65rem;
    border-radius: 999px;
    border-color: rgba(59,130,246,.55);
    font-size: .875rem;
    background: rgba(5, 10, 22, .55);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .65rem;
    padding-block: 1.5rem 1.75rem;
    border-top-color: rgba(255,255,255,.08);
  }
  .footer-bottom-links {
    justify-content: center;
  }
}

/* Visit us / map */
.visit-grid { display: grid; gap: 2rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--nrm-border); min-height: 400px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* Flash messages */
.alert { padding: 1rem 1.25rem; border-radius: .5rem; margin-bottom: 1rem; }
.alert-success { background: #dcfce7; color: #166534; }
.alert-error { background: #fee2e2; color: #991b1b; }

/* Floating chat CTA */
.chat-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  height: 3.4rem;
  padding: .3rem 1.35rem .3rem .3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #121a2e 0%, #070b14 55%, #05070d 100%);
  color: #fff;
  border: 2px solid #3b82f6;
  box-shadow:
    0 0 0 1px rgba(59,130,246,.15),
    0 0 18px rgba(59,130,246,.45),
    0 8px 24px rgba(0,0,0,.35);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.chat-float:hover {
  transform: translateY(-2px);
  border-color: #60a5fa;
  box-shadow:
    0 0 0 1px rgba(96,165,250,.2),
    0 0 24px rgba(59,130,246,.6),
    0 10px 28px rgba(0,0,0,.4);
}
.chat-float-icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #1a2438 0%, #0b1220 70%);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  flex-shrink: 0;
}
.chat-float-icon svg { width: 1.35rem; height: 1.35rem; }
.chat-float-label {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding-right: .35rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .chat-float { bottom: 1rem; right: 1rem; }
  .chat-float-label { font-size: .875rem; }
}
.chat-float {
  cursor: pointer;
  font-family: inherit;
}

/* Hide Meta's own default launcher bubble; our .chat-float button drives
   FB.CustomerChat.show()/hide() instead, so there is only one visible button. */
#fb-root .fb_dialog.fb_customer_chat.fb_customer_chat_bubble_visible,
#fb-root .fb_customer_chat_bounce_in_v2,
#fb-root iframe[title="fb:customer_chat Facebook Plugin"] + .fb_dialog,
.fb_customer_chat > .fb_dialog:not(.fb_customer_chat_active) {
  display: none !important;
  visibility: hidden !important;
}

/* WhatsApp in-page chat drawer */
.chat-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: transparent;
  pointer-events: none;
}
.chat-panel {
  position: fixed;
  right: 1.5rem;
  bottom: 6.25rem;
  width: min(23rem, calc(100vw - 2rem));
  max-height: min(34rem, calc(100vh - 8rem));
  display: flex;
  flex-direction: column;
  background: #0d1730;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.98);
  transition: opacity .18s ease, transform .18s ease;
}
.chat-panel-overlay.open .chat-panel {
  pointer-events: auto;
}
.chat-panel-overlay.open .chat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (max-width: 480px) {
  .chat-panel { right: .75rem; bottom: 5.5rem; }
}
.chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  color: #fff;
  flex-shrink: 0;
}
.chat-panel-header-info {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.chat-panel-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.chat-panel-avatar svg { width: 1.15rem; height: 1.15rem; }
.chat-panel-header-info strong { display: block; font-size: .92rem; }
.chat-panel-status { display: block; font-size: .74rem; color: rgba(255, 255, 255, .8); }
.chat-panel-close {
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.chat-panel-body {
  flex: 1;
  overflow-y: auto;
  background: #f0f2f5;
  padding: .9rem;
  min-height: 8rem;
}
.chat-panel-messages {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.chat-msg {
  max-width: 85%;
  padding: .55rem .75rem;
  border-radius: .7rem;
  font-size: .85rem;
  line-height: 1.4;
}
.chat-msg p { margin: 0; }
.chat-msg--in {
  align-self: flex-start;
  background: #fff;
  color: #111827;
  border-bottom-left-radius: .2rem;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
}
.chat-msg--out {
  align-self: flex-end;
  background: #d9fdd3;
  color: #111827;
  border-bottom-right-radius: .2rem;
}
.chat-msg--system {
  align-self: center;
  background: transparent;
  color: #6b7280;
  font-size: .75rem;
  text-align: center;
}
.chat-panel-form {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: .85rem;
  background: #0d1730;
  border-top: 1px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
}
.chat-panel-form .form-control {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  border-radius: .6rem;
  padding: .6rem .75rem;
  font-size: .85rem;
}
.chat-panel-form .form-control::placeholder { color: rgba(255, 255, 255, .45); }
.chat-panel-error {
  margin: 0;
  font-size: .78rem;
  color: #fca5a5;
}
.chat-panel-send {
  flex-direction: row;
  align-items: center;
  padding: .65rem;
}
.chat-panel-send .form-control { flex: 1; }
.chat-panel-send-btn {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: none;
  background: #128c7e;
  color: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.chat-panel-send-btn:hover { background: #0f766e; }

/* Mobile vehicle CTA */
.mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; display: flex; gap: .5rem; padding: .75rem; background: #fff; border-top: 1px solid var(--nrm-border); z-index: 40; }
.mobile-cta-bar .btn { flex: 1; padding: .75rem; font-size: .85rem; }
.mobile-cta-spacer { height: 4.5rem; }

/* Admin (legacy table styling only - sidebar/layout now in admin.css) */
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.admin-table th, .admin-table td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--nrm-border); font-size: .9rem; }
.admin-table th { background: var(--nrm-light); font-weight: 600; }
.stats-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin-bottom: 2rem; }
.stat-card { background: #fff; padding: 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.stat-card .value { font-size: 2rem; font-weight: 700; color: var(--nrm-blue); }

/* Promo cards */
.promo-grid { display: grid; gap: 1.5rem; }
.promo-card-dark { background: linear-gradient(135deg, #05070d 0%, #0b1f4d 50%, #0b3f9c 100%); color: #fff; padding: 2rem; border-radius: var(--radius); }

/* Process steps */
.steps-grid { display: grid; gap: 1.5rem; }
.step-card { text-align: center; padding: 1.5rem; }
.step-number { width: 3rem; height: 3rem; border-radius: 50%; background: var(--nrm-blue); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.1rem; margin: 0 auto 1rem; }

/* Vehicle detail */
.detail-grid { display: grid; gap: 2rem; }
.detail-sidebar { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.5rem; }
.vehicle-gallery { display: grid; gap: .75rem; }
.gallery-main { aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; background: var(--nrm-charcoal); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: .5rem; }
.gallery-thumb {
  border: 2px solid transparent;
  border-radius: .5rem;
  overflow: hidden;
  padding: 0;
  background: var(--nrm-charcoal);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-thumb.is-active,
.gallery-thumb:hover { border-color: var(--nrm-blue-highlight); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.spec-item { background: rgba(255,255,255,.1); padding: .75rem; border-radius: .5rem; font-size: .85rem; }
.spec-item span { display: block; color: rgba(255,255,255,.6); font-size: .75rem; }

/* Lead popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 18, .72);
  backdrop-filter: blur(4px);
  z-index: 1200;
  display: none;
  place-items: center;
  padding: 1rem;
}
.popup-overlay.open {
  display: grid !important;
}
.popup-overlay[hidden] {
  display: none !important;
}
html.lead-popup-open,
html.lead-popup-open body {
  overflow: hidden;
}
.popup.lead-popup {
  background: linear-gradient(165deg, #0d1730 0%, #0a1224 55%, #070d1a 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem 1.5rem;
  max-width: 26.5rem;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  color: #fff;
  text-align: center;
}
.lead-popup .popup-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .75);
  cursor: pointer;
  padding: 0;
  transition: background .15s ease, color .15s ease;
}
.lead-popup .popup-close:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
.lead-popup-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.lead-popup-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.lead-popup-title {
  margin: 0 0 .55rem;
  font-size: clamp(1.45rem, 4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: #fff;
}
.lead-popup-sub {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
  line-height: 1.45;
}
.lead-popup-form {
  text-align: left;
}
.lead-field {
  position: relative;
  margin-bottom: .75rem;
}
.lead-field-icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .45);
  display: inline-flex;
  pointer-events: none;
  z-index: 1;
}
.lead-popup .form-control {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: .75rem;
  padding: .85rem 1rem .85rem 2.75rem;
  font-size: .95rem;
  min-height: 3rem;
}
.lead-popup .form-control::placeholder {
  color: rgba(255, 255, 255, .45);
}
.lead-popup select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,.55)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.5rem;
}
.lead-popup select.form-control option {
  color: #0a1224;
  background: #fff;
}
.lead-popup .form-control:focus {
  outline: none;
  border-color: rgba(37, 99, 235, .7);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .25);
  background: rgba(255, 255, 255, .08);
}
.lead-popup-consents {
  display: grid;
  gap: .65rem;
  margin: 1rem 0 1.15rem;
}
.lead-popup-consents.has-error {
  padding: .75rem;
  border-radius: .75rem;
  border: 1px solid rgba(248, 113, 113, .55);
  background: rgba(248, 113, 113, .08);
}
.lead-check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, .82);
  cursor: pointer;
}
.lead-check input {
  margin-top: .15rem;
  width: 1rem;
  height: 1rem;
  accent-color: #2563eb;
  flex-shrink: 0;
}
.lead-popup-error {
  margin: 0;
  font-size: .8rem;
  line-height: 1.35;
  color: #fca5a5;
}
.lead-popup-success {
  text-align: center;
  padding: .5rem 0 .25rem;
}
.lead-popup-success-icon {
  width: 3.6rem;
  height: 3.6rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #86efac;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .35);
}
.lead-popup-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  min-height: 3.1rem;
  border-radius: .8rem;
  font-weight: 700;
  font-size: .98rem;
}
.lead-popup-legal {
  margin: .9rem 0 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
}
.lead-popup-legal a {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* Responsive */
@media (min-width: 768px) {
  .search-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.2fr 1fr; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .faq-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .faq-cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.35rem; }
  .main-nav { display: flex; gap: .25rem .35rem; }
  .main-nav > a,
  .main-nav .nav-trigger { padding: .5rem .6rem; font-size: .8rem; }
  .header-ctas { display: flex; }
  .header-calls { gap: .65rem; }
  .header-call { gap: .45rem; }
  .header-call-number { font-size: .8rem; }
  .menu-toggle { display: none; }
  .logo--image-only .logo-image { height: 100px; max-width: 380px; }
  .hero-grid { grid-template-columns: 1fr 1fr; padding: 6rem 1.5rem; }
  .hero-image { display: block; }
  .vehicle-grid { grid-template-columns: repeat(3, 1fr); }
  .search-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-grid { grid-template-columns: repeat(6, 1fr); }
  .footer-main { grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr)); gap: 2rem 1.75rem; }
  .detail-grid { grid-template-columns: 1.5fr 1fr; }
  .listing-layout { grid-template-columns: 240px 1fr; }
  .steps-grid.four { grid-template-columns: repeat(4, 1fr); }
  .mobile-cta-bar, .mobile-cta-spacer { display: none; }
}
@media (min-width: 1280px) {
  .header-inner { gap: 1.75rem; }
  .main-nav { gap: .2rem .45rem; }
  .main-nav > a,
  .main-nav .nav-trigger { padding: .5rem .7rem; font-size: .8375rem; }
  .header-calls { gap: .85rem; }
  .header-call { gap: .55rem; }
  .header-call-number { font-size: .875rem; }
  .vehicle-grid.four { grid-template-columns: repeat(4, 1fr); }
}

/* Homepage */
.page-home main { overflow-x: hidden; }

.home-hero {
  position: relative;
  min-height: clamp(640px, 88vh, 920px);
  background: var(--nrm-black) var(--hero-image) center right / cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.home-hero-overlay {
  flex: 1;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5,7,13,.62) 0%, rgba(5,7,13,.38) 38%, rgba(5,7,13,.12) 62%, rgba(5,7,13,.04) 100%),
    linear-gradient(180deg, rgba(5,7,13,.28) 0%, transparent 30%, transparent 72%, rgba(5,7,13,.32) 100%);
  padding: clamp(6.5rem, 11vw, 8.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}
.home-hero-inner { width: 100%; }
.home-hero-content { max-width: 620px; width: 100%; }
.home-hero-eyebrow {
  color: var(--nrm-blue-highlight);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.home-hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.65rem);
  line-height: 1.08;
  margin-bottom: 1.35rem;
  font-weight: 800;
  letter-spacing: -.035em;
  text-shadow: 0 2px 18px rgba(5,7,13,.45);
}
.home-hero-text {
  color: rgba(255,255,255,.92);
  font-size: clamp(1rem, 1.7vw, 1.125rem);
  line-height: 1.7;
  max-width: 34rem;
  text-shadow: 0 1px 12px rgba(5,7,13,.4);
}
.home-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.25rem;
}
.page-home .home-hero-ctas .btn {
  padding: .9rem 1.6rem;
  border-radius: .625rem;
  font-size: .9375rem;
}
.home-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.home-hero-cta-icon {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.home-hero-cta-icon svg { width: 100%; height: 100%; }
.home-hero-cta-label { flex: 1; text-align: left; }
.home-hero-cta-arrow {
  margin-left: .15rem;
  font-weight: 400;
  opacity: .9;
}

.home-hero .home-search-wrap {
  margin-top: 0;
  margin-bottom: clamp(-2.75rem, -4vw, -3.5rem);
  position: relative;
  z-index: 12;
  padding-bottom: 0;
  width: 100%;
}
.search-panel--home {
  background: linear-gradient(180deg, rgba(18,26,46,.97) 0%, rgba(10,16,30,.98) 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  padding: clamp(1.5rem, 2.5vw, 1.85rem) clamp(1.35rem, 2.5vw, 2rem) clamp(1.1rem, 2vw, 1.35rem);
  color: #fff;
  backdrop-filter: blur(8px);
}
.search-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.search-panel-title {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.search-panel-title-icon {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--nrm-blue-highlight);
  flex-shrink: 0;
}
.search-panel-title-icon svg { width: 100%; height: 100%; }
.search-panel-header .search-clear {
  font-size: .8125rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
  white-space: nowrap;
}
.search-panel-header .search-clear:hover { color: #fff; }
.search-panel--home .form-group label {
  color: rgba(255,255,255,.7);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}
.search-panel--home .form-group { margin-bottom: 0; min-width: 0; }
.search-panel--home .form-control {
  background: #fff;
  color: var(--nrm-text);
  border-color: transparent;
  min-height: 46px;
  border-radius: .5rem;
  font-size: .9rem;
  padding: .65rem .85rem;
}
.search-panel-row {
  display: grid;
  gap: 1rem .75rem;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}
.search-panel-submit {
  grid-column: 1 / -1;
  min-height: 48px;
  width: 100%;
  padding-inline: 1.4rem;
  gap: .55rem;
  white-space: nowrap;
  border-radius: .625rem;
}
.search-panel-footer {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.search-panel-footer-icon {
  display: grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  color: var(--nrm-blue-highlight);
  flex-shrink: 0;
}
.search-panel-footer-icon svg { width: 100%; height: 100%; }
.search-clear { color: rgba(255,255,255,.75); }
.search-clear:hover { color: #fff; }

/* Mobile home hero — stacked CTAs + dark search fields (desktop resets below) */
@media (max-width: 899px) {
  .home-hero {
    min-height: 0;
    /* Frame front/side of the car so it reads behind the CTA → search gap */
    background-position: 78% 48%;
    background-size: cover;
  }
  .home-hero-overlay {
    align-items: flex-start;
    /* Extra top pad clears the fixed header; bottom pad opens car band above search */
    padding: clamp(7.25rem, 22vw, 8.5rem) 0 clamp(7.5rem, 28vw, 11rem);
    background:
      linear-gradient(180deg, rgba(5,7,13,.55) 0%, rgba(5,7,13,.28) 32%, rgba(5,7,13,.08) 58%, rgba(5,7,13,.15) 78%, rgba(5,7,13,.38) 100%),
      linear-gradient(105deg, rgba(5,7,13,.35) 0%, rgba(5,7,13,.06) 52%, transparent 100%);
  }
  .home-hero-eyebrow { margin-bottom: .9rem; }
  .home-hero h1 {
    font-size: clamp(2.15rem, 8vw, 2.75rem);
    margin-bottom: 1rem;
  }
  .home-hero-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .home-hero-ctas {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: .75rem;
    margin-top: 1.75rem;
    width: 100%;
  }
  .page-home .home-hero-ctas .btn {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 1.1rem;
    font-size: .9375rem;
  }
  .home-hero-cta-arrow {
    margin-left: auto;
  }
  .home-hero .home-search-wrap {
    margin-top: clamp(.25rem, 2vw, .75rem);
    margin-bottom: -1.75rem;
    padding-bottom: 0;
  }
  .search-panel--home {
    padding: 1.25rem 1.1rem 1rem;
    border-radius: .9rem;
  }
  .search-panel-title { font-size: 1.05rem; }
  .search-panel-header { margin-bottom: 1.1rem; }
  .search-panel--home .form-control {
    background: rgba(8, 14, 28, .85);
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='rgba(255,255,255,.75)' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .85rem center;
    padding-right: 2.25rem;
  }
  .search-panel--home .form-control option {
    color: var(--nrm-text);
    background: #fff;
  }
}

.home-section { padding: var(--section-pad) 0; }
.home-section + .home-section { border-top: 1px solid transparent; }
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.section-heading-row h2,
.home-section h2,
.home-trust-title,
.home-visit-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--nrm-text);
  letter-spacing: -.03em;
  line-height: 1.2;
}
.section-link,
.home-faq-link {
  color: var(--nrm-blue);
  font-weight: 600;
  font-size: .9375rem;
  white-space: nowrap;
}
.section-link:hover,
.home-faq-link:hover { color: var(--nrm-blue-dark); }

.home-featured { background: #fff; padding-top: clamp(5rem, 8vw, 6.5rem); }
.home-featured .vehicle-grid { gap: clamp(1.5rem, 3vw, 2rem); }
.home-featured .vehicle-card .card-body { padding: 1.5rem 1.5rem 1.75rem; }
.home-featured .vehicle-card h3 { font-size: 1.0625rem; letter-spacing: -.01em; }
.home-featured .vehicle-price { margin: 1rem 0; font-size: 1.625rem; }
.home-featured .vehicle-actions { margin-top: 1.25rem; gap: .85rem; }
.home-featured .vehicle-actions .btn { padding: .75rem 1rem; }

.home-trust { background: var(--nrm-light); }
.home-trust-title { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.home-trust-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: 1fr;
}
.home-trust-item { text-align: center; padding: 0 .5rem; }
.home-trust-icon {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--nrm-border);
  color: var(--nrm-blue);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow);
}
.home-trust-icon svg { width: 1.5rem; height: 1.5rem; }
.home-trust-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; letter-spacing: -.01em; }
.home-trust-item p { font-size: .875rem; color: var(--nrm-muted); line-height: 1.65; max-width: 14rem; margin-inline: auto; }

.home-promo-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.home-promo-card {
  position: relative;
  min-height: clamp(300px, 32vw, 360px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--nrm-black) var(--promo-image) center/cover no-repeat;
  display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}
.home-promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.home-promo-overlay {
  min-height: inherit;
  padding: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(5,7,13,.1) 0%, rgba(5,7,13,.75) 55%, rgba(5,7,13,.9) 100%);
  color: #fff;
}
.home-promo-overlay h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 800;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.home-promo-overlay p {
  color: rgba(255,255,255,.85);
  font-size: .9375rem;
  line-height: 1.65;
  max-width: 26rem;
  margin-bottom: 1.5rem;
}
.home-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  width: fit-content;
  background: var(--nrm-blue);
  color: #fff;
  padding: .8rem 1.35rem;
  border-radius: .625rem;
  font-weight: 600;
  font-size: .9375rem;
}
.home-promo-btn--dark { background: rgba(17,24,39,.92); border: 1px solid rgba(255,255,255,.15); }

.home-reviews-faq { background: #f4f7fb; }
.home-split-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.home-reviews-col > h2,
.home-faq-col > h2 {
  margin-bottom: 1rem;
  color: #0b1b3a;
}
.home-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.5rem;
  padding: .55rem .9rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: .75rem;
  font-size: .875rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.home-rating-label {
  font-weight: 700;
  color: var(--nrm-text);
}
.home-rating-stars {
  color: #f5b400;
  letter-spacing: .08em;
  font-size: .95rem;
  line-height: 1;
}
.home-review-carousel {
  position: relative;
  padding-inline: 1.35rem;
}
.home-review-viewport { position: relative; }
.home-review-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .05);
  border-radius: 1.15rem;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
}
.home-review-card[hidden] { display: none !important; }
.home-review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}
.home-review-quote {
  font-size: 3.5rem;
  line-height: .7;
  font-weight: 700;
  color: rgba(31, 95, 214, .28);
  font-family: Georgia, 'Times New Roman', serif;
}
.home-review-card .review-stars {
  margin-bottom: 0;
  color: #f5b400;
  font-size: 1.05rem;
  letter-spacing: .08em;
}
.home-review-text {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.35rem;
}
.home-review-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1.15rem;
  border-top: 1px solid #e8eef5;
}
.home-review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(31, 95, 214, .12);
  color: var(--nrm-blue);
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.home-review-name {
  font-weight: 700;
  color: #0b1b3a;
  font-size: .95rem;
}
.home-review-date {
  margin-left: auto;
  font-size: .875rem;
  color: var(--nrm-muted);
}
.home-review-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
  color: #0b1b3a;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .1);
  transition: background .2s, color .2s, box-shadow .2s;
}
.home-review-nav:hover {
  background: var(--nrm-blue);
  border-color: var(--nrm-blue);
  color: #fff;
}
.home-review-nav svg { width: 1rem; height: 1rem; }
.home-review-nav--prev { left: 0; }
.home-review-nav--next { right: 0; }
.home-review-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  margin-top: 1.25rem;
}
.home-review-dots {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.home-review-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #c9d4e5;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.home-review-dot.is-active {
  background: var(--nrm-blue);
  transform: scale(1.15);
}
.home-review-count {
  font-size: .8125rem;
  color: var(--nrm-muted);
  font-weight: 500;
}
.home-faq-col > h2 { margin-bottom: 1.5rem; }
.home-faq-list { display: grid; gap: .85rem; }
.home-faq-list .faq-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .05);
  border-radius: 1rem;
  margin-bottom: 0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  overflow: hidden;
}
.home-faq-list .faq-question {
  padding: 1.2rem 1.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0b1b3a;
  align-items: center;
}
.home-faq-list .faq-plus {
  color: var(--nrm-blue);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  transition: transform .2s ease;
}
.home-faq-list .faq-item.open .faq-plus { transform: rotate(45deg); }
.home-faq-list .faq-answer {
  padding: 0 1.35rem 1.2rem;
  line-height: 1.65;
  font-size: .9375rem;
}
.home-faq-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.35rem;
  font-weight: 600;
}

.home-newsletter {
  background: linear-gradient(135deg, #1f5fd6 0%, #2563eb 100%);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.home-newsletter-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.home-newsletter-copy {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.home-newsletter-copy svg { flex-shrink: 0; margin-top: .2rem; opacity: .9; }
.home-newsletter-copy h2 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
  line-height: 1.35;
}
.home-newsletter-copy p {
  color: rgba(255,255,255,.9);
  font-size: .9375rem;
  line-height: 1.6;
  max-width: 28rem;
}
.home-newsletter-form {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
}
.home-newsletter-form .form-control {
  min-height: 52px;
  border: none;
  border-radius: .625rem;
  padding-inline: 1.15rem;
  font-size: .9375rem;
}
.home-newsletter-form .btn {
  min-height: 52px;
  background: var(--nrm-black);
  padding-inline: 1.75rem;
  border-radius: .625rem;
}
.home-newsletter-form .btn:hover { background: var(--nrm-charcoal); }
.hp-field { display: none !important; }

.home-visit { background: #fff; }
.home-visit-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}
.home-visit-title { margin-bottom: clamp(2rem, 4vw, 3rem); }
.home-visit-card {
  background: var(--nrm-light);
  border: 1px solid var(--nrm-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
}
.home-visit-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}
.home-visit-list,
.home-hours-list { display: grid; gap: 1rem; }
.home-visit-list li,
.home-hours-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: .9375rem;
  color: var(--nrm-muted);
  line-height: 1.5;
}
.home-hours-list li { justify-content: space-between; gap: 2rem; }
.home-visit-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--nrm-border);
  color: var(--nrm-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.home-visit-icon svg { width: 1rem; height: 1rem; }
.home-visit-list a { color: var(--nrm-blue); font-weight: 500; }
.home-visit-map {
  min-height: 340px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

@media (min-width: 640px) {
  .home-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .search-panel-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .search-panel-row { grid-template-columns: repeat(2, 1fr); }
  .home-trust-grid { grid-template-columns: repeat(3, 1fr); }
  .home-promo-grid { grid-template-columns: 1fr 1fr; }
  .home-newsletter-form { grid-template-columns: 1fr auto; align-items: center; }
  .home-visit-grid { grid-template-columns: 1fr 1fr; }
  .home-visit-map { grid-column: span 2; min-height: 380px; }
}

@media (max-width: 640px) {
  .home-review-carousel { padding-inline: 1.05rem; }
  .home-review-nav {
    width: 2.1rem;
    height: 2.1rem;
  }
  .home-review-card { padding: 1.5rem 1.25rem 1.25rem; }
  .home-review-text { font-size: 1rem; }
  .home-faq-col > h2 { margin-bottom: 1.15rem; }
}

@media (min-width: 1024px) {
  .search-panel-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 1.25rem;
  }
  .search-panel-submit {
    grid-column: 1 / -1;
    width: auto;
    justify-self: start;
    min-width: 200px;
    margin-top: .25rem;
  }
  .home-trust-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 2rem; }
  .home-split-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .home-newsletter-inner { grid-template-columns: 1.15fr 1fr; gap: 3rem; }
  .home-visit-grid { grid-template-columns: 1fr 1fr 1.15fr; }
  .home-visit-map { grid-column: auto; min-height: 100%; }
}

@media (min-width: 1200px) {
  .search-panel-row {
    grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
    gap: .85rem 1rem;
    align-items: end;
  }
  .search-panel-submit {
    grid-column: auto;
    margin-top: 0;
    min-width: 150px;
    width: auto;
  }
  .home-trust-grid { grid-template-columns: repeat(6, 1fr); gap: 2rem 1.5rem; }
}

/* Stock listing pages (Used Cars / Used Vans) */
.page-stock {
  background: #070b14;
  color: #fff;
}
.page-stock .text-accent { color: var(--nrm-blue-highlight); }

.stock-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(31,95,214,.18), transparent 45%),
    linear-gradient(180deg, #0a1020 0%, #070b14 100%);
}
.stock-hero-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.stock-hero-content .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.55);
}
.stock-hero-content .breadcrumb a:hover { color: #fff; }
.stock-hero h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 1.15rem;
  max-width: 16ch;
}
.page-used-cars .stock-hero h1 { max-width: 14ch; }
.page-used-vans .stock-hero h1 { max-width: 12ch; }
.page-used-vans .split-hero-media img { object-position: 62% 45%; }
.stock-hero-content > p {
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  max-width: 34rem;
}
.stock-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.stock-hero-features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stock-hero-features li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.stock-hero-feature-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(31,95,214,.15);
  border: 1px solid rgba(59,130,246,.28);
  color: var(--nrm-blue-highlight);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.stock-hero-feature-icon svg { width: 1.05rem; height: 1.05rem; }
.stock-hero-features strong {
  display: block;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .15rem;
}
.stock-hero-features li > span:last-child span {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .8125rem;
  line-height: 1.45;
}
.stock-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111827;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
}
.stock-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark above mid-search-bar, white from mid-bar downward */
.stock-search-split {
  display: grid;
  background: #fff;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 5;
}
.stock-search-split::before {
  content: '';
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #070b14 50%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.stock-search-split > .container {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
}
.search-panel--stock {
  background: linear-gradient(180deg, rgba(18,26,46,.98) 0%, rgba(12,18,34,.99) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-top: 0;
  color: #fff;
}
.search-panel--stock .form-group label {
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}
.search-panel--stock .form-group { margin-bottom: 0; min-width: 0; }
.search-panel--stock .form-control {
  background: #fff;
  color: var(--nrm-text);
  border: 1px solid transparent;
  min-height: 46px;
  border-radius: .55rem;
  font-size: .9rem;
  padding: .65rem .85rem;
}
.search-panel--stock .form-control:focus {
  border-color: var(--nrm-blue-highlight);
  box-shadow: 0 0 0 3px rgba(59,130,246,.2);
  background: #fff;
}
.search-panel-stock-grid {
  display: grid;
  gap: 1rem .85rem;
  grid-template-columns: 1fr;
  align-items: end;
}
.search-panel-stock-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1.15rem;
  justify-content: flex-end;
}
.search-panel--stock .search-clear {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.search-panel--stock .search-clear:hover { color: #fff; }
.search-panel--stock .search-panel-submit {
  width: auto;
  min-width: 150px;
}

.stock-results {
  background: #fff;
  color: var(--nrm-text);
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
}
.stock-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.stock-results-count {
  color: var(--nrm-muted);
  font-size: .95rem;
}
.stock-results-count strong { color: var(--nrm-text); font-weight: 700; }
.stock-view-toggle {
  display: inline-flex;
  gap: .35rem;
  padding: .25rem;
  background: var(--nrm-light);
  border: 1px solid var(--nrm-border);
  border-radius: .65rem;
}
.stock-view-btn {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: .45rem;
  background: transparent;
  color: var(--nrm-muted);
  cursor: pointer;
  transition: color .2s, background .2s;
}
.stock-view-btn:hover { color: var(--nrm-text); }
.stock-view-btn.is-active {
  background: rgba(31,95,214,.12);
  color: var(--nrm-blue);
}

.page-stock .vehicle-card {
  background: linear-gradient(180deg, #121a2e 0%, #0d1424 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  color: #fff;
}
.page-stock .vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
  border-color: rgba(59,130,246,.28);
}
.page-stock .vehicle-card-image {
  background: #0a1020;
  border-radius: var(--radius) var(--radius) 0 0;
}
.page-stock .vehicle-card h3 {
  color: #fff;
  font-size: 1.0625rem;
  letter-spacing: -.01em;
}
.page-stock .vehicle-card .text-muted,
.page-stock .vehicle-meta {
  color: rgba(255,255,255,.55);
}
.page-stock .vehicle-price {
  color: var(--nrm-blue-highlight);
  font-size: 1.55rem;
}
.page-stock .vehicle-actions .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.page-stock .vehicle-actions .btn-secondary:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.4);
}
.page-stock .badge-blue {
  background: var(--nrm-blue);
  border-radius: .35rem;
  font-size: .68rem;
  letter-spacing: .03em;
  text-transform: none;
}
.stock-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--nrm-light);
  border: 1px solid var(--nrm-border);
  border-radius: var(--radius-lg);
  color: var(--nrm-muted);
}
.stock-empty .btn { margin-top: 1.25rem; }

.page-stock .vehicle-grid--list {
  grid-template-columns: 1fr;
}
.page-stock .vehicle-grid--list .vehicle-card {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
}
.page-stock .vehicle-grid--list .vehicle-card-media {
  min-height: 100%;
}
.page-stock .vehicle-grid--list .vehicle-card-image {
  aspect-ratio: auto;
  min-height: 100%;
  height: 100%;
  border-radius: var(--radius) 0 0 var(--radius);
}
.page-stock .vehicle-grid--list .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-stock .vehicle-grid--list .vehicle-actions {
  max-width: 22rem;
}

.cta-band--finance {
  background: #fff;
  text-align: left;
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
}
.cta-band-finance-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(18,26,46,.98) 0%, rgba(12,20,40,.99) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2.25rem);
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.cta-band-finance-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(31,95,214,.18);
  border: 1px solid rgba(59,130,246,.35);
  color: var(--nrm-blue-highlight);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  flex-shrink: 0;
}
.cta-band-finance-copy h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .45rem;
  color: #fff;
}
.cta-band-finance-copy p {
  color: rgba(255,255,255,.65);
  margin: 0;
  max-width: 36rem;
  font-size: .95rem;
  line-height: 1.6;
}
.cta-band-finance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.stock-visit {
  background: #fff;
  padding: 0 0 clamp(4rem, 7vw, 5.5rem);
}
.stock-visit-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}
.stock-visit-card {
  background: linear-gradient(180deg, #121a2e 0%, #0d1424 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
}
.stock-visit-card h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
  color: #fff;
}
.stock-visit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.75rem 0 1rem;
  color: #fff;
}
.stock-visit-list,
.stock-hours-list {
  display: grid;
  gap: 1rem;
}
.stock-visit-list li,
.stock-hours-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.stock-hours-list li {
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: .65rem;
}
.stock-hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.stock-visit-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: rgba(31,95,214,.15);
  border: 1px solid rgba(59,130,246,.28);
  color: var(--nrm-blue-highlight);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.stock-visit-icon svg { width: 1.05rem; height: 1.05rem; }
.stock-visit-list a {
  color: var(--nrm-blue-highlight);
  font-weight: 500;
}
.stock-visit-list a:hover { color: #fff; }
.stock-visit-directions { margin-top: 1.75rem; }
.stock-visit-map {
  min-height: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  background: #0a1020;
}
.stock-visit-map iframe { min-height: 360px; }

.page-stock .alert-success { background: rgba(34,197,94,.15); color: #86efac; border: 1px solid rgba(34,197,94,.25); }
.page-stock .alert-error { background: rgba(239,68,68,.15); color: #fca5a5; border: 1px solid rgba(239,68,68,.25); }

@media (min-width: 640px) {
  .search-panel-stock-grid { grid-template-columns: repeat(2, 1fr); }
  .search-panel-stock-actions { grid-column: 1 / -1; }
}

@media (min-width: 768px) {
  .stock-hero-grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
  .stock-hero-features { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .cta-band-finance-inner {
    grid-template-columns: auto 1fr auto;
    gap: 1.75rem;
  }
  .stock-visit-grid { grid-template-columns: .95fr 1.15fr; align-items: stretch; }
  .stock-visit-map { min-height: 100%; }
  .stock-visit-map iframe { height: 100%; min-height: 100%; }
}

@media (min-width: 1024px) {
  .search-panel-stock-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem 1rem;
  }
  .search-panel-stock-actions {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1280px) {
  .search-panel-stock-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr)) auto;
    gap: .85rem 1rem;
  }
  .search-panel-stock-actions {
    grid-column: auto;
    padding-bottom: .05rem;
  }
}

@media (max-width: 767px) {
  .page-stock .vehicle-grid--list .vehicle-card {
    grid-template-columns: 1fr;
  }
  .page-stock .vehicle-grid--list .vehicle-card-image {
    aspect-ratio: 16/10;
    min-height: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .page-stock .vehicle-grid--list .vehicle-actions {
    max-width: none;
  }
}

/* Finance Proposal calculator embed */
.page-finance .finance-calculator-wrap {
  max-width: 56rem;
}
.page-finance .finance-calculator-intro {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.page-finance .finance-calculator-embed {
  background: #fff;
  border: 1px solid var(--nrm-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  overflow-x: auto;
}
.page-finance .finance-calculator-embed .financeproposal-calc-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

/* Finance application modal */
html.finance-apply-modal-open,
html.finance-apply-modal-open body {
  overflow: hidden;
}
.finance-apply-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(.75rem, 2vw, 1.25rem);
}
.finance-apply-modal[hidden] {
  display: none !important;
}
.finance-apply-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, .72);
  backdrop-filter: blur(2px);
}
.finance-apply-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 56rem);
  max-height: min(94vh, 980px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .4);
  overflow: hidden;
}
.finance-apply-modal-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.1rem;
  background: linear-gradient(135deg, #121a2e 0%, #0d1424 100%);
  color: #fff;
  flex-shrink: 0;
}
.finance-apply-modal-header h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  grid-column: 2;
  text-align: center;
}
.finance-apply-modal-back {
  appearance: none;
  border: 0;
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  grid-column: 1;
  justify-self: start;
}
.finance-apply-modal-back:hover,
.finance-apply-modal-back:focus-visible {
  background: rgba(255,255,255,.2);
  outline: none;
}
.finance-apply-modal-close {
  appearance: none;
  border: 0;
  background: rgba(255,255,255,.1);
  color: #fff;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  grid-column: 3;
  justify-self: end;
}
.finance-apply-modal-close:hover,
.finance-apply-modal-close:focus-visible {
  background: rgba(255,255,255,.2);
  outline: none;
}
.finance-apply-modal-body {
  flex: 1;
  min-height: 0;
  background: #fff;
}
.finance-apply-modal-frame {
  display: block;
  width: 100%;
  height: min(78vh, 820px);
  border: 0;
  background: #fff;
}
.finance-apply-modal-note {
  margin: 0;
  padding: .65rem 1rem;
  font-size: .78rem;
  color: #64748b;
  background: #f8fafc;
  border-top: 1px solid var(--nrm-border);
  flex-shrink: 0;
}
.finance-modal-view--calculator {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  overflow-x: auto;
}
.finance-calculator-embed--modal {
  background: #fff;
  border: 0;
  box-shadow: none;
  padding: 0;
}
@media (max-width: 640px) {
  .finance-apply-modal {
    padding: 0;
  }
  .finance-apply-modal-dialog {
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .finance-apply-modal-frame {
    height: calc(100vh - 7rem);
  }
}

/* On-site finance application (Evolution Funding form iframe) */
.page-finance-apply .finance-apply-hero {
  background: linear-gradient(135deg, #121a2e 0%, #0d1424 100%);
  color: #fff;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(1.25rem, 3vw, 1.75rem);
}
.page-finance-apply .finance-apply-breadcrumb {
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
  font-size: .875rem;
}
.page-finance-apply .finance-apply-breadcrumb a {
  color: rgba(255,255,255,.85);
}
.page-finance-apply .finance-apply-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 .5rem;
}
.page-finance-apply .finance-apply-lead {
  margin: 0;
  max-width: 40rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}
.page-finance-apply .finance-apply-frame-section {
  background: var(--nrm-light);
  padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}
.page-finance-apply .finance-apply-frame-wrap {
  max-width: 64rem;
}
.page-finance-apply .finance-apply-frame {
  display: block;
  width: 100%;
  min-height: min(92vh, 1100px);
  height: 92vh;
  border: 1px solid var(--nrm-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.page-finance-apply .finance-apply-fallback,
.page-finance-apply .finance-apply-disclaimer {
  margin-top: 1rem;
  font-size: .85rem;
  text-align: center;
  line-height: 1.5;
}
