@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* === Variables === */
:root {
  --background: #ffffff;
  --foreground: hsl(220 25% 12%);
  --card: hsl(220 20% 97%);
  --card-foreground: hsl(220 25% 12%);
  --primary: hsl(0 80% 48%);
  --primary-foreground: #ffffff;
  --secondary: hsl(220 20% 95%);
  --secondary-foreground: hsl(220 25% 12%);
  --muted-foreground: hsl(220 10% 35%);
  --border: hsl(220 15% 90%);
  --surface-dark: hsl(220 25% 8%);
  --surface-dark-foreground: hsl(0 0% 96%);
  --surface-darker: hsl(220 25% 5%);
  --surface-mid: hsl(220 20% 14%);
  --surface-mid-foreground: hsl(0 0% 92%);
  --silver: hsl(220 10% 65%);
  --radius: 0.75rem;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea { font-family: inherit; font-size: inherit; }

/* === Container === */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* === Utilities === */
.text-gradient {
  background-image: linear-gradient(135deg, hsl(0 80% 48%), hsl(0 70% 62%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-gradient {
  background: linear-gradient(135deg, hsl(220 25% 8%) 0%, hsl(220 25% 14%) 50%, hsl(0 80% 20%) 100%);
}
.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px hsla(0, 80%, 48%, 0.15);
}

/* === Animations === */
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 hsla(0, 80%, 48%, 0.4); }
  50% { box-shadow: 0 0 20px 5px hsla(0, 80%, 48%, 0.15); }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-pulse-red { animation: pulse-red 3s ease-in-out infinite; }
.animate-slide-up { animation: slide-up 0.7s ease-out forwards; }
.animate-slide-up-delay-1 { animation: slide-up 0.7s ease-out 0.1s forwards; opacity: 0; }
.animate-slide-up-delay-2 { animation: slide-up 0.7s ease-out 0.2s forwards; opacity: 0; }
.animate-slide-up-delay-3 { animation: slide-up 0.7s ease-out 0.3s forwards; opacity: 0; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface-dark);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .header-inner { height: 80px; } }
.header-logo img { height: 36px; width: auto; }
@media (min-width: 768px) { .header-logo img { height: 44px; width: auto; } }

.nav-desktop { display: none; align-items: center; gap: 4px; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--silver);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--surface-dark-foreground); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.header-contact-icons { display: flex; align-items: center; gap: 8px; }
@media (min-width: 768px) { .header-contact-icons { display: none; } }
.header-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: hsla(0, 80%, 48%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.header-icon-btn svg { width: 16px; height: 16px; color: var(--primary); }
.header-icon-btn:hover { background: hsla(0, 80%, 48%, 0.2); }
.header-actions { display: none; align-items: center; gap: 16px; }
@media (min-width: 768px) { .header-actions { display: flex; } }
.header-contact-stack { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.header-phone, .header-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--silver);
  transition: color 0.2s;
}
.header-phone:hover, .header-email:hover { color: var(--surface-dark-foreground); }
.header-email { font-size: 0.8125rem; }
.phone-icon, .email-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: hsla(0, 80%, 48%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-icon svg, .email-icon svg { width: 14px; height: 14px; color: var(--primary); }

/* Mobile menu */
.mobile-toggle {
  display: block;
  padding: 8px;
  background: none;
  border: none;
  color: var(--silver);
  cursor: pointer;
}
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none;
  background: var(--surface-dark);
  border-top: 1px solid var(--surface-mid);
  padding-bottom: 16px;
}
.mobile-menu.open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; padding-top: 8px; }
.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  color: var(--silver);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--surface-dark-foreground); }
.mobile-nav-link.active { color: var(--primary); background: hsla(0, 80%, 48%, 0.05); }
.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--silver);
}
.mobile-phone-link svg { width: 16px; height: 16px; color: var(--primary); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  gap: 4px;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-hero {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 12px 24px;
  font-size: 0.9375rem;
}
.btn-hero:hover { transform: scale(1.03); filter: brightness(1.1); }
.btn-hero-sm {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 8px 16px;
  font-size: 0.875rem;
}
.btn-hero-sm:hover { transform: scale(1.03); filter: brightness(1.1); }
.btn-hero-dark {
  background: transparent;
  color: var(--surface-dark-foreground);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  padding: 12px 24px;
  font-size: 0.9375rem;
}
.btn-hero-dark:hover { background: hsla(0, 0%, 100%, 0.05); border-color: hsla(0, 0%, 100%, 0.4); }
.btn-cta {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
}
.btn-cta:hover { transform: scale(1.03); filter: brightness(1.1); }
.btn-cta-full { width: 100%; }

/* === Hero Section === */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.07;
}
.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, hsla(0, 80%, 48%, 0.12), transparent 60%);
}
.hero-radial-center {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, hsla(0, 80%, 48%, 0.15), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 10;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0.5rem;
}
.hero-content-sm {
  position: relative;
  z-index: 10;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0.5rem;
}
@media (min-width: 640px) { .hero-content, .hero-content-sm { padding-left: 0; padding-right: 0; } }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: hsla(0, 80%, 48%, 0.1);
  border: 1px solid hsla(0, 80%, 48%, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.hero-title {
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--surface-dark-foreground);
}
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.5rem; } }

