/* ============================================
   Auto Body Services Inc.
   Dark luxury — matched to reference design
   ============================================ */

:root {
  --black: #18181c;
  --dark: #1f1f25;
  --dark-2: #2a2a32;
  --dark-3: #34343c;
  --gray: #adb3bd;
  --gray-light: #dce0e6;
  --white: #ffffff;
  --white-60: rgba(255, 255, 255, 0.72);
  --white-40: rgba(255, 255, 255, 0.56);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-08: rgba(255, 255, 255, 0.08);
  --glass: rgba(48, 48, 56, 0.42);
  --glass-border: rgba(255, 255, 255, 0.14);
  --box-border: 1px solid rgba(255, 255, 255, 0.24);
  --box-radius: 14px;
  --box-bg: rgba(255, 255, 255, 0.07);
  --box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  --red: #c41e2a;
  --red-muted: #6e1219;
  --red-muted-hover: #8a1822;
  --btn-red-bg: linear-gradient(135deg, rgba(90, 16, 24, 0.9) 0%, rgba(60, 10, 16, 0.95) 100%);
  --btn-red-bg-hover: linear-gradient(135deg, rgba(110, 20, 30, 0.92) 0%, rgba(80, 14, 22, 0.96) 100%);
  --btn-red-border: rgba(100, 28, 36, 0.5);
  --btn-red-border-hover: rgba(130, 38, 46, 0.6);
  --btn-red-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.45);
  --accent: #e83540;
  --accent-soft: rgba(232, 53, 64, 0.1);
  --cert-gold: #c9a227;
  --cert-gold-soft: rgba(201, 162, 39, 0.12);
  --carwise-gold: #d4a853;
  --carwise-gold-soft: rgba(212, 168, 83, 0.14);
  --carwise-blue: #4db8e8;
  --carwise-blue-dark: #2a9fd4;
  --carwise-blue-soft: rgba(77, 184, 232, 0.14);
  --carwise-blue-light: #8fd4f5;
  --cert-ford: #003478;
  --cert-ford-soft: rgba(0, 52, 120, 0.18);
  --cert-gm: #0071ce;
  --cert-gm-soft: rgba(0, 113, 206, 0.14);
  --brand-blue: #1b5fad;
  --brand-blue-light: #8bb8e8;
  --brand-red: #cc2229;
  --banner: #525868;
  --banner-border: #626878;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --text-body: 1rem;
  --text-body-sm: 0.9375rem;
  --text-label: 0.8125rem;
  --leading-body: 1.7;
  --leading-relaxed: 1.75;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--gray-light);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Fixed shop photo behind page content (homepage + local pages) */
body.has-page-bg {
  background: var(--black);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/shop-exterior-teslas.png') center 55% / cover no-repeat;
}

.page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(22, 22, 28, 0.58) 0%, rgba(22, 22, 28, 0.36) 55%, rgba(22, 22, 28, 0.48) 100%),
    linear-gradient(to bottom, rgba(22, 22, 28, 0.22) 0%, rgba(22, 22, 28, 0.32) 100%);
}

body.has-page-bg > *:not(.page-bg) {
  position: relative;
  z-index: 1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   HERO — full viewport, reference layout
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 108%;
  filter: brightness(1.02) saturate(0.94) contrast(1.02);
}

.hero__image--teslas {
  object-position: 58% 62%;
  filter: brightness(0.96) saturate(1.02) contrast(1.03);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(22, 22, 28, 0.72) 0%, rgba(22, 22, 28, 0.56) 35%, rgba(22, 22, 28, 0.3) 62%, rgba(22, 22, 28, 0.16) 100%),
    linear-gradient(to top, rgba(22, 22, 28, 0.74) 0%, rgba(22, 22, 28, 0.58) 22%, rgba(22, 22, 28, 0.22) 48%, rgba(22, 22, 28, 0.06) 68%);
}

/* ---- Top banner header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  height: 84px;
  background: var(--banner);
  border-bottom: 1px solid var(--banner-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

/* ---- Brand logo ---- */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
  justify-self: start;
  text-align: center;
  transition: opacity 0.2s var(--ease);
}

.brand:hover { opacity: 0.8; }

.brand__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}

.brand__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #e83540;
}

.brand--footer .brand__name {
  font-size: 1.3rem;
}

.brand--footer .brand__sub {
  font-size: 0.88rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: center;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white-60);
  letter-spacing: 0.015em;
  transition: color 0.25s var(--ease);
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.nav__arrow {
  font-size: 0.65rem;
  opacity: 0.6;
}

.nav__item { position: relative; }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(36, 36, 42, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease);
  pointer-events: none;
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--white-60);
  transition: all 0.2s;
}

.nav__dropdown a:hover {
  color: var(--white);
  background: var(--white-08);
}

