﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0b1016;
  --text: #eef2f7;
  --text-bright: #f8fbff;
  --text-heading: #f8fbff;
  --text-on-accent: #12160c;
  --text-dark-cta: #11150a;
  --text-muted: #c8d1dc;
  --text-light: #d4deea;
  --muted: #a8b2bf;
  --brand: #e3ff00;
  --brand-bright: #eeff33;
  --brand-soft: #d4ee00;
  --brand-dark: #b8cc00;
  --brand-rgb: 227 255 0;
  --brand-bright-rgb: 238 255 51;
  --brand-soft-rgb: 212 238 0;
  --brand-dark-rgb: 184 204 0;
  --brand-glow: rgb(var(--brand-rgb) / 26%);
  --border: #2f353d;
  --metal-streak-light: none;
  --metal-streak-dark: none;
  --metal-sheen: none;
  --metal-fade-wide: linear-gradient(180deg, rgb(12 16 22 / 98%) 0%, rgb(7 10 14 / 98%) 100%);
  --metal-panel: linear-gradient(180deg, rgb(14 19 26 / 96%) 0%, rgb(9 12 16 / 98%) 100%);
  --metal-panel-soft: linear-gradient(180deg, rgb(16 22 30 / 88%) 0%, rgb(10 14 19 / 96%) 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    var(--metal-fade-wide),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background:
    linear-gradient(180deg, rgb(12 16 22 / 96%) 0%, rgb(7 10 14 / 98%) 100%);
  border-bottom: 1px solid rgb(var(--brand-rgb) / 26%);
  box-shadow: 0 10px 24px rgb(0 0 0 / 28%);
}

.nav-wrap {
  min-height: auto;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 420px;
  height: 102px;
  object-fit: contain;
  filter: none;
}

.footer-logo {
  width: 420px;
  height: 102px;
  object-fit: contain;
  filter: none;
}

.locations-menu {
  position: relative;
}

.locations-toggle {
  min-width: 110px;
}

.locations-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  width: min(360px, 82vw);
  max-height: min(62vh, 420px);
  overflow-y: auto;
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem;
  border-radius: 12px;
  border: 1px solid rgb(var(--brand-rgb) / 25%);
  background:
    var(--metal-streak-light),
    var(--metal-panel);
  box-shadow: 0 16px 34px rgb(0 0 0 / 40%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.locations-menu:hover .locations-panel,
.locations-menu:focus-within .locations-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.locations-link {
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 9px;
  padding: 0.5rem 0.6rem;
  background: linear-gradient(180deg, rgb(186 194 204 / 12%) 0%, rgb(30 36 45 / 58%) 100%);
  font-size: 0.9rem;
}

.locations-link:hover {
  border-color: rgb(var(--brand-bright-rgb) / 46%);
  box-shadow: 0 6px 16px rgb(var(--brand-rgb) / 22%);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h2,
h3 {
  color: var(--text-heading);
}

.section h2 {
  display: inline-block;
  background: linear-gradient(95deg, var(--text-heading) 0%, var(--brand-soft) 58%, var(--brand-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section h2::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-bright), rgb(255 255 255 / 30%));
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 24px rgb(0 0 0 / 34%);
}

.lead {
  color: var(--muted);
  max-width: 56ch;
  font-size: 1.02rem;
  line-height: 1.75;
}

.section {
  padding: 3rem 0;
  position: relative;
}

.section h2 {
  margin-bottom: 0.45rem;
}

main > section.section:not(.section-dark):not(.section-metal):not(.section-soft) {
  background: transparent;
}

.section-metal {
  background: transparent;
}

.section-soft {
  background: transparent;
}

.section-dark {
  background: transparent;
}

.hero {
  padding: 0;
}

.hero-logo-first {
  padding: 0;
  margin: 0;
  width: 100%;
}

.hero-logo-frame {
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.hero-logo-frame::before,
.hero-logo-frame::after {
  content: none;
}

.hero-logo-frame:hover {
  transform: none;
  box-shadow: none;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.hero-eyebrow span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--brand-bright);
  background: var(--brand-bright);
  color: #000;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.scan-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.scan-chip {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--brand-bright);
  background: var(--brand-bright);
  color: #000;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--brand-bright) 0%, var(--brand) 45%, var(--brand-soft) 100%);
  color: var(--text-on-accent);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--brand-bright) 0%, var(--brand) 50%, var(--brand-dark) 100%);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:focus {
  outline: 2px solid rgb(var(--brand-bright-rgb) / 60%);
  outline-offset: 2px;
}

.btn-ghost {
  color: var(--text);
  border-color: var(--border);
  background: linear-gradient(160deg, rgb(108 115 124 / 22%) 0%, rgb(17 22 29 / 52%) 100%);
}

.btn-ghost:hover {
  background: rgb(255 255 255 / 7%);
  transform: translateY(-1px);
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.5rem;
  gap: 0.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background:
    var(--metal-streak-light),
    linear-gradient(180deg, rgb(20 26 34 / 90%), rgb(6 8 12 / 96%));
  border-top: 1px solid rgb(var(--brand-rgb) / 24%);
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.mobile-cta-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-dark-cta);
  border: 1px solid rgb(var(--brand-rgb) / 40%);
  background: linear-gradient(180deg, var(--brand-bright) 0%, var(--brand) 45%, var(--brand-soft) 100%);
}