.hero-subtitle {
  color: var(--silver);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 32rem;
}

/* Grid layouts */
.grid-2-col { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .grid-2-col { grid-template-columns: 1fr 1fr; gap: 80px; } }

.grid-3-col { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .grid-3-col { grid-template-columns: repeat(3, 1fr); } }

.grid-4-col { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .grid-4-col { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4-col { grid-template-columns: repeat(4, 1fr); } }

.grid-2-col-sm { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .grid-2-col-sm { grid-template-columns: repeat(2, 1fr); } }

/* Hero buttons */
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

/* Trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--silver);
  font-size: 0.875rem;
}
.trust-stars { display: flex; gap: 0; }
.trust-stars span { color: var(--primary); font-size: 1.125rem; }
.trust-divider { width: 1px; height: 16px; background: var(--surface-mid); }

/* === Section Styles === */
.section { padding: 48px 0; }
@media (min-width: 768px) { .section { padding: 64px 0; } }
.section-bg { background: var(--background); }
.section-secondary { background: var(--secondary); }
.section-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: hsla(0, 80%, 48%, 0.1);
  border: 1px solid hsla(0, 80%, 48%, 0.2);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-title {
  font-weight: 700;
  font-size: 1.875rem;
  margin-top: 8px;
  color: var(--foreground);
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-header { margin-bottom: 40px; }

/* === Cards === */
.benefit-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 24px;
  border: 1px solid var(--border);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: hsla(0, 80%, 48%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.card-hover:hover .card-icon { background: hsla(0, 80%, 48%, 0.2); }
.card-icon svg { width: 24px; height: 24px; color: var(--primary); }
.card-stat { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.875rem; color: var(--foreground); }
.card-stat-label { font-size: 0.75rem; color: var(--muted-foreground); margin-left: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.card-title { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.125rem; margin-bottom: 8px; color: var(--foreground); }
.card-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* Steps */
.step-icon-wrap {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
}
.step-icon-wrap svg { width: 40px; height: 40px; color: var(--primary); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 12px;
}
.step-title { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.25rem; margin-bottom: 8px; color: var(--foreground); }
.step-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; max-width: 20rem; margin: 0 auto; }
.steps-connector {
  display: none;
  position: absolute;
  top: 48px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--border);
}
@media (min-width: 768px) { .steps-connector { display: block; } }

/* Local Trust */
.local-img-wrap { position: relative; }
.local-img {
  border-radius: 1rem;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.local-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2);
}
.local-badge-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.5rem; }
.local-badge-sub { font-size: 0.75rem; display: block; opacity: 0.8; }
.local-text { display: flex; flex-direction: column; gap: 16px; color: var(--muted-foreground); line-height: 1.7; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 12px; }
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.2s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* === CTA Banner === */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
}
@media (min-width: 768px) { .cta-banner { padding: 40px 0; } }
.cta-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.cta-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--surface-dark-foreground);
  margin-bottom: 16px;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}