.header__call {
  justify-self: end;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  background: var(--btn-red-bg);
  border: 1px solid var(--btn-red-border);
  border-radius: 100px;
  padding: 12px 24px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.header__call:hover {
  background: var(--btn-red-bg-hover);
  border-color: var(--btn-red-border-hover);
  color: var(--white);
  box-shadow: var(--btn-red-shadow-hover);
}

.header__tools {
  display: contents;
}

.header__call-mobile {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0c;
  background: #ffe8e8;
  border: 1px solid rgba(196, 30, 42, 0.22);
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.header__call-mobile-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #0a0a0c;
}

.header__call-mobile:active {
  background: #ffd6d6;
  border-color: rgba(196, 30, 42, 0.35);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: 0.25s;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ---- Hero content ---- */
.hero__content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px 16px;
  max-width: 680px;
}

.hero__arc {
  position: absolute;
  top: -20px;
  left: -30px;
  width: 200px;
  height: 200px;
  opacity: 0.7;
  pointer-events: none;
}

.hero__arc svg { width: 100%; height: 100%; }

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  position: relative;
}

.hero__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 18px;
  background: var(--accent);
  border-radius: 1px;
}

.hero__sub {
  font-size: var(--text-body-sm);
  font-weight: 400;
  color: var(--white-60);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: var(--leading-body);
}

.hero__sub-line { display: block; }

.hero__sub-line + .hero__sub-line { margin-top: 6px; }

.hero__lead {
  font-size: var(--text-body);
  color: var(--gray-light);
  line-height: var(--leading-relaxed);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__cta--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero__cta--ghost:hover {
  background: var(--white-08);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.hero__actions > .hero__cta--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.hero__actions > .hero__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.88);
  transform: none;
  box-shadow: none;
}

.hero__actions > .hero__cta--carwise {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.hero__actions > .hero__cta--carwise:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.88);
  transform: none;
  box-shadow: none;
}

.hero__cta--facebook {
  gap: 8px;
}

.hero__cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero__actions > .hero__cta--facebook:hover {
  background: rgba(24, 119, 242, 0.12);
  border-color: rgba(24, 119, 242, 0.35);
  color: rgba(255, 255, 255, 0.92);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: var(--btn-red-bg);
  border: 1px solid var(--btn-red-border);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.hero__cta:not(.hero__cta--ghost):not(.hero__cta--carwise):hover {
  background: var(--btn-red-bg-hover);
  border-color: var(--btn-red-border-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--btn-red-shadow-hover);
}

.hero__cta--full { width: 100%; align-self: stretch; }

.hero__cta--carwise {
  background: #49a2d6;
  border-color: #49a2d6;
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero__cta--carwise:hover {
  background: #55aedf;
  border-color: #8fd4f5;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(77, 184, 232, 0.35);
}

/* ---- Hero lower: banner + glass cards ---- */
.hero__lower {
  position: relative;
  z-index: 5;
  margin-top: auto;
  padding: 48px 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 16px;
  padding: 18px 24px;
  background: rgba(28, 28, 34, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--box-radius);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero__badges .cert-logo {
  min-width: 108px;
  height: 64px;
  padding: 8px 12px;
}

.hero__badges .cert-logo img {
  height: 44px;
  max-width: 130px;
}

.hero__badges .cert-logo--ford img {
  height: 50px;
  max-width: 64px;
}

.hero__gm-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.hero__gm-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 64px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hero__gm-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__gm-list li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.5;
  color: var(--cert-gm);
  white-space: nowrap;
}

.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
  position: relative;
  background: var(--box-bg);
  border: var(--box-border);
  border-radius: var(--box-radius);
  box-shadow: var(--box-shadow);
  padding: 24px 24px 22px;
  backdrop-filter: blur(16px);
  transition: all 0.3s var(--ease);
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.glass-card--reviews {
  background: linear-gradient(165deg, rgba(77, 184, 232, 0.1) 0%, var(--box-bg) 55%);
}

.glass-card--reviews::before { background: var(--carwise-blue); }

.glass-card--cert {
  background: linear-gradient(165deg, rgba(0, 113, 206, 0.08) 0%, var(--box-bg) 55%);
}

.glass-card--cert::before { background: var(--brand-blue-light); }

.glass-card--warranty {
  background: linear-gradient(165deg, rgba(212, 168, 83, 0.08) 0%, var(--box-bg) 55%);
}

.glass-card--warranty::before { background: var(--carwise-gold); }

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.glass-card--reviews:hover { background: linear-gradient(165deg, rgba(77, 184, 232, 0.14) 0%, rgba(255, 255, 255, 0.07) 55%); }
.glass-card--cert:hover { background: linear-gradient(165deg, rgba(0, 113, 206, 0.12) 0%, rgba(255, 255, 255, 0.07) 55%); }
.glass-card--warranty:hover { background: linear-gradient(165deg, rgba(212, 168, 83, 0.12) 0%, rgba(255, 255, 255, 0.07) 55%); }

.glass-card__eyebrow {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 10px;
}

.glass-card--reviews .glass-card__eyebrow { color: rgba(143, 212, 245, 0.95); }
.glass-card--cert .glass-card__eyebrow { color: rgba(139, 184, 232, 0.9); }
.glass-card--warranty .glass-card__eyebrow { color: rgba(212, 168, 83, 0.9); }

.glass-card__title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.glass-card__rating {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--carwise-blue-light);
}

.glass-card__text {
  font-size: var(--text-body-sm);
  font-weight: 400;
  color: var(--gray-light);
  line-height: var(--leading-body);
}

.glass-card__text strong {
  color: var(--white);
  font-weight: 600;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 110px 0;
  background: var(--dark);
}

body.has-page-bg .section {
  background: rgba(30, 30, 36, 0.5);
  backdrop-filter: blur(4px);
}

.section--dark { background: var(--black); }

body.has-page-bg .section--dark {
  background: rgba(24, 24, 30, 0.55);
}

.section-intro { margin-bottom: 56px; }

.section-intro--center { text-align: center; }

.section-intro__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-intro__label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}

