/* Centro Automotivo Shalon — Design System */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Quicksand:wght@500;600;700&display=swap');

:root {
  --gunmetal-900: #1a2024;
  --gunmetal-800: #2b3338;
  --gunmetal-700: #3d4a52;
  --gunmetal-600: #4f5f6a;
  --gunmetal-500: #6b7c88;
  --blue-electric: #00b4ff;
  --blue-electric-dark: #0095d9;
  --blue-glow: rgba(0, 180, 255, 0.15);
  --white: #ffffff;
  --off-white: #f4f7f9;
  --text-primary: #e8edf0;
  --text-secondary: #a8b8c4;
  --text-dark: #1a2024;
  --success: #22c55e;
  --warning: #fbbf24;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.35);
  --shadow-blue: 0 4px 20px rgba(0, 180, 255, 0.35);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --header-h: 72px;
  --mobile-bar-h: 64px;
  --font-body: 'Nunito', system-ui, sans-serif;
  --font-display: 'Quicksand', 'Nunito', system-ui, sans-serif;
  --transition: 0.25s ease;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--gunmetal-900);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-electric);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--white); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue-electric);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p { margin-bottom: var(--space-sm); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background: var(--gunmetal-800);
}

.section__lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 65ch;
  margin-bottom: var(--space-lg);
}

.section__header {
  margin-bottom: var(--space-lg);
}

.section__header p {
  color: var(--text-secondary);
  max-width: 60ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  min-width: 48px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: center;
  line-height: 1.3;
}

.btn--primary {
  background: var(--blue-electric);
  color: var(--gunmetal-900);
  border-color: var(--blue-electric);
}

.btn--primary:hover {
  background: var(--blue-electric-dark);
  border-color: var(--blue-electric-dark);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gunmetal-600);
}

.btn--outline:hover {
  border-color: var(--blue-electric);
  color: var(--blue-electric);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: transparent;
}

.btn--ghost:hover {
  background: rgba(0, 180, 255, 0.15);
  color: var(--blue-electric);
}

.btn--sm {
  min-height: 44px;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gunmetal-800);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--space-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.logo:hover { color: var(--white); }

.logo__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name { font-size: 0.9375rem; }
.logo__tag { font-size: 0.6875rem; color: var(--blue-electric); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .header-cta { display: flex; }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--white);
  border-radius: var(--radius-sm);
}

@media (min-width: 992px) {
  .nav-toggle { display: none; }
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background var(--transition);
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition);
}

.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

/* Desktop nav */
.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .desktop-nav a {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"] {
    color: var(--blue-electric);
    background: var(--blue-glow);
  }
}

/* Mobile nav — full-height opaque overlay (direct body child, no transformed ancestors) */
.mobile-nav,
.site-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 1500;
  background: var(--gunmetal-800);
  padding: calc(var(--header-h) + 1.5rem) var(--space-md) var(--space-md);
  overflow-y: auto;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.mobile-nav.is-open,
body.mobile-menu-open .mobile-nav,
.site-nav.is-open,
body.mobile-menu-open .site-nav {
  display: flex;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

body.mobile-menu-open .site-header {
  z-index: 1600;
}

.mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav__list a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav__list a:hover,
.mobile-nav__list a[aria-current="page"] {
  background: var(--blue-glow);
  color: var(--blue-electric);
}

.mobile-nav__cta {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 992px) {
  .mobile-nav,
  .mobile-nav.is-open,
  body.mobile-menu-open .mobile-nav,
  .site-nav,
  .site-nav.is-open,
  body.mobile-menu-open .site-nav {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Hero split */
.hero {
  padding: var(--space-lg) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--gunmetal-900) 0%, var(--gunmetal-800) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(251, 191, 36, 0.12);
  color: var(--warning);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.hero__promise {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: var(--space-md) 0 var(--space-lg);
  max-width: 50ch;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
}

.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 180, 255, 0.2));
  pointer-events: none;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust bar */
.trust-bar {
  background: var(--gunmetal-800);
  border-top: 1px solid rgba(0, 180, 255, 0.15);
  border-bottom: 1px solid rgba(0, 180, 255, 0.15);
  padding: var(--space-md) 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  text-align: center;
  padding: var(--space-sm);
}

.trust-item__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-electric);
  display: block;
}

.trust-item__label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* Cards */
.card-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

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

