/* ==========================================================================
   Flexigo Cars — Design System
   Brand: navy #1B4350 / orange #FEC20A (matches the existing Vehicle Finder tool)
   ========================================================================== */

:root {
  --navy: #1B4350;
  --navy-deep: #12333d;
  --navy-mid: #234f5e;
  --orange: #FEC20A;
  --orange-dark: #e3aa00;
  --cream: #f7f5f1;
  --white: #ffffff;
  --text: #1d2635;
  --muted: #687386;
  --border: #dfe4ea;
  --success: #1c7c4d;
  --success-bg: #eaf7ef;
  --danger: #c0392b;
  /* Flexigo palette (from brand colour guide) */
  --p-slate: #5E667A;
  --p-charcoal: #54595F;
  --p-grey: #7A7A7A;
  --p-navy-grey: #474D5C;
  --p-mint: #C3E6E0;
  --p-sage: #90B9B7;
  --p-lime: #CFE979;
  --p-sky: #E7F4FB;
  --p-steel: #A0BCC4;
  --p-cloud: #D7D8DA;
  --shadow-sm: 0 2px 10px rgba(16,26,46,.06);
  --shadow-md: 0 12px 30px rgba(16,26,46,.10);
  --shadow-lg: 0 24px 60px rgba(16,26,46,.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --header-h: 76px;
  --transition: 200ms cubic-bezier(.4,0,.2,1);
  color-scheme: light;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--orange); color: var(--navy); padding: 10px 16px; z-index: 10000; font-weight: 700; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid rgba(254,194,10,.55); outline-offset: 2px; }
section.section { padding: 88px 0; }
.section-narrow { padding: 56px 0; }
.section-alt { background: var(--cream); }
.section-navy { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: rgba(255,255,255,.92); }
.section-navy h2, .section-navy h3 { color: #fff; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .78rem; color: var(--orange-dark); margin-bottom: 10px; }
.section-navy .eyebrow { color: var(--orange); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }
.section-navy .lead { color: rgba(255,255,255,.82); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px; font-weight: 800; font-size: .96rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--navy); border-color: var(--orange); box-shadow: 0 10px 24px rgba(254,194,10,.28); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.section-navy .btn-outline { color: #fff; border-color: rgba(255,255,255,.6); }
.section-navy .btn-outline:hover { background: #fff; color: var(--navy); }
.btn-ghost { background: rgba(27,67,80,.06); color: var(--navy); border-color: transparent; }
.btn-ghost:hover { background: rgba(27,67,80,.12); }
.btn-whatsapp { background: #25D366; color: #06301a; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebd58; }
.btn-sm { padding: 10px 18px; font-size: .86rem; }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.link-btn { background: none; border: 0; padding: 0; color: inherit; text-decoration: underline; cursor: pointer; font: inherit; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 500; background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }
.main-nav { display: none; align-items: center; gap: 4px; margin-right: auto; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer;
  padding: 10px 14px; font-weight: 700; font-size: .93rem; color: var(--navy); border-radius: 10px;
  transition: background var(--transition);
}
.nav-link:hover, .nav-item.open .nav-link { background: rgba(27,67,80,.07); }
.nav-item svg { transition: transform var(--transition); opacity: .6; }
.nav-item.open svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); padding: 10px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition);
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 10px 12px; border-radius: 8px; font-size: .92rem; font-weight: 600; text-decoration: none; color: var(--text); }
.dropdown a:hover { background: var(--cream); color: var(--navy); }
.header-cta { display: none; align-items: center; gap: 10px; flex-shrink: 0; }
.header-finder-cta { display: none; }
@media (min-width: 1240px) { .header-finder-cta { display: inline-flex; } }

.menu-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 10px;
  background: #fff; cursor: pointer; margin-left: auto;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 0 auto; transition: transform var(--transition), opacity var(--transition); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1080px) {
  .main-nav { display: flex; }
  .header-cta { display: flex; }
  .menu-toggle { display: none; }
}

/* Mobile off-canvas menu — fixed, high z-index, above all content, own scroll */
.mobile-menu-backdrop {
  position: fixed; inset: 0; background: rgba(15,25,38,.5); z-index: 998;
  opacity: 0; visibility: hidden; transition: opacity var(--transition);
}
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(88vw, 380px); z-index: 999;
  background: #fff; box-shadow: -10px 0 40px rgba(0,0,0,.2);
  transform: translateX(100%); transition: transform 260ms cubic-bezier(.4,0,.2,1);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