.section-intro--center .section-intro__label {
  justify-content: center;
}

.section-intro__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-intro__desc {
  font-size: var(--text-body);
  color: var(--gray-light);
  line-height: var(--leading-relaxed);
  max-width: 640px;
}

.section-intro--center .section-intro__desc {
  margin: 0 auto;
}

/* ---- Services grid ---- */
.services-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.services-category {
  margin-bottom: 32px;
}

.services-category:last-child {
  margin-bottom: 0;
}

.services-category__label {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 14px;
  padding-left: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services-grid--last .service-item:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.service-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(232, 53, 64, 0.06) 0%, var(--box-bg) 55%);
  padding: 32px 28px;
  border-radius: var(--box-radius);
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--box-shadow);
  transition: all 0.3s var(--ease);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.service-item--featured {
  padding: 36px 30px;
  border-color: rgba(255, 255, 255, 0.3);
}

.service-item--featured::before {
  height: 3px;
}

.service-item:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: linear-gradient(165deg, rgba(232, 53, 64, 0.1) 0%, rgba(255, 255, 255, 0.07) 55%);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.service-item__num {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(232, 53, 64, 0.85);
  margin-bottom: 14px;
  display: block;
}

.service-item__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  color: var(--gray);
  opacity: 0.5;
  pointer-events: none;
}

.service-item--featured .service-item__icon {
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
}

.service-item__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.service-item:hover .service-item__icon {
  opacity: 0.72;
}

.service-item h3 {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-item p {
  font-size: var(--text-body-sm);
  color: var(--gray-light);
  line-height: var(--leading-body);
}

/* ---- Gallery ---- */
#gallery .gallery-item,
#gallery .gallery-compare__panel {
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(232, 53, 64, 0.09) 0%, transparent 32%);
}

#gallery .gallery-item::before,
#gallery .gallery-compare__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, rgba(255, 120, 120, 0.5) 0%, var(--accent) 50%, rgba(196, 30, 42, 0.9) 100%);
  z-index: 5;
  pointer-events: none;
}

#gallery .gallery-item:hover,
#gallery .gallery-compare:hover .gallery-compare__panel {
  border-left-color: #ff4d58;
}

.gallery-featured {
  margin-bottom: 14px;
}

.gallery-featured .gallery-item {
  height: auto;
  aspect-ratio: 4 / 3;
}

.gallery-featured .gallery-item::after {
  height: 58%;
  background: linear-gradient(to top, rgba(16, 16, 20, 0.72) 0%, rgba(16, 16, 20, 0.26) 52%, transparent 100%);
}

.gallery-featured .img-shop {
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.9) contrast(1.06) saturate(0.92);
}

.gallery-featured .gallery-item:hover .img-shop {
  filter: brightness(0.96) contrast(1.06) saturate(0.95);
}

.gallery-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto 14px;
  border-radius: var(--box-radius);
  border: var(--box-border);
  border-left: 3px solid var(--accent);
  box-shadow: var(--box-shadow), inset 4px 0 16px rgba(232, 53, 64, 0.08);
  overflow: hidden;
  background: #1a1a22;
}

.gallery-compare__panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  aspect-ratio: 1 / 1;
}

.gallery-compare__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.94) contrast(1.04);
}

/* Mute baked-in Before/After text in source photos (bottom-right) */
.gallery-compare__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(
      ellipse 58% 52% at 94% 92%,
      rgba(4, 4, 6, 0.96) 0%,
      rgba(6, 6, 8, 0.72) 38%,
      rgba(8, 8, 10, 0.28) 62%,
      transparent 82%
    ),
    linear-gradient(
      to top left,
      rgba(4, 4, 6, 0.88) 0%,
      rgba(6, 6, 8, 0.45) 28%,
      transparent 58%
    );
}

.gallery-compare__panel--after::after {
  background:
    radial-gradient(
      ellipse 52% 68% at 92% 76%,
      rgba(4, 4, 6, 0.97) 0%,
      rgba(6, 6, 8, 0.78) 40%,
      rgba(8, 8, 10, 0.32) 66%,
      transparent 86%
    ),
    linear-gradient(
      to top left,
      rgba(4, 4, 6, 0.9) 0%,
      rgba(6, 6, 8, 0.5) 32%,
      transparent 62%
    );
}

.gallery-compare__split {
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent) 15%, var(--accent) 85%, transparent);
  box-shadow: 0 0 12px rgba(232, 53, 64, 0.45);
  z-index: 2;
}