@media (min-width: 768px) { .cta-title { font-size: 3rem; } }
.cta-sub {
  color: var(--silver);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* === FAQ === */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 24px;
  background: var(--card);
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* === Services (Remaps) === */
.service-card {
  border-radius: 1rem;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
}
.service-card.popular {
  background: var(--foreground);
  color: var(--background);
  border: 2px solid var(--primary);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.service-popular-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.service-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.service-card.popular .service-title { color: var(--background); }
.service-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--muted-foreground);
}
.service-card.popular .service-desc { color: hsla(0, 0%, 100%, 0.7); }
.service-gains {
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 24px;
  background: hsla(0, 80%, 48%, 0.1);
}
.service-card.popular .service-gains { background: hsla(0, 80%, 48%, 0.15); }
.service-gains p { font-size: 0.875rem; color: var(--primary); font-weight: 600; }
.service-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.service-card.popular .service-feature { color: hsla(0, 0%, 100%, 0.8); }
.service-feature svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

/* === Service Pricing === */
.service-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.service-card.popular .service-price { color: var(--background); }
.service-price-note {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-left: 6px;
}
.service-card.popular .service-price-note { color: hsla(0, 0%, 100%, 0.6); }

/* === Pricing Tiers === */
.pricing-tier {
  border-radius: 1rem;
  padding: 32px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
}
.pricing-tier-highlight {
  background: var(--foreground);
  color: var(--background);
  border: 2px solid var(--primary);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.pricing-tier-header { margin-bottom: 16px; }
.pricing-vehicles {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}
.pricing-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 8px 0 4px;
}
.pricing-per {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}
.pricing-tier-highlight .pricing-per { color: hsla(0, 0%, 100%, 0.6); }
.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.pricing-tier-highlight .pricing-desc { color: hsla(0, 0%, 100%, 0.7); }
.pricing-extras {
  max-width: 600px;
  margin: 32px auto 0;
}
.pricing-extra-card {
  border-radius: 1rem;
  padding: 24px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
}
.pricing-extra-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-extra-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 12px;
  line-height: 1.6;
}
.pricing-extra-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}
.pricing-extra-price span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  display: block;
  margin-top: 2px;
}
.pricing-disclaimer {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.6;
}

/* === Vehicle Lookup Card === */
.lookup-card {
  border-radius: 1rem;
  padding: 24px;
}
@media (min-width: 768px) { .lookup-card { padding: 32px; } }
.lookup-card-dark {
  background: hsla(220, 20%, 14%, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--surface-mid);
}
.lookup-card-light {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}
.lookup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}
.lookup-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-left: 8px;
}
.lookup-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 4px 0;
}
.lookup-card-dark .lookup-title { color: var(--surface-dark-foreground); }
.lookup-subtitle {
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.lookup-card-dark .lookup-subtitle { color: var(--silver); }
.lookup-card-light .lookup-subtitle { color: var(--muted-foreground); }
.lookup-form { display: flex; flex-direction: column; gap: 16px; }
.lookup-input {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  height: 56px;
  border-radius: 12px;
  border: 1px solid;
  padding: 0 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.lookup-input:focus { border-color: var(--primary); }
.lookup-card-dark .lookup-input {
  background: var(--surface-dark);
  border-color: var(--surface-mid);
  color: var(--surface-dark-foreground);
}
.lookup-card-dark .lookup-input::placeholder { color: hsla(220, 10%, 65%, 0.5); }
.lookup-card-light .lookup-input {
  background: var(--background);
  border-color: var(--border);
  color: var(--foreground);
}

/* Results display */
.results-card {
  max-width: 32rem;
  margin: 40px auto 0;
  background: hsla(220, 20%, 14%, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 32px;
  border: 1px solid hsla(0, 80%, 48%, 0.2);
}
.results-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  color: var(--surface-dark-foreground);
  margin-bottom: 8px;
}
.results-title .highlight { color: var(--primary); }
.results-sub {
  text-align: center;
  font-size: 0.875rem;
  color: var(--silver);
  margin-bottom: 24px;
}
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.result-box {
  background: var(--surface-dark);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.result-label {
  font-size: 0.75rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.result-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--primary);
}
.result-value span { font-size: 1.125rem; }
.results-note {
  font-size: 0.75rem;
  color: var(--silver);
  text-align: center;
}

/* === Contact Page === */
.contact-cards-offset { margin-top: -48px; position: relative; z-index: 20; }
.contact-card {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  text-align: center;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: hsla(0, 80%, 48%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-label { font-size: 0.75rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-value { font-size: 0.875rem; font-weight: 500; color: var(--foreground); word-break: break-all; }
.contact-value a { transition: color 0.2s; }
.contact-value a:hover { color: var(--primary); }

/* Contact grid */
.contact-grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .contact-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Contact form */
.form-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 24px;
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .form-card { padding: 32px; } }
.form-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.5rem; margin-bottom: 8px; color: var(--foreground); }
.form-subtitle { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--primary); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* Map */
.map-wrap {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  min-height: 400px;
  height: 100%;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* Contact form + map grid */
.contact-main-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .contact-main-grid { grid-template-columns: 1fr 1fr; } }

/* === About Values === */
.value-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
}
.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: hsla(0, 80%, 48%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 20px; height: 20px; color: var(--primary); }
.value-text { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }

/* About hero image badge */
.about-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2);
}
.about-badge-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.125rem; }