body.menu-open .mobile-menu { transform: translateX(0); }
body.menu-open .mobile-menu-backdrop { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.mobile-menu-inner { padding: 18px 20px 40px; min-height: 100%; }
.mmenu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mmenu-top img { height: 32px; }
.menu-close { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); background: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--navy); }
.mnav-featured { display: grid; gap: 8px; margin-bottom: 6px; }
.mnav-featured a { display: block; text-align: center; padding: 12px 14px; border-radius: 10px; font-weight: 800; text-decoration: none; background: var(--orange); color: var(--navy); }
.mnav-featured a:nth-child(2), .mnav-featured a:nth-child(3) { background: rgba(27,67,80,.07); color: var(--navy); }
.mnav-group { border-top: 1px solid var(--border); padding: 0; }
.mnav-group summary { list-style: none; cursor: pointer; padding: 14px 0; display: flex; justify-content: space-between; align-items: center; }
.mnav-group summary::-webkit-details-marker { display: none; }
.mnav-group summary::after { content: "+"; color: var(--muted); font-size: 1.1rem; }
.mnav-group[open] summary::after { content: "−"; }
.mnav-heading { text-transform: uppercase; font-size: .74rem; letter-spacing: .1em; font-weight: 800; color: var(--muted); margin: 0; }
.mnav-group-links { padding-bottom: 10px; }
.mnav-group a { display: block; padding: 9px 0; font-weight: 700; text-decoration: none; color: var(--navy); }
.mnav-actions { display: grid; gap: 10px; margin-top: 20px; }
@media (min-width: 1080px) { .mobile-menu, .mobile-menu-backdrop { display: none; } }

/* ==========================================================================
   Homepage hero slides (100vh)
   ========================================================================== */