.gallery-compare__label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(28, 28, 34, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.gallery-compare__panel--before img { object-position: 52% center; }

.gallery-compare__panel--after img { object-position: 48% center; }

.gallery-item img.img-collage,
.gallery-item img.img-portrait {
  object-fit: contain;
  object-position: center center;
  background: #1a1a22;
  filter: brightness(0.98) contrast(1.04);
}

.gallery-item img.img-portrait {
  object-position: center 42%;
}

.gallery-item:hover img.img-collage,
.gallery-item:hover img.img-portrait {
  transform: scale(1.02);
  filter: brightness(1) contrast(1.04);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: var(--box-radius);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  transition: border-color 0.3s var(--ease);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(16, 16, 20, 0.62) 0%, transparent 100%);
  pointer-events: none;
}

.gallery-item:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--box-radius) - 1px);
  transition: transform 0.6s var(--ease);
  filter: brightness(0.92) contrast(1.04);
}

.img-facility {
  object-position: center center;
}

.about__image img.img-facility,
.fleet__visual img.img-facility {
  aspect-ratio: 1024 / 491;
  object-fit: cover;
  object-position: center center;
}

.gallery-item img.img-facility {
  object-fit: contain;
  object-position: center center;
  background: #1a1a22;
}

.gallery-grid .gallery-item:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.gallery-item .img-facility,
.fleet__visual .img-facility,
.about__image .img-facility {
  filter: brightness(0.64) contrast(1.1) saturate(0.85);
}

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

.gallery-item:hover img.img-facility {
  filter: brightness(0.72) contrast(1.1) saturate(0.88);
}

.gallery-item__label {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ---- Fleet ---- */
.fleet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.fleet__text {
  font-size: 0.92rem;
  color: var(--gray);
  margin: 20px 0 28px;
  line-height: 1.75;
}

.fleet__list {
  margin-bottom: 32px;
}

.fleet__list li {
  font-size: 0.85rem;
  color: var(--gray-light);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.fleet__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--white-40);
}

.fleet__visual {
  position: relative;
  border-radius: var(--box-radius);
  overflow: hidden;
  border: var(--box-border);
  border-left: 3px solid var(--brand-blue-light);
  box-shadow: var(--box-shadow), inset 4px 0 16px rgba(0, 113, 206, 0.1);
  background: linear-gradient(90deg, rgba(0, 113, 206, 0.1) 0%, transparent 32%);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.fleet__visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, rgba(139, 184, 232, 0.55) 0%, var(--brand-blue-light) 50%, var(--cert-gm) 100%);
  z-index: 2;
  pointer-events: none;
}

.fleet__visual:hover {
  border-left-color: #9ec8f0;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: var(--box-shadow), inset 5px 0 20px rgba(0, 113, 206, 0.14);
}

.fleet__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.9);
}

.btn-outline {
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 13px 28px;
  transition: all 0.25s;
}

.btn-outline:hover {
  background: var(--white-08);
  border-color: var(--white);
}