.mobile-cta-link:hover {
  background: linear-gradient(180deg, var(--brand-bright) 0%, var(--brand) 50%, var(--brand-dark) 100%);
}

.hero-card,
.trust-card,
.card,
.stat-card,
.highlight-card,
.prose-block,
.embed-wrap,
.local-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    var(--metal-streak-light),
    linear-gradient(180deg, rgb(170 180 192 / 12%) 0%, rgb(38 45 56 / 34%) 54%, rgb(16 21 28 / 66%) 100%);
  box-shadow: inset 0 1px 0 rgb(var(--brand-rgb) / 24%);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hero-card:hover,
.trust-card:hover,
.card:hover,
.stat-card:hover,
.highlight-card:hover,
.prose-block:hover,
.embed-wrap:hover {
  transform: translateY(-2px);
  border-color: rgb(var(--brand-rgb) / 34%);
  box-shadow: inset 0 1px 0 rgb(var(--brand-rgb) / 24%), 0 16px 30px rgb(0 0 0 / 28%);
}

.hero-card {
  padding: 1.2rem;
  box-shadow: 0 16px 40px rgb(0 0 0 / 35%);
}

.hero-logo {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.hero-logo-large {
  height: clamp(190px, 24vw, 320px) !important;
  width: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none;
  margin-bottom: 0;
}

.hero-card ul,
.ticks {
  margin: 0;
  padding-left: 1.2rem;
}

.trust-section {
  padding-top: 0.5rem;
}

.trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card,
.card,
.stat-card,
.highlight-card {
  padding: 1.1rem;
}

.trust-card p,
.card p,
.prose-block p,
.stat-label,
.highlight-card p,
.cta p {
  color: var(--text-muted);
  line-height: 1.75;
}

.cards,
.process-grid,
.faq-grid,
.highlight-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stats-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-value {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.2;
  color: var(--brand-bright);
  font-weight: 800;
}

.search-section {
  padding-top: 1rem;
}

.embed-wrap {
  padding: 0.35rem;
  display: flex;
  flex-direction: column;
}

.embed-title {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.vehicle-search-frame {
  border: none;
  border-radius: 12px;
  max-width: 100%;
  min-height: 820px;
}

.embed-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: center;
  align-items: center;
}

.embed-refresh-btn {
  flex: 0 1 auto;
  min-width: 140px;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.prose-block {
  padding: 1.25rem;
}

.prose-block p {
  margin-bottom: 1rem;
}

.local-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.local-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  padding: 1rem;
  font-weight: 600;
  line-height: 1.45;
  border-left: 3px solid rgb(var(--brand-rgb) / 45%);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.local-card:hover {
  border-color: rgb(var(--brand-bright-rgb) / 50%);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgb(var(--brand-rgb) / 18%);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.cta {
  text-align: center;
}

.cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.action-grid {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.action-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem;
  background:
    var(--metal-streak-light),
    linear-gradient(180deg, rgb(170 180 192 / 12%) 0%, rgb(38 45 56 / 34%) 54%, rgb(16 21 28 / 66%) 100%);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.action-card:hover {
  transform: translateY(-2px);
  border-color: rgb(var(--brand-rgb) / 34%);
  box-shadow: 0 16px 30px rgb(0 0 0 / 28%);
}

.action-card p {
  color: var(--text-muted);
  margin: 0;
}

.action-card .btn {
  margin-top: 0.85rem;
}

.quick-list {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.5rem;
}

.quick-list li {
  color: var(--text-light);
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid rgb(var(--brand-rgb) / 14%);
  padding: 1.25rem 0;
  background:
    var(--metal-streak-dark),
    linear-gradient(180deg, rgb(18 24 31 / 76%), rgb(6 8 12 / 95%));
}

.footer-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1.8rem;
  row-gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  text-align: left;
}

.footer-logo {
  grid-row: 1 / 3;
  width: 420px;
  height: 102px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 1rem;
  margin: 0;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgb(var(--brand-rgb) / 14%);
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.footer-wrap > p {
  margin: 0;
}

.footer-links a:hover {
  color: var(--brand-bright);
  text-decoration: underline;
}

.footer-credit {
  font-size: 0.84em;
  color: var(--brand-bright);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit:hover {
  color: var(--brand-soft);
  text-decoration: underline;
}

li::marker {
  color: var(--brand);
}

@media (max-width: 900px) {
  body {
    padding-bottom: 74px;
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .locations-panel {
    right: auto;
    left: 0;
    width: min(92vw, 360px);
  }

  .nav-wrap {
    min-height: auto;
    padding: 0.45rem 0;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .brand-logo {
    width: 320px;
    height: 78px;
  }

  .nav-actions {
    width: 100%;
    gap: 0.5rem;
  }

  .nav-actions .btn {
    flex: 1 1 0;
    min-height: 40px;
    padding: 0.35rem 0.55rem;
    font-size: 0.86rem;
    line-height: 1.2;
    text-align: center;
  }

  .hero-grid,
  .split,
  .cards,
  .local-grid,
  .trust-grid,
  .stats-grid,
  .highlight-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 0;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    row-gap: 0.6rem;
    text-align: center;
  }

  .footer-logo {
    grid-row: auto;
    width: min(92vw, 360px);
    height: auto;
    margin: 0 auto;
  }

  .footer-links {
    justify-content: center;
    padding-bottom: 0.3rem;
  }

  .hero-logo-first {
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    overflow: hidden;
  }

  .hero-logo-frame {
    padding: 0;
  }

  .hero-logo-large {
    height: clamp(145px, 50vw, 280px) !important;
    width: 135% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0;
    margin-left: -17.5%;
    object-fit: cover;
    object-position: center;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .scan-chips {
    margin-top: 0.85rem;
  }

  .vehicle-search-frame {
    min-height: 940px;
  }

  .embed-actions {
    width: 100%;
    margin-top: 1.25rem;
    padding: 0 0.5rem;
  }

  .embed-refresh-btn {
    width: 100%;
    min-width: unset;
    min-height: 48px;
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  body {
    padding-bottom: 70px;
  }

  .mobile-sticky-cta {
    gap: 0.35rem;
    padding: 0.4rem;
  }

  .mobile-cta-link {
    min-height: 38px;
    font-size: 0.72rem;
  }

  .locations-panel {
    width: min(94vw, 320px);
    max-height: 56vh;
    padding: 0.5rem;
  }

  .locations-link {
    padding: 0.42rem 0.5rem;
    font-size: 0.82rem;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .nav-actions .btn {
    min-height: 38px;
    padding: 0.3rem 0.45rem;
    font-size: 0.8rem;
  }
}

/* ===================================================
   2026 REDESIGN — clean layout
   =================================================== */

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* Buttons */
.btn-lg { min-height: 50px; padding: 0 1.4rem; font-size: 1rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--brand); color: #000; }

/* ── Hero ── */
.hero-split {
  padding: 3rem 0 2.5rem;
  background: radial-gradient(ellipse 90% 55% at 50% -5%, rgb(227 255 0 / 7%) 0%, transparent 65%);
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.hero-logo-left {
  width: 100%;
  max-width: 460px;
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.location-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.75rem;
}

.hero-heading {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text-bright);
}
.hero-heading .hero-line { display: block; }
.hero-heading .accent-line { color: var(--brand); }

.hero-sub {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 44ch;
  margin: 0 0 1rem;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero-bullets li {
  font-size: 0.93rem;
  color: var(--text-light);
  padding-left: 1.1rem;
  position: relative;
}
.hero-bullets li::before {
  content: '\25C6';
  color: var(--brand);
  font-size: 0.5rem;
  position: absolute;
  left: 0;
  top: 0.35em;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Hero right — lookup card */
.hero-right-wrap {
  position: sticky;
  top: 1.5rem;
}

.lookup-card {
  background: linear-gradient(180deg, rgb(18 25 34 / 95%) 0%, rgb(10 14 20 / 98%) 100%);
  border: 1px solid rgb(227 255 0 / 25%);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgb(0 0 0 / 45%), inset 0 1px 0 rgb(227 255 0 / 20%);
}

.lookup-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  text-align: center;
}

.lookup-card iframe {
  border-radius: 10px;
  display: block;
  width: 100%;
}

.embed-actions {
  display: flex;
  justify-content: center;
  margin-top: 0.85rem;
}

/* ── Stats bar ── */
.new-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgb(227 255 0 / 12%);
  border-bottom: 1px solid rgb(227 255 0 / 12%);
  background: linear-gradient(180deg, rgb(13 18 26 / 85%) 0%, rgb(8 11 16 / 92%) 100%);
}
.new-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.5rem;
  border-right: 1px solid rgb(255 255 255 / 5%);
  gap: 0.2rem;
}
.new-stat:last-child { border-right: none; }
.new-stat-num {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.new-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}

/* ── Ticker ── */
.ticker {
  background: var(--brand);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.55rem 0;
}
.ticker-track {
  display: inline-block;
  animation: ticker-scroll 32s linear infinite;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
}
.ticker-dot { opacity: 0.45; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Sections ── */
.section-modern { padding: 4rem 0; }
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.4rem;
}
.section-modern h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-bright);
  margin: 0 0 2rem;
  line-height: 1.1;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  display: block !important;
}
.section-modern h2::after { display: none !important; }
.section-modern h2 .accent { color: var(--brand); }

.section-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.section-header-row h2 { margin-bottom: 0; }
.view-all-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.view-all-link:hover { text-decoration: underline; }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(16 22 30 / 55%) 0%, rgb(9 13 18 / 80%) 100%);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgb(227 255 0 / 32%);
  box-shadow: 0 18px 40px rgb(0 0 0 / 35%);
}
.service-card-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon { width: 56px; height: 56px; }
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.service-card-body { padding: 1.1rem; }
.service-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand);
  border: 1px solid rgb(227 255 0 / 28%);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  margin-bottom: 0.5rem;
}
.service-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin: 0 0 0.5rem;
}
.service-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 0.85rem;
}
.learn-more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand);
  text-decoration: none;
}
.learn-more:hover { text-decoration: underline; }