/* SEO content */
.seo-content { max-width: 48rem; }
.seo-content.centered { margin: 0 auto; text-align: center; }
.seo-content.centered .seo-text { text-align: left; }
.seo-text { display: flex; flex-direction: column; gap: 16px; color: var(--muted-foreground); line-height: 1.7; }

/* === Footer === */
.site-footer { background: var(--surface-darker); }
.footer-inner { padding: 64px 0.5rem; }
@media (min-width: 640px) { .footer-inner { padding: 64px 0; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer-logo { height: 40px; width: auto; margin-bottom: 20px; }
.footer-desc { font-size: 0.875rem; color: var(--silver); line-height: 1.7; }
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--surface-dark-foreground);
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 0.875rem;
  color: var(--silver);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-link:hover { color: var(--primary); }
.footer-link svg { width: 12px; height: 12px; opacity: 0; transition: opacity 0.2s; }
.footer-link:hover svg { opacity: 1; }
.footer-areas { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-area-tag {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-mid);
  color: var(--silver);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-area-tag:hover { background: var(--primary); color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--silver);
  transition: color 0.2s;
  margin-bottom: 16px;
}
.footer-contact-item:hover { color: var(--primary); }
.footer-contact-item.no-hover:hover { color: var(--silver); }
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: hsla(0, 80%, 48%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg { width: 14px; height: 14px; color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--surface-mid);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--silver);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* === Stats Bar === */
.stats-bar {
  background: var(--surface-dark);
  padding: 12px 0;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
  justify-items: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
}
@media (min-width: 768px) { .stat-number { font-size: 3rem; } }
.stat-label {
  font-size: 0.875rem;
  color: var(--silver);
  margin-top: 8px;
  font-weight: 500;
}
.stats-divider {
  display: none;
  width: 1px;
  background: var(--surface-mid);
  align-self: stretch;
}
@media (min-width: 768px) { .stats-divider { display: block; } }

/* === Vehicle Type Cards === */
.vehicle-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 32px;
  border: 1px solid var(--border);
  text-align: center;
}
.vehicle-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 1rem;
  background: hsla(0, 80%, 48%, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.2s;
}
.card-hover:hover .vehicle-card-icon { background: hsla(0, 80%, 48%, 0.15); }
.vehicle-card-icon svg { width: 36px; height: 36px; color: var(--primary); }
.vehicle-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--foreground);
}
.vehicle-card-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 20px;
}
.vehicle-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}
.vehicle-card-link:hover { gap: 10px; }
.vehicle-card-link svg { width: 16px; height: 16px; }