/* ---- About ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--box-radius);
  overflow: hidden;
  border: var(--box-border);
  border-left: 3px solid var(--brand-blue-light);
  box-shadow: var(--box-shadow), inset 4px 0 16px rgba(0, 113, 206, 0.1);
  background: linear-gradient(90deg, rgba(0, 113, 206, 0.1) 0%, transparent 32%);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.about__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, rgba(139, 184, 232, 0.55) 0%, var(--brand-blue-light) 50%, var(--cert-gm) 100%);
  z-index: 1;
  pointer-events: none;
}

.about__image:hover {
  border-left-color: var(--cert-gm);
  box-shadow: var(--box-shadow), inset 4px 0 20px rgba(0, 113, 206, 0.16);
}

.about__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about__copy p {
  font-size: var(--text-body);
  color: var(--gray-light);
  margin-bottom: 16px;
  line-height: var(--leading-relaxed);
}

.about__copy strong { color: var(--gray-light); }

.about__trust {
  font-size: 0.9rem !important;
  color: var(--gray-light) !important;
  padding: 16px 20px;
  background: var(--box-bg);
  border: var(--box-border);
  border-left: 3px solid #e83540;
  border-radius: var(--box-radius);
  box-shadow: var(--box-shadow);
}

.about__trust a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-carwise {
  color: var(--carwise-blue-light);
  transition: color 0.2s;
}

.about__trust .link-carwise,
.footer__cert-links .link-carwise {
  color: var(--carwise-blue-light);
}

.link-carwise:hover,
.about__trust .link-carwise:hover,
.footer__cert-links .link-carwise:hover {
  color: #b8e8ff;
}

/* Carwise logo links */
.carwise-logo-link {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.carwise-logo-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.carwise-logo-link--pill,
.cert-link.carwise-logo-link {
  padding: 5px 12px;
  background: #49a2d6;
  border: 1px solid #49a2d6;
  border-radius: 100px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  vertical-align: -0.22em;
}

.carwise-logo-link--pill:hover,
.cert-link.carwise-logo-link:hover {
  background: #55aedf;
  border-color: #8fd4f5;
  opacity: 1;
  transform: translateY(-1px);
}

.carwise-logo-link--pill .carwise-logo,
.cert-link.carwise-logo-link .carwise-logo {
  height: 22px;
}

.carwise-logo-link--pill.carwise-logo-link--md {
  padding: 6px 14px;
}

.carwise-logo-link--pill.carwise-logo-link--md .carwise-logo {
  height: 24px;
}

.carwise-logo-link--pill.carwise-logo-link--lg {
  padding: 8px 16px;
}

.carwise-logo-link--pill.carwise-logo-link--lg .carwise-logo {
  height: 32px;
}

.carwise-logo-link--pill.carwise-logo-link--xl {
  padding: 10px 18px;
}

.carwise-logo-link--pill.carwise-logo-link--xl .carwise-logo {
  height: 38px;
}

.about__trust .carwise-logo-link,
.footer__cert-links .carwise-logo-link {
  text-decoration: none;
}

.carwise-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.carwise-logo--inline { height: 22px; width: auto; }

.carwise-logo--sm { height: 22px; }

.carwise-logo--md { height: 30px; }

.carwise-logo--lg { height: 38px; }

.carwise-logo--xl { height: 46px; }

.hero__cta.carwise-logo-link,
.hero__cta--carwise.carwise-logo-link {
  padding: 8px 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.hero__cta.carwise-logo-link:hover,
.hero__cta--carwise.carwise-logo-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.hero__cta.carwise-logo-link .carwise-logo,
.hero__cta--carwise.carwise-logo-link .carwise-logo {
  height: 28px;
}

.hero__cta--full.carwise-logo-link .carwise-logo {
  height: 32px;
}

.cert-link.carwise-logo-link {
  padding: 6px 14px;
}

.cert-link.carwise-logo-link .carwise-logo {
  height: 24px;
}

.carwise-sticky__cta.carwise-logo-link {
  flex: 1;
  justify-content: center;
  padding: 12px 18px;
  background: #49a2d6;
  border: 1px solid #49a2d6;
  border-radius: 100px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.carwise-sticky__cta.carwise-logo-link--pill {
  padding: 12px 18px;
}

.carwise-sticky__cta.carwise-logo-link .carwise-logo {
  height: 22px;
}

.carwise-sticky__cta.carwise-logo-link:hover {
  background: #55aedf;
  border-color: #8fd4f5;
  opacity: 1;
}

.carwise-block__logo.carwise-logo-link {
  flex-shrink: 0;
}

.contact-form__logo {
  display: inline-flex;
  margin-bottom: 4px;
}

.insurance__stat--link.carwise-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  line-height: normal;
  vertical-align: middle;
}

.insurance__stat--link.carwise-logo-link--pill {
  padding: 14px 18px;
}

.insurance__stat--carwise {
  padding: 20px 0;
}

.insurance__stat--carwise .carwise-logo {
  height: 32px;
  width: auto;
}

.insurance__stat--carwise .insurance__stat-label {
  margin-top: 0;
}

.footer__cert-links .carwise-logo-link {
  vertical-align: middle;
}

.why-item__logo--carwise.carwise-logo-link--pill {
  max-width: none;
  padding: 6px 10px;
}

.contact-form__intro .carwise-logo-link--pill,
.contact__lead .carwise-logo-link--pill,
.section-intro__desc .carwise-logo-link--pill,
.about__trust .carwise-logo-link--pill,
.glass-card__title .carwise-logo-link--pill {
  vertical-align: -0.22em;
}

.fleet__note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.65;
  padding: 16px 20px;
  border-radius: var(--box-radius);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  background: var(--box-bg);
}

/* ---- Callouts ---- */
.callout {
  margin-top: 48px;
  padding: 28px 32px;
  border-radius: var(--box-radius);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  background: var(--box-bg);
}

.callout h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.callout p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
}

.callout--ev {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(232, 53, 64, 0.08) 0%, var(--box-bg) 55%);
  border: 2px solid rgba(232, 53, 64, 0.22);
  border-left: 3px solid var(--accent);
}

.callout--ev::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.callout--ev strong {
  color: rgba(255, 200, 200, 0.95);
  font-weight: 600;
}

.callout--warn {
  margin-top: 24px;
  margin-bottom: 28px;
  border-left: 3px solid var(--accent);
}