/* ── Why section ── */
.why-section { border-top: 1px solid rgb(255 255 255 / 4%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.why-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.15rem;
  background: linear-gradient(180deg, rgb(170 180 192 / 6%) 0%, rgb(16 21 28 / 55%) 100%);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgb(227 255 0 / 26%);
  box-shadow: 0 12px 28px rgb(0 0 0 / 26%);
}
.why-icon { font-size: 1.6rem; display: block; margin-bottom: 0.65rem; line-height: 1; }
.why-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-bright); margin: 0 0 0.4rem; }
.why-card p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.65; margin: 0; }

/* ── Process ── */
.process-section { border-top: 1px solid rgb(255 255 255 / 4%); }
.new-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.new-process-step {
  flex: 1;
  min-width: 130px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 0.9rem;
  background: linear-gradient(180deg, rgb(170 180 192 / 6%) 0%, rgb(16 21 28 / 55%) 100%);
  text-align: center;
}
.new-step-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand);
  opacity: 0.28;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.new-process-step h3 { font-size: 0.92rem; font-weight: 700; color: var(--text-bright); margin: 0 0 0.35rem; }
.new-process-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  font-size: 1rem;
  color: var(--brand);
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: 1.6rem;
}

/* ── Coverage ── */
.coverage-section { border-top: 1px solid rgb(255 255 255 / 4%); }
.coverage-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.coverage-base {
  border: 1px solid rgb(227 255 0 / 22%);
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  background: linear-gradient(180deg, rgb(16 22 30 / 80%) 0%, rgb(9 13 18 / 92%) 100%);
  text-align: center;
}
.coverage-pin { font-size: 1.8rem; display: block; margin-bottom: 0.6rem; }
.coverage-city { font-size: 1.35rem; font-weight: 800; color: var(--text-bright); margin: 0; }
.coverage-county { font-size: 0.78rem; font-weight: 700; color: var(--brand); margin: 0.1rem 0 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
.coverage-radius { font-size: 0.75rem; color: var(--text-muted); margin: 0; }
.coverage-desc { color: var(--text-muted); font-size: 0.93rem; line-height: 1.72; margin: 0 0 1.25rem; }
.coverage-towns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
  margin-bottom: 1.25rem;
}
.coverage-towns ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.3rem; }
.coverage-towns li { color: var(--text-light); font-size: 0.88rem; padding-left: 1rem; position: relative; }
.coverage-towns li::before { content: '\2713'; color: var(--brand); font-size: 0.72rem; position: absolute; left: 0; top: 0.15em; }