.hero-slide {
  min-height: 100svh; display: flex; align-items: center; position: relative;
  padding: calc(var(--header-h) + 32px) 0 48px;
}
.hero-slide-1 {
  background: linear-gradient(135deg, rgba(18,51,61,.62), rgba(94,102,122,.42)), url('https://images.cocoonvehicles.co.uk/flexigo/flexigo-header-bg-top.jpg') center/cover no-repeat;
  color: #fff; justify-content: center;
}
.hero-slide-1 .hero-copy { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.hero-logo { display: block; margin: 0 auto 18px; height: 44px; width: auto; max-width: 200px; object-fit: contain; }
.hero-slide-1 h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); }
.hero-slide-1 .lead { color: rgba(255,255,255,.86); margin: 0 auto; }
.hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.hero-badge { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); padding: 8px 14px; border-radius: 999px; font-size: .82rem; font-weight: 700; }
.scroll-cue { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .8rem; text-align: center; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

.hero-slide-alt { padding-top: calc(var(--header-h) + 56px); padding-bottom: 56px; }
.hero-slide-2 { background: var(--p-lime); }
.hero-slide-3 { background: var(--p-sage); }
.hero-slide-3 .lead, .hero-slide-3 p:not(.eyebrow) { color: rgba(18,32,38,.78); }
.hero-slide-4 { background: var(--p-sky); }
.hero-slide-5 { background: linear-gradient(135deg, var(--p-navy-grey), var(--navy-deep)); }
.hero-grid { display: grid; gap: 44px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }
.hero-grid.reverse .hero-media { order: -1; }
.hero-media img { border-radius: var(--radius-lg); width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.hero-phone { font-size: 1.5rem; font-weight: 900; color: var(--navy); display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.hero-phone small { display: block; font-weight: 600; font-size: .75rem; color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.check-list li::before { content: "✓"; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--orange); color: var(--navy); display: grid; place-items: center; font-size: .78rem; font-weight: 900; }

.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 760px) { .showcase-grid { grid-template-columns: repeat(4, 1fr); } }
.showcase-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.showcase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.showcase-card img { aspect-ratio: 4/3; object-fit: contain; background: var(--cream); padding: 18px; }
.showcase-card p { margin: 12px 0; font-weight: 800; color: var(--navy); }

/* ==========================================================================
   Multistep Quote Form
   ========================================================================== */
.quote-widget {
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  max-width: 460px; margin: 0 auto; overflow: hidden; text-align: left; color: var(--text);
  font-size: 14px;
}
@media (min-width: 900px) { .quote-widget { max-width: 640px; } }
@media (min-width: 1240px) { .quote-widget { max-width: 700px; } }
.quote-progress-wrap { padding: 14px 22px 0; }
.quote-progress-meta { display: flex; justify-content: space-between; font-size: .72rem; font-weight: 700; color: var(--muted); margin-bottom: 7px; }
.quote-progress { height: 5px; border-radius: 999px; background: #edf0f4; overflow: hidden; }
.quote-progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), #ff9a4c); transition: width 280ms ease; }
.quote-body { padding: 16px 22px 6px; min-height: 260px; }
.quote-step h2 { font-size: .98rem; margin-bottom: 3px; font-weight: 800; }
.quote-step .step-help { color: var(--muted); margin-bottom: 12px; font-size: .78rem; }
.quote-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; max-height: 340px; overflow-y: auto; padding: 2px; }
@media (min-width: 620px) { .quote-options.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.quote-option {
  border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 10px; text-align: left;
  background: #fff; cursor: pointer; font-weight: 700; font-size: .78rem; color: var(--text);
  transition: all var(--transition); position: relative;
}
.quote-option small { display: block; font-weight: 500; color: var(--muted); margin-top: 2px; font-size: .68rem; }
.quote-option:hover { border-color: var(--orange); transform: translateY(-1px); }
.quote-option[aria-pressed="true"] { border-color: var(--orange); background: #fff9e6; box-shadow: 0 0 0 3px rgba(254,194,10,.18); }
.quote-option[aria-pressed="true"]::after { content: "✓"; position: absolute; top: 6px; right: 6px; width: 16px; height: 16px; background: var(--orange); color: var(--navy); border-radius: 50%; display: grid; place-items: center; font-size: .6rem; }
.quote-field { margin-bottom: 12px; }
.quote-field label { display: block; font-weight: 700; margin-bottom: 5px; font-size: .78rem; }
.quote-field input, .quote-field select {
  width: 100%; padding: 9px 11px; border-radius: 8px; border: 1px solid var(--border); font-size: 14px; background: #fff;
  font-family: inherit; color: var(--text); appearance: none; -webkit-appearance: none;
}
.quote-field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23687386' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 16px; padding-right: 30px;
}
.quote-field input:focus, .quote-field select:focus { border-color: var(--orange); }
.quote-checkbox { display: flex; gap: 8px; align-items: flex-start; font-size: .74rem; color: var(--muted); }
.quote-search { width: 100%; padding: 9px 11px; border-radius: 8px; border: 1px solid var(--border); margin-bottom: 10px; font-size: 14px; }
.quote-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 22px 20px; border-top: 1px solid #edf0f4; }
.quote-footer-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.quote-footer .btn { font-size: .82rem; padding: 10px 18px; }
.quote-slider-value { font-weight: 800; color: var(--navy); font-size: .92rem; margin-top: 4px; }
input[type="range"] { width: 100%; accent-color: var(--orange); }
.quote-summary-card { background: var(--navy); color: #fff; border-radius: 12px; padding: 18px; text-align: center; margin-bottom: 14px; }
.quote-summary-card h3 { color: #fff; font-size: 1rem; }
.quote-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; padding: 0; list-style: none; }
.quote-chips li { background: var(--cream); border: 1px solid var(--border); border-radius: 999px; padding: 5px 10px; font-size: .7rem; font-weight: 700; }
.quote-success { text-align: center; padding: 20px 6px; }
.quote-success .tick { width: 52px; height: 52px; border-radius: 50%; background: var(--success-bg); color: var(--success); display: grid; place-items: center; margin: 0 auto 12px; font-size: 1.5rem; }

/* Inline, always-visible brand checklist (old-site style) */
.quote-brand-panel { border: 1px solid var(--border); border-radius: 8px; background: #fff; padding: 8px; max-height: 200px; overflow-y: auto; }
.quote-brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; }
@media (min-width: 620px) { .quote-brand-grid { grid-template-columns: repeat(3, 1fr); } }
.quote-brand-row {
  display: flex; flex-wrap: nowrap; align-items: center; gap: 7px; padding: 6px 7px;
  border-radius: 6px; font-size: .78rem; font-weight: 600; cursor: pointer;
  white-space: nowrap; overflow: hidden;
}
.quote-brand-row:hover { background: var(--cream); }
.quote-brand-row span { overflow: hidden; text-overflow: ellipsis; }
.quote-field .quote-brand-row input[type="checkbox"] {
  -webkit-appearance: checkbox; appearance: auto;
  width: 16px; height: 16px; min-width: 16px; padding: 0; margin: 0; border-radius: 4px;
  accent-color: var(--orange); flex-shrink: 0; cursor: pointer;
}

/* Sitemap page — grouped sections */
.sitemap-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 700px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .sitemap-grid { grid-template-columns: repeat(3, 1fr); } }
.sitemap-group h2 { font-size: 1.05rem; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--orange); }
.sitemap-group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.sitemap-group li a { font-size: .88rem; color: var(--text); text-decoration: none; }
.sitemap-group li a:hover { color: var(--orange); text-decoration: underline; }

/* ==========================================================================
   Cards / grids / generic content blocks
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2,1fr); }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 960px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .icon { font-size: 1.6rem; margin-bottom: 10px; display: inline-block; }

.tile-card { display: block; text-decoration: none; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.tile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.tile-card .tile-img { aspect-ratio: 16/10; background: var(--cream); display: grid; place-items: center; padding: 20px; }
.tile-card .tile-img img { max-height: 60px; object-fit: contain; }
.tile-card .tile-body { padding: 16px 18px; }
.tile-card h3 { margin: 0 0 4px; font-size: 1rem; }
.tile-card p { margin: 0; font-size: .84rem; color: var(--muted); }

/* Page hero (non-homepage) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: #fff;
  padding: calc(var(--header-h) + 48px) 0 60px;
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.85); }
.page-hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.6); }
.page-hero .btn-outline:hover { background: #fff; color: var(--navy); }
.page-hero .eyebrow { color: var(--orange); }
.page-hero .breadcrumbs-dark a:hover { color: #fff; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

.breadcrumbs { padding: 14px 0; font-size: .82rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; color: var(--muted); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--border); }
.breadcrumbs a { text-decoration: none; color: var(--muted); font-weight: 600; }
.breadcrumbs a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumbs-dark { color: rgba(255,255,255,.7); }
.breadcrumbs-dark ol { color: rgba(255,255,255,.7); }
.breadcrumbs-dark a { color: rgba(255,255,255,.85); }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 880px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; padding: 4px 20px; background: #fff; }
.faq-item summary { cursor: pointer; font-weight: 800; padding: 16px 0; color: var(--navy); list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--orange-dark); flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 0 18px; color: var(--muted); }
.faq-answer p:last-child { margin-bottom: 0; }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; text-align: center; }
@media (min-width: 760px) { .stat-strip { grid-template-columns: repeat(4,1fr); } }
.stat-strip .stat b { display: block; font-size: 2.1rem; font-weight: 900; color: var(--orange); }
.stat-strip .stat span { font-size: .84rem; color: rgba(255,255,255,.75); font-weight: 700; }

/* Steps */
.steps-list { counter-reset: step; display: grid; gap: 20px; }
@media (min-width: 760px) { .steps-list { grid-template-columns: repeat(3,1fr); } }
.step-card { position: relative; padding: 26px 22px 22px; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border); }
.step-card::before { counter-increment: step; content: counter(step); width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--orange); font-weight: 900; display: grid; place-items: center; margin-bottom: 14px; }