/* ---- Why Choose Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.why-item {
  position: relative;
  overflow: hidden;
  padding: 24px 58px 24px 20px;
  border-radius: var(--box-radius);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  background: var(--box-bg);
  transition: all 0.3s var(--ease);
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.why-item--gold {
  background: linear-gradient(165deg, rgba(212, 168, 83, 0.08) 0%, var(--box-bg) 55%);
}

.why-item--gold::before {
  background: var(--carwise-gold);
}

.why-item--blue {
  background: linear-gradient(165deg, rgba(0, 113, 206, 0.08) 0%, var(--box-bg) 55%);
}

.why-item--blue::before {
  background: var(--brand-blue-light);
}

.why-item--red {
  background: linear-gradient(165deg, rgba(232, 53, 64, 0.1) 0%, var(--box-bg) 55%);
}

.why-item--red::before {
  background: var(--accent);
}

.why-item--carwise {
  background: linear-gradient(165deg, rgba(77, 184, 232, 0.1) 0%, var(--box-bg) 55%);
}

.why-item--carwise::before {
  background: var(--carwise-blue);
}

.why-item:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.why-item--gold:hover {
  background: linear-gradient(165deg, rgba(212, 168, 83, 0.12) 0%, rgba(255, 255, 255, 0.06) 55%);
}

.why-item--blue:hover {
  background: linear-gradient(165deg, rgba(0, 113, 206, 0.12) 0%, rgba(255, 255, 255, 0.06) 55%);
}

.why-item--carwise:hover {
  background: linear-gradient(165deg, rgba(77, 184, 232, 0.14) 0%, rgba(255, 255, 255, 0.06) 55%);
}

.why-item--red:hover {
  background: linear-gradient(165deg, rgba(232, 53, 64, 0.14) 0%, rgba(255, 255, 255, 0.06) 55%);
}

.why-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 6px;
}

.why-item--gold strong {
  color: rgba(236, 208, 106, 0.95);
}

.why-item--blue strong {
  color: rgba(139, 184, 232, 0.95);
}

.why-item--carwise strong {
  color: rgba(143, 212, 245, 0.95);
}

.why-item--red strong {
  color: rgba(255, 150, 150, 0.95);
}

.why-item span {
  font-size: var(--text-body-sm);
  color: var(--gray-light);
  line-height: var(--leading-body);
}

.why-item__logo {
  position: absolute;
  top: 14px;
  right: 14px;
  height: 38px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  opacity: 0.82;
  pointer-events: none;
}

.why-item__logo--brand {
  height: 32px;
  max-width: 32px;
  opacity: 0.55;
}

.why-item__logo--tesla {
  height: 34px;
  max-width: 44px;
  opacity: 0.92;
}

.why-item__logo--carwise {
  height: auto;
  max-width: 72px;
  width: auto;
  opacity: 1;
  pointer-events: auto;
}

.why-item__logo--carwise .carwise-logo {
  height: 22px;
  width: auto;
}

.why-item__logo--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--gray);
  opacity: 0.5;
}

.why-item--gold .why-item__logo--icon {
  color: var(--carwise-gold);
  opacity: 0.65;
}

.why-item--carwise .why-item__logo--icon {
  color: var(--carwise-blue-light);
  opacity: 0.65;
}

.why-item--blue .why-item__logo--icon {
  color: var(--brand-blue-light);
  opacity: 0.55;
}

.why-item__logo--icon svg {
  width: 100%;
  height: 100%;
}

.why-item:hover .why-item__logo {
  opacity: 0.95;
}

.why-item:hover .why-item__logo--brand {
  opacity: 0.72;
}

.cert-bar {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--box-radius);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  background: var(--box-bg);
}

.cert-bar__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 20px;
}

.cert-bar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 20px;
  margin-bottom: 28px;
}

.cert-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 76px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.25s var(--ease);
}

.cert-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.cert-logo--static {
  cursor: default;
}

.cert-logo--static:hover {
  transform: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cert-logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.cert-logo--icar img { height: 56px; max-width: 56px; }

.cert-logo--ford img { height: 64px; max-width: 56px; }

.cert-logo--tesla img { height: 54px; max-width: 54px; }

.cert-logo--enterprise {
  min-width: 168px;
  height: 76px;
}

.cert-logo--enterprise img {
  height: 34px;
  max-width: 210px;
}

.cert-bar__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cert-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  background: var(--box-bg);
  transition: all 0.2s;
}

.cert-link--icar {
  border-color: rgba(201, 162, 39, 0.55);
  color: #e8d48a;
}

.cert-link--icar:hover {
  background: var(--cert-gold-soft);
  border-color: var(--cert-gold);
  color: var(--white);
}

.cert-link--ford {
  border-color: rgba(0, 52, 120, 0.7);
  color: #8ab4e8;
}

.cert-link--ford:hover {
  background: var(--cert-ford-soft);
  border-color: #1a5a9e;
  color: var(--white);
}

.cert-link--gm {
  border-color: rgba(0, 113, 206, 0.6);
  color: #8ec8f5;
}

.cert-link--gm:hover {
  background: var(--cert-gm-soft);
  border-color: var(--cert-gm);
  color: var(--white);
}

.cert-link--carwise {
  border-color: rgba(77, 184, 232, 0.55);
  color: #8fd4f5;
}

.cert-link--carwise.carwise-logo-link:hover {
  background: #55aedf;
  border-color: #8fd4f5;
  color: var(--white);
}

.cert-link--tesla {
  border-color: rgba(232, 53, 64, 0.55);
  color: #ff9a9a;
}

.cert-link--tesla:hover {
  background: rgba(232, 53, 64, 0.12);
  border-color: var(--accent);
  color: var(--white);
}

.cert-bar__note {
  font-size: var(--text-label);
  color: var(--white-60);
  margin-top: 18px;
}

/* ---- Insurance ---- */
.insurance {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 56px;
  align-items: start;
}

.insurance__copy p {
  font-size: var(--text-body);
  color: var(--gray-light);
  line-height: var(--leading-relaxed);
  margin-bottom: 16px;
}

.insurance__list {
  margin: 24px 0;
}

.insurance__list li {
  font-size: var(--text-body-sm);
  color: var(--gray-light);
  padding: 8px 0 8px 20px;
  position: relative;
}