.card {
  background: var(--gunmetal-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(0, 180, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__image img { transform: scale(1.04); }

.card__body {
  padding: var(--space-md);
}

.card__body h3 { margin-bottom: 0.5rem; }

.card__body p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}

.card__price {
  font-weight: 700;
  color: var(--blue-electric);
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}

/* Differentials */
.diff-list {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .diff-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .diff-list { grid-template-columns: repeat(3, 1fr); }
}

.diff-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--gunmetal-800);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.diff-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-glow);
  border-radius: var(--radius-md);
  color: var(--blue-electric);
  font-size: 1.25rem;
}

.diff-item h3 { margin-bottom: 0.375rem; font-size: 1.0625rem; }
.diff-item p { color: var(--text-secondary); font-size: 0.9375rem; margin: 0; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.testimonial {
  background: var(--gunmetal-800);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial__stars {
  color: var(--warning);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.testimonial__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.testimonial__author {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}

.rating-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: linear-gradient(135deg, var(--gunmetal-800), var(--gunmetal-700));
  border: 1px solid rgba(0, 180, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.rating-banner__score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-electric);
  line-height: 1;
}

.rating-banner__meta { flex: 1; min-width: 200px; }
.rating-banner__meta p { margin: 0; color: var(--text-secondary); font-size: 0.9375rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item--wide {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .gallery-item--wide { grid-column: span 2; }
}

/* Location */
.location-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 12;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
}

.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9375rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--blue-electric);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 800px;
}

.faq-item {
  background: var(--gunmetal-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: 56px;
  padding: var(--space-sm) var(--space-md);
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.faq-item__question:hover { color: var(--blue-electric); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
  color: var(--blue-electric);
}

.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }

.faq-item__answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.faq-item.is-open .faq-item__answer { display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--blue-electric-dark), var(--blue-electric));
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--gunmetal-900);
  margin-bottom: var(--space-sm);
}

.cta-band p {
  color: var(--gunmetal-800);
  margin-bottom: var(--space-lg);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn--primary {
  background: var(--gunmetal-900);
  color: var(--white);
  border-color: var(--gunmetal-900);
}

.cta-band .btn--primary:hover {
  background: var(--gunmetal-800);
  border-color: var(--gunmetal-800);
}

/* Footer */
.site-footer {
  background: var(--gunmetal-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-top: var(--space-sm);
}

.footer-col h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-electric);
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
}

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.footer-col a:hover { color: var(--blue-electric); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  background: var(--gunmetal-800);
  border-top: 1px solid rgba(0, 180, 255, 0.2);
  height: var(--mobile-bar-h);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .mobile-bar { display: none; }
}

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--mobile-bar-h);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--white);
  transition: background var(--transition);
}

.mobile-bar a:first-child {
  background: #25d366;
  color: var(--white);
}

.mobile-bar a:first-child:hover { background: #1fb855; color: var(--white); }
.mobile-bar a:last-child { background: var(--gunmetal-700); }
.mobile-bar a:last-child:hover { background: var(--gunmetal-600); color: var(--white); }

/* Page hero (inner pages) */
.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(180deg, var(--gunmetal-800) 0%, var(--gunmetal-900) 100%);
}

.page-hero h1 { margin-bottom: var(--space-sm); }
.page-hero p { color: var(--text-secondary); max-width: 65ch; }

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--blue-electric); }

/* Team */
.team-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  background: var(--gunmetal-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.team-card__photo {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__info {
  padding: var(--space-md);
}

.team-card__role {
  color: var(--blue-electric);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Budget page */
.budget-steps {
  display: grid;
  gap: var(--space-md);
  counter-reset: step;
}

@media (min-width: 768px) {
  .budget-steps { grid-template-columns: repeat(3, 1fr); }
}

.budget-step {
  background: var(--gunmetal-800);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  padding-top: 3rem;
}

.budget-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  width: 32px;
  height: 32px;
  background: var(--blue-electric);
  color: var(--gunmetal-900);
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.budget-step h3 { margin-bottom: 0.5rem; }
.budget-step p { color: var(--text-secondary); font-size: 0.9375rem; margin: 0; }

.budget-cta-box {
  background: var(--gunmetal-800);
  border: 2px solid var(--blue-electric);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  margin-top: var(--space-xl);
}

/* Privacy */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  margin-top: var(--space-lg);
  font-size: 1.25rem;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.legal-content ul {
  margin: var(--space-sm) 0 var(--space-sm) 1.5rem;
}

/* Service areas */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.area-tag {
  background: var(--blue-glow);
  color: var(--blue-electric);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 180, 255, 0.25);
}

/* Icon inline */
.icon { width: 1.25em; height: 1.25em; vertical-align: -0.2em; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