/* Table (price list) */
.price-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 20px; }
.price-toolbar select, .price-toolbar input { padding: 10px 12px; border-radius: 10px; border: 1px solid var(--border); }
.price-table-wrap { width: 100%; overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); }
table.price-table { width: 100%; border-collapse: collapse; min-width: 760px; }
table.price-table th, table.price-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: .88rem; white-space: nowrap; }
table.price-table th { background: var(--cream); color: var(--navy); position: sticky; top: 0; cursor: pointer; }
table.price-table tbody tr:hover { background: #fbfbf9; }

/* ==========================================================================
   Inventory / filters
   ========================================================================== */
.filters-toggle-btn {
  display: block; width: 100%; margin-bottom: 16px; padding: 12px 16px; border-radius: 10px;
  border: 1px solid var(--border); background: #fff; color: var(--navy); font-weight: 800; font-size: .9rem; cursor: pointer;
}
@media (min-width: 980px) { .filters-toggle-btn { display: none; } }
.inventory-layout { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 980px) { .inventory-layout { grid-template-columns: 280px 1fr; } }
.filters-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; position: sticky; top: calc(var(--header-h) + 16px); max-height: calc(100vh - var(--header-h) - 32px); overflow-y: auto; }
@media (max-width: 979px) {
  .filters-panel { display: none; position: static; max-height: none; }
  .filters-panel.mobile-open { display: block; }
}
.filters-panel h2 { font-size: 1rem; margin-bottom: 4px; }
.filter-group { border-top: 1px solid var(--border); padding: 14px 0; }
.filter-group:first-of-type { border-top: 0; padding-top: 8px; }
.filter-group summary { cursor: pointer; font-weight: 800; font-size: .88rem; color: var(--navy); list-style: none; display: flex; justify-content: space-between; }
.filter-group summary::-webkit-details-marker { display: none; }
.filter-group summary::after { content: "▾"; color: var(--muted); }
.filter-options { margin-top: 10px; display: grid; gap: 6px; max-height: 190px; overflow-y: auto; }
.filter-options label { display: flex; align-items: center; gap: 8px; font-size: .84rem; }
.filter-options input[type=checkbox] { accent-color: var(--orange); }
.filter-count { color: var(--muted); font-weight: 500; }
.range-row { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); margin-top: 6px; }