.insurance__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e83540;
  font-size: 0.75rem;
}

.insurance__aside {
  padding: 32px 28px;
  border-radius: var(--box-radius);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  background: var(--box-bg);
}

.insurance__aside h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 14px;
}

.insurance__carriers {
  font-size: var(--text-body-sm);
  color: var(--gray-light);
  line-height: var(--leading-body);
  margin-bottom: 28px;
}

.insurance__stat {
  padding: 16px 0;
  border-top: 1px solid var(--glass-border);
}

.insurance__stat--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.insurance__stat--link:hover { opacity: 0.75; }

.insurance__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
}

.insurance__stat-label {
  font-size: 0.72rem;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- Carwise block ---- */
.carwise-block {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
  padding: 32px 36px;
  border-radius: var(--box-radius);
  border: 1px solid rgba(77, 184, 232, 0.32);
  box-shadow: var(--box-shadow);
  background: linear-gradient(165deg, rgba(77, 184, 232, 0.1) 0%, var(--box-bg) 55%);
}

.carwise-block__rating {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--carwise-blue-light);
  line-height: 1;
}

.carwise-block__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 200px;
}

.carwise-block__copy strong {
  font-size: 0.95rem;
  color: var(--white);
}

.carwise-block__copy span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ---- Footer certs ---- */
.footer__certs {
  text-align: center;
  padding: 32px 0 28px;
  border-bottom: 1px solid var(--glass-border);
}

.footer__certs-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 14px;
}

.footer__cert-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 4px;
  font-size: 0.82rem;
}

.footer__cert-links a {
  color: var(--gray-light);
  transition: color 0.2s;
}

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