/* ── FAQ ── */
.faq-section { border-top: 1px solid rgb(255 255 255 / 4%); }
.new-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.new-faq-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgb(170 180 192 / 6%) 0%, rgb(16 21 28 / 55%) 100%);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.new-faq-card:hover { transform: translateY(-3px); border-color: rgb(227 255 0 / 26%); }
.new-faq-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-bright); margin: 0 0 0.5rem; }
.new-faq-card p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.65; margin: 0; }

/* ── CTA strip ── */
.cta-strip {
  background: linear-gradient(135deg, rgb(10 16 20 / 92%) 0%, rgb(18 28 10 / 85%) 100%);
  border-top: 1px solid rgb(227 255 0 / 16%);
  border-bottom: 1px solid rgb(227 255 0 / 16%);
  padding: 3rem 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip-inner h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--text-bright);
  margin: 0 0 0.35rem;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  display: block !important;
}
.cta-strip-inner h2::after { display: none !important; }
.cta-strip-inner p { color: var(--text-muted); margin: 0; font-size: 0.93rem; }
.cta-strip-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .new-faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  /* Natural order: hero-left (logo + text) first, lookup second */
  .hero-right-wrap {
    order: 2;
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .hero-left {
    order: 1;
    overflow: visible;
  }
  .hero-logo-left {
    max-width: none;
    width: calc(100% + 3rem);
    margin: -1.5rem -1.5rem -0.25rem -1.5rem;
    transform: scale(1.08);
    transform-origin: center top;
  }
  .hero-heading { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  #hero-vrm-iframe { height: 400px !important; }
}

@media (max-width: 640px) {
  .hero-split { padding: 0.5rem 0 1.25rem; }
  .hero-heading { font-size: 1.85rem; }
  .hero-sub { font-size: 0.9rem; }
  .new-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .new-stat:nth-child(2) { border-right: none; }
  .services-grid,
  .why-grid,
  .new-faq-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }
  .new-process-steps { flex-wrap: wrap; justify-content: center; gap: 0.75rem; overflow-x: visible; }
  .step-connector { display: none; }
  .new-process-step { min-width: calc(50% - 0.375rem); flex: 0 1 calc(50% - 0.375rem); }
  .hero-logo-left { max-width: none; width: calc(100% + 3rem); margin: -1rem -1.5rem -0.25rem -1.5rem; transform: scale(1.08); transform-origin: center top; }
  .lookup-card { padding: 0.65rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  #hero-vrm-iframe { height: 380px !important; }
}

@media (max-width: 420px) {
  .hero-heading { font-size: 1.65rem; }
  .new-process-step { min-width: 100%; flex: 0 1 100%; }
  .hero-logo-left { max-width: none; width: calc(100% + 2rem); margin: -1.25rem -1rem -0.5rem -1rem; transform: scale(1.1); transform-origin: center top; }
  #hero-vrm-iframe { height: 360px !important; }
}