.results-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.results-count { font-weight: 700; color: var(--navy); }
.vat-toggle { display: inline-flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.vat-toggle button { border: 0; background: #fff; padding: 8px 16px; font-weight: 800; font-size: .82rem; cursor: pointer; color: var(--muted); }
.vat-toggle button.active { background: var(--navy); color: #fff; }
.active-filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.active-filter-chips .chip { display: inline-flex; align-items: center; gap: 6px; background: var(--cream); border: 1px solid var(--border); border-radius: 999px; padding: 5px 6px 5px 12px; font-size: .78rem; font-weight: 700; }
.active-filter-chips .chip button { border: 0; background: rgba(27,67,80,.1); width: 18px; height: 18px; border-radius: 50%; cursor: pointer; color: var(--navy); font-size: .7rem; }

.vehicle-grid-section { background: var(--p-sky); }
.vehicle-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .vehicle-grid { grid-template-columns: repeat(2,1fr); } }
.vehicle-card { background: #fff; border: 1px solid #eceff2; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: box-shadow var(--transition), transform var(--transition); }
.vehicle-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.vehicle-media { position: relative; aspect-ratio: 16/10; background: #fff; }
.vehicle-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.vehicle-fav { position: absolute; top: 10px; right: 10px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 7px 12px; font-size: .76rem; font-weight: 800; cursor: pointer; display: flex; align-items: center; gap: 6px; box-shadow: var(--shadow-sm); }
.vehicle-fav[aria-pressed="true"] { background: var(--orange); border-color: var(--orange); color: var(--navy); }
.vehicle-badge { position: absolute; top: 10px; left: 10px; background: var(--navy); color: #fff; font-size: .7rem; font-weight: 800; padding: 5px 10px; border-radius: 999px; }
.vehicle-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.vehicle-make { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.vehicle-title { font-size: .96rem; font-weight: 800; color: var(--navy); margin: 0; line-height: 1.25; }
.vehicle-meta { display: flex; flex-wrap: wrap; gap: 5px; font-size: .7rem; color: var(--muted); }
.vehicle-meta span { background: var(--cream); border-radius: 6px; padding: 3px 7px; }
.vehicle-select { width: 100%; padding: 8px 9px; border-radius: 8px; border: 1px solid var(--border); font-size: .74rem; font-weight: 700; margin-top: 2px; }
.vehicle-spacer { flex: 1; }
.vehicle-price-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 4px; }
.vehicle-price { font-size: 1.3rem; font-weight: 900; color: var(--navy); }
.vehicle-price small { font-size: .66rem; font-weight: 700; color: var(--muted); display: block; }
.vehicle-ir { font-size: .72rem; color: var(--muted); }
.vehicle-actions { display: flex; gap: 8px; margin-top: 10px; }
.vehicle-actions .btn { flex: 1; padding: 10px 8px; font-size: .78rem; }
.vehicle-actions .btn-whatsapp { display: none; }
@media (max-width: 640px) { .vehicle-actions .btn-whatsapp { display: inline-flex; } }
.vehicle-deal-link { text-align: center; font-size: .74rem; font-weight: 700; text-decoration: underline; color: var(--navy); margin-top: 6px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.load-more-wrap { text-align: center; margin-top: 28px; }
.skeleton { background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%); background-size: 400% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius-md); height: 340px; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* Enquiry basket */
.enquiry-basket { position: fixed; right: 20px; bottom: 20px; z-index: 400; }
.enquiry-basket-btn { background: var(--navy); color: #fff; border-radius: 999px; padding: 14px 22px; font-weight: 800; box-shadow: var(--shadow-lg); border: 0; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.enquiry-basket-count { background: var(--orange); color: var(--navy); border-radius: 50%; width: 22px; height: 22px; display: grid; place-items: center; font-size: .74rem; }
.enquiry-drawer { position: fixed; inset: 0 0 0 auto; width: min(94vw, 420px); background: #fff; z-index: 999; box-shadow: -10px 0 40px rgba(0,0,0,.2); transform: translateX(100%); transition: transform 260ms ease; overflow-y: auto; }
.enquiry-drawer.open { transform: translateX(0); }
.enquiry-drawer-inner { padding: 22px; }
.enquiry-item { display: flex; gap: 10px; align-items: center; border: 1px solid var(--border); border-radius: 10px; padding: 10px; margin-bottom: 10px; }
.enquiry-item img { width: 56px; height: 42px; object-fit: contain; background: var(--cream); border-radius: 6px; }
.enquiry-item .remove { margin-left: auto; border: 0; background: none; cursor: pointer; color: var(--danger); font-weight: 800; }

/* WhatsApp FAB */
.whatsapp-fab { position: fixed; left: 20px; bottom: 20px; z-index: 400; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform var(--transition); }
.whatsapp-fab:hover { transform: scale(1.06); }
@media (max-width: 780px) { .whatsapp-fab { display: none; } }

/* Mobile bottom action bar */
.mobile-bottom-bar { display: none; }
@media (max-width: 780px) {
  .mobile-bottom-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 700;
    background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -6px 24px rgba(16,26,46,.10);
    padding: 8px max(8px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom));
  }
  .mobile-bottom-bar a {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    text-decoration: none; color: var(--navy); font-size: .66rem; font-weight: 800; padding: 6px 4px; border-radius: 10px;
  }
  .mobile-bottom-bar a svg { width: 20px; height: 20px; }
  .mobile-bottom-bar a.mbb-primary { background: var(--orange); color: var(--navy); }
  .mobile-bottom-bar a.mbb-whatsapp { color: #1ebd58; }
  body.has-mobile-bar { padding-bottom: 62px; }
  body.has-mobile-bar .enquiry-basket, body.has-mobile-bar .cookie-banner { bottom: 66px; }
}

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000; background: var(--navy-deep); color: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.cookie-inner { padding: 18px 22px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; max-width: 1100px; margin: 0 auto; }
.cookie-inner p { margin: 0; font-size: .84rem; color: rgba(255,255,255,.85); max-width: 720px; }
.cookie-inner a { color: var(--orange); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,.65); background: transparent; }
.cookie-banner .btn-outline:hover { background: #fff; color: var(--navy); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.78); padding: 64px 0 0; }
.footer-top { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr repeat(4, .8fr); } }
@media (min-width: 1180px) { .footer-top { grid-template-columns: 1.3fr .8fr .9fr .8fr .8fr 1.2fr; } }
.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 14px; width: auto; height: auto; max-width: 170px; max-height: 44px; object-fit: contain; }
.footer-brand address { font-style: normal; color: rgba(255,255,255,.6); margin: 10px 0; font-size: .86rem; }
.footer-brand p { font-size: .88rem; }
.footer-brand a { color: #fff; text-decoration: none; }
.hours-table { font-size: .8rem; border-collapse: collapse; margin: 10px 0 4px; }
.hours-table caption { text-align: left; font-weight: 800; color: #fff; margin-bottom: 6px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.hours-table td { padding: 2px 10px 2px 0; color: rgba(255,255,255,.68); }
.hours-note { font-size: .74rem; color: rgba(255,255,255,.5); }
.footer-col h3 { color: #fff; font-size: .86rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,.68); font-size: .86rem; }
.footer-col a:hover { color: var(--orange); }
.footer-signup { background: rgba(255,255,255,.06); border-radius: var(--radius-md); padding: 22px; }
.footer-signup h3 { color: #fff; font-size: 1rem; }
.footer-signup p { font-size: .82rem; color: rgba(255,255,255,.6); }
.mc-row { display: flex; gap: 8px; margin-bottom: 10px; }
.mc-row input { flex: 1; padding: 10px 12px; border-radius: 8px; border: 0; }
.mc-consent { display: grid; gap: 4px; font-size: .72rem; color: rgba(255,255,255,.55); margin-bottom: 8px; }
.mc-consent label { display: flex; gap: 6px; align-items: center; }
.mc-legal { font-size: .68rem; color: rgba(255,255,255,.45); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding: 24px; font-size: .74rem; color: rgba(255,255,255,.5); }
.footer-legal p { margin: 0 0 8px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.footer-legal a, .footer-legal button.link-btn { color: rgba(255,255,255,.7); }
.footer-links { text-align: left; }

/* ==========================================================================
   Vehicle Finder widget host page tweaks (keeps widget's own scoped CSS)
   ========================================================================== */
.finder-page-embed { max-width: 980px; margin: -40px auto 0; padding: 0 20px 40px; position: relative; z-index: 2; }

/* 404 */
.error-page { min-height: 70vh; display: flex; align-items: center; text-align: center; }
.error-page .code { font-size: clamp(4rem, 14vw, 8rem); font-weight: 900; color: var(--orange); line-height: 1; }

/* Manufacturer / bodystyle grid logos */
.logo-tile {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 14px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; transition: all var(--transition); text-decoration: none;
}
.logo-tile:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.logo-tile img { height: 32px; max-width: 70%; object-fit: contain; filter: grayscale(100%); opacity: .8; transition: all var(--transition); }
.logo-tile:hover img { filter: grayscale(0%); opacity: 1; }
.logo-tile span { font-size: .78rem; font-weight: 800; color: var(--navy); text-align: center; }
.logo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (min-width: 640px) { .logo-grid { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 960px) { .logo-grid { grid-template-columns: repeat(6,1fr); } }

/* Comparison table component */
.compare-table-wrap { width: 100%; overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
table.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
table.compare-table th, table.compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: .86rem; vertical-align: top; }
table.compare-table thead th { background: var(--navy); color: #fff; font-weight: 800; position: sticky; top: 0; }
table.compare-table thead th:first-child { background: var(--navy-deep); }
table.compare-table tbody th { background: var(--cream); color: var(--navy); font-weight: 800; white-space: nowrap; }
table.compare-table tbody tr:last-child td, table.compare-table tbody tr:last-child th { border-bottom: 0; }
table.compare-table td.rec, table.compare-table th.rec { background: rgba(254,194,10,.10); }
.compare-yes { color: var(--success); font-weight: 800; }
.compare-no { color: var(--danger); font-weight: 800; }

/* Generic content tables (AI-citation / readability friendly) */
.content-table-wrap { width: 100%; overflow-x: auto; margin: 20px 0; }
table.content-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
table.content-table th, table.content-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border); font-size: .86rem; }
table.content-table th { background: var(--cream); color: var(--navy); font-weight: 800; }
table.content-table tr:last-child td { border-bottom: 0; }

/* Reg lookup box */
.reg-box { background: #fff; border: 2px dashed var(--orange); border-radius: var(--radius-md); padding: 22px; display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; }
.reg-box .quote-field { flex: 1; min-width: 180px; margin-bottom: 0; }
.reg-input { text-transform: uppercase; letter-spacing: .08em; font-weight: 800; text-align: center; }

/* Reveal-on-scroll */
.reveal-init { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal-in { opacity: 1; transform: translateY(0); }

/* Utility */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.badge-soft { display: inline-block; background: rgba(254,194,10,.16); color: var(--orange-dark); font-weight: 800; font-size: .74rem; padding: 5px 10px; border-radius: 999px; }
.card-navy { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 36px; }
.card-navy h2, .card-navy h3 { color: #fff; }