.footer__cert-links a.link-carwise:hover { color: #b8e8ff; }

.footer__cert-links a.link-tesla:hover { color: #ff9a9a; }

.footer__cert-links span { color: var(--white-40); }

.about__stats {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding: 28px 32px;
  border-radius: var(--box-radius);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  background: var(--box-bg);
}

.about__stats > div {
  flex: 1;
  padding-top: 14px;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
}

.about__stats > div:nth-child(1) { border-top-color: rgba(232, 53, 64, 0.55); }
.about__stats > div:nth-child(2) { border-top-color: rgba(212, 168, 83, 0.55); }
.about__stats > div:nth-child(3) { border-top-color: rgba(110, 201, 154, 0.55); }

.about__stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.about__stats > div:nth-child(1) strong { color: var(--accent); }
.about__stats > div:nth-child(2) strong { color: var(--carwise-blue-light); }
.about__stats > div:nth-child(3) strong { color: #7ec99a; }

.about__stats span {
  font-size: var(--text-label);
  color: var(--white-60);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--box-bg);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  border-radius: var(--box-radius);
  padding: 32px 28px;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.review-card__stars {
  color: var(--carwise-gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card p {
  font-size: var(--text-body-sm);
  color: var(--gray-light);
  line-height: var(--leading-body);
  font-style: italic;
  margin-bottom: 20px;
}

.review-card footer {
  font-size: var(--text-label);
  color: var(--white-60);
}

/* ---- Contact ---- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  padding-bottom: 72px;
}

.contact__lead {
  font-size: var(--text-body);
  color: var(--gray-light);
  margin: 16px 0 36px;
  line-height: var(--leading-body);
}

.contact__details {
  padding: 24px;
  border-radius: var(--box-radius);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  background: var(--box-bg);
}

.contact__row {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact__label {
  display: block;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 6px;
}

.contact__row p {
  font-size: var(--text-body-sm);
  color: var(--gray-light);
  line-height: var(--leading-body);
}

.contact__row a {
  color: var(--white);
  transition: opacity 0.2s;
}

.contact__row a:hover { opacity: 0.7; }

.contact-form {
  background: var(--box-bg);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  border-radius: var(--box-radius);
  padding: 36px;
  backdrop-filter: blur(12px);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 28px;
}

.contact-form--carwise {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(165deg, rgba(77, 184, 232, 0.08) 0%, var(--box-bg) 55%);
  border-color: rgba(77, 184, 232, 0.3);
}

.contact-form__intro {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--white-60);
  margin: 0;
}

.contact-form__steps {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--white-50);
}

.contact-form__steps li + li { margin-top: 6px; }

.contact-form__note {
  font-size: 0.82rem;
  color: var(--white-40);
  margin: 0;
}

.contact-form__note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form__badge {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--carwise-blue-light);
  margin: -12px 0 0;
}

.contact-form__expect h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 12px;
}

.contact-form__expect-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--white-50);
}

.contact-form__expect-list li + li { margin-top: 8px; }

.contact-form__expect-list strong { color: var(--white-80); font-weight: 500; }

.contact-form__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.carwise-plugin-fallback { display: contents; }

.carwise-plugin-slot:empty { display: none; }

.carwise-plugin-slot--loaded {
  min-height: 120px;
  border-radius: 8px;
  overflow: hidden;
}

.carwise-plugin-fallback--hidden .contact-form__actions { display: none; }

.carwise-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(36, 36, 42, 0.94);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  gap: 10px;
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
}

.carwise-sticky.is-visible {
  display: flex;
  transform: translateY(0);
}

.carwise-sticky.is-hidden { transform: translateY(110%); }

.carwise-sticky__call {
  flex: 0 0 auto;
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  text-decoration: none;
}

.carwise-sticky__cta {
  flex: 1;
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, #2a9fd4 0%, #1e7fb0 100%);
  border: 1px solid var(--carwise-blue);
  border-radius: 8px;
  text-decoration: none;
}

body.has-carwise-sticky { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-40); }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.contact__map {
  margin-top: 0;
  border-radius: var(--box-radius);
  border: var(--box-border);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  filter: grayscale(40%) brightness(0.7);
}

.contact__map iframe { display: block; }

/* ---- Footer ---- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--glass-border);
  padding: 40px 0 0;
}

body.has-page-bg .footer {
  background: rgba(24, 24, 30, 0.62);
  backdrop-filter: blur(6px);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}


.footer__nav {
  display: flex;
  gap: 28px;
}

.footer__nav a {
  font-size: var(--text-body-sm);
  color: var(--white-60);
  transition: color 0.2s;
}

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

.footer__call {
  font-size: var(--text-body-sm);
  color: var(--white-60);
  letter-spacing: 0.03em;
}

.footer__bottom {
  border-top: 1px solid var(--glass-border);
  padding: 18px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: var(--text-label);
  color: var(--white-60);
}

/* ---- Form success ---- */
.form-success {
  text-align: center;
  padding: 32px 16px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.form-success p { font-size: 0.88rem; color: var(--gray); }

/* ---- Fade in ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__cards { grid-template-columns: 1fr; }
  .services-highlights { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid--last .service-item:last-child:nth-child(3n + 1) { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-featured .gallery-item { aspect-ratio: 4 / 3; height: auto; }
  .gallery-compare { max-width: 100%; }
  .gallery-compare__panel { min-height: 220px; }
  .gallery-grid .gallery-item:last-child:nth-child(3n + 1) { grid-column: auto; }
  .fleet, .about, .contact, .insurance { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Mobile nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.nav-backdrop.is-visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .header {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
    height: 72px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 8px;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    justify-self: stretch;
    background: var(--banner);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open { transform: translateX(0); }

  .nav__link {
    font-size: 1.1rem;
    padding: 18px 24px;
    color: var(--white-60);
    width: 100%;
    justify-content: center;
  }

  .nav__dropdown { display: none; }

  .header__tools {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
  }

  .header__call { display: none; }

  .header__call-mobile { display: inline-flex; }

  .menu-toggle {
    display: flex;
    z-index: 210;
    justify-self: auto;
  }

  .hero__title { font-size: clamp(2rem, 8.5vw, 2.75rem); }

  .hero__content {
    padding: 36px 24px 20px;
    max-width: none;
  }

  .hero__lead {
    font-size: 0.9rem;
    margin-bottom: 22px;
  }

  .hero__lower {
    padding: 0 24px calc(24px + env(safe-area-inset-bottom));
    gap: 14px;
  }

  .hero__cards { display: none; }

  .hero__actions { flex-direction: column; gap: 10px; }

  .hero__actions .hero__cta { width: 100%; }

  .hero__actions .hero__cta--phone { display: none; }

  #home .hero__actions .hero__cta--phone {
    display: inline-flex;
    order: -1;
  }

  .hero__actions .hero__cta--facebook { order: 3; }

  .hero__badges {
    padding: 16px 14px;
    gap: 12px 14px;
  }

  .hero__badges .cert-logo {
    min-width: 96px;
    height: 58px;
    padding: 8px 10px;
  }

  .hero__badges .cert-logo img { height: 40px; }

  .hero__badges .cert-logo--icar img { height: 42px; max-width: 42px; }

  .hero__badges .cert-logo--ford img { height: 48px; max-width: 44px; }

  .hero__badges .cert-logo--tesla img { height: 40px; max-width: 40px; }

  .hero__badges .cert-logo--enterprise {
    min-width: 140px;
    height: 58px;
  }

  .hero__badges .cert-logo--enterprise img {
    height: 28px;
    max-width: 160px;
  }

  .hero__gm-box {
    min-width: 124px;
    height: 58px;
    padding: 8px 12px;
  }

  .hero__gm-list li { font-size: 0.72rem; }

  .container { padding: 0 24px; }

  .services-highlights { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid--last .service-item:last-child:nth-child(3n + 1) { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-featured .gallery-item { aspect-ratio: 4 / 3; height: auto; }
  .gallery-compare {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    max-width: 520px;
  }

  .gallery-compare__split {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent) 15%, var(--accent) 85%, transparent);
    box-shadow: 0 0 10px rgba(232, 53, 64, 0.35);
  }

  .gallery-compare__panel {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
  .gallery-grid .gallery-item { min-height: 200px; }
  .gallery-grid .gallery-item:last-child:nth-child(3n + 1) { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__inner .brand { align-items: center; }
  .footer__nav { flex-wrap: wrap; justify-content: center; }
  .about__stats { flex-direction: column; gap: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .carwise-block { flex-direction: column; text-align: center; }
}