/* === Enhanced CTA === */
.cta-glow {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  background: var(--surface-dark);
}
@media (min-width: 768px) { .cta-glow { padding: 40px 0; } }
.cta-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(0, 80%, 48%, 0.15), transparent 70%);
  pointer-events: none;
}
.cta-glow-card {
  position: relative;
  z-index: 10;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface-mid);
  border: 1px solid hsla(0, 80%, 48%, 0.25);
  border-radius: 1.5rem;
  padding: 48px 32px;
  box-shadow: 0 0 60px -20px hsla(0, 80%, 48%, 0.2);
}
.cta-glow-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}
.cta-glow-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--surface-dark-foreground);
  margin-bottom: 12px;
  line-height: 1.2;
}
@media (min-width: 768px) { .cta-glow-title { font-size: 2.25rem; } }
.cta-glow-sub {
  font-size: 1rem;
  color: var(--silver);
  margin-bottom: 32px;
  line-height: 1.6;
}
.btn-glow {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 16px 36px;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: 0 0 30px -5px hsla(0, 80%, 48%, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
}
.btn-glow:hover { transform: scale(1.05); box-shadow: 0 0 40px -5px hsla(0, 80%, 48%, 0.5); }
.btn-glow svg { width: 20px; height: 20px; }

/* === Areas Page === */
.anchor-offset { display: block; height: 0; margin-top: -80px; padding-top: 80px; pointer-events: none; }
.county-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.county-card {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}
.county-card:hover {
  box-shadow: 0 12px 32px -8px hsla(0, 80%, 48%, 0.1);
}
.county-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: hsla(0, 80%, 48%, 0.03);
}
.county-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: hsla(0, 80%, 48%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.county-icon svg { width: 22px; height: 22px; color: var(--primary); }
.county-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.2;
}
.county-card-count {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}
.county-card-towns {
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: hsla(0, 0%, 100%, 0.08);
  color: hsl(220 10% 45%);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.area-badge:hover {
  background: hsla(0, 80%, 48%, 0.06);
  color: var(--primary);
}
.area-badge-name { transition: transform 0.2s ease; }
.area-badge:hover .area-badge-name { transform: translateX(4px); }
.area-badge-arrow {
  width: 16px;
  height: 16px;
  color: var(--border);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.area-badge:hover .area-badge-arrow {
  color: var(--primary);
  transform: translateX(2px);
}

/* Town info cards */
.town-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 768px) { .town-info-grid { grid-template-columns: 1fr 1fr; } }
.town-info-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 24px;
  border: 1px solid var(--border);
}
.town-info-highlight {
  border-color: hsla(0, 80%, 48%, 0.2);
  background: hsla(0, 80%, 48%, 0.03);
}
.town-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: hsla(0, 80%, 48%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.town-info-icon svg { width: 20px; height: 20px; color: var(--primary); }
.town-info-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 8px;
}
.town-info-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Areas CTA card */
.areas-cta-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 48px 32px;
}
.areas-cta-text {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 32rem;
  margin: 0 auto;
}

/* Area town page */
.breadcrumb-bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin: 0;
}
.breadcrumb a { color: var(--muted-foreground); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--foreground); font-weight: 500; }

.nearby-areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.nearby-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--foreground);
  transition: all 0.2s;
}
.nearby-tag:hover { border-color: var(--primary); color: var(--primary); }
.nearby-tag svg { width: 12px; height: 12px; color: var(--primary); }

/* === Utility helpers === */
.mb-12 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 4px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.mt-56 { margin-top: 56px; }
.flex-center-gap-8 { display: flex; align-items: center; gap: 8px; }
.text-center { text-align: center; }
.pos-relative { position: relative; }
.z-10 { position: relative; z-index: 10; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.border-radius-12 { border-radius: 12px; }

/* --- W3C compliance: replacing inline styles --- */
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.container-narrow { max-width: 90%; }
.grid-3-col-narrow { max-width: 900px; margin: 0 auto; }
.section-subtitle { color: var(--muted-foreground); max-width: 32rem; margin: 8px auto 0; }
.hero-subtitle-narrow { max-width: 36rem; margin-left: auto; margin-right: auto; }
.hero-subtitle-mid { max-width: 42rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-cta-lg { padding: 16px 36px; font-size: 1.0625rem; }
.contact-cards-section { padding: 24px 0; }
.sidebar-card { margin-bottom: 24px; }
.sidebar-title { font-size: 1.25rem; }
.sidebar-values { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.btn-full-width { width: 100%; justify-content: center; }
.text-silver { color: var(--silver); }
.text-primary { color: var(--primary); }
.text-sm-silver { color: var(--silver); font-size: 0.8125rem; }
.icon-primary { color: var(--primary); }
.lookup-vehicle-types { display: flex; align-items: center; gap: 12px; margin-top: 20px; justify-content: center; }
.card-icon-popular { background: hsla(0, 80%, 48%, 0.2); }
.footer-credit-link { color: var(--primary); text-decoration: underline; }
.areas-cta-title { margin-top: 8px; margin-bottom: 12px; }

/* Nav breakpoint update for 6 items */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-link { padding: 8px 6px; font-size: 0.75rem; }
  .header-actions { display: none; }
  .header-contact-icons { display: flex; }
}
@media (min-width: 1024px) { .nav-desktop { gap: 2px; } }
