/* ============================================
   TOKENS
   ============================================ */
:root {
  --navy: #0D0E40;
  --navy-deep: #080929;
  --navy-soft: #161748;
  --crimson: #89051A;
  --crimson-hover: #A52030;
  --crimson-dim: #6B0415;
  --crimson-light: rgba(137, 5, 26, 0.12);
  --off-white: #F2F4F0;
  --white: #FFFFFF;
  --paper: #F8F8FA;
  --slate: #5C6B73;
  --slate-light: #8A99A0;
  --line: rgba(242, 244, 240, 0.12);
  --line-dark: rgba(13, 14, 64, 0.1);

  /* Legacy aliases so nothing breaks */
  --green: #89051A;
  --green-dim: #6B0415;
  --amber: #FFFFFF;
  --copper: #A52030;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-mono: 'Poppins', sans-serif;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.section-inner, .nav-inner, .hero-inner, .trust-inner, .footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

img, svg { display: block; max-width: 100%; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--crimson);
  color: var(--white);
}
.btn-primary:hover { background: var(--crimson-hover); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(242,244,240,0.35);
}
.btn-ghost:hover { border-color: var(--crimson); color: var(--crimson); }
.btn-ghost:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }

.btn-small {
  font-size: 11px;
  padding: 9px 16px;
  background: var(--navy);
  color: var(--off-white);
}
.btn-small:hover { background: var(--navy-soft); }
.btn-small-accent { background: var(--crimson); color: var(--white); }
.btn-small-accent:hover { background: var(--crimson-hover); }

.btn-full { width: 100%; padding: 15px 28px; }

/* ============================================
   BRAND LOGO
   ============================================ */
.brand-logo {
  height: 100px;
  width: auto;
  max-width: 70vw;
  display: block;
}
.footer-brand-logo {
  height: 108px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 1px 8px rgba(13,14,64,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  white-space: nowrap;
}
.brand-name-line1 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.2;
}
.brand-name-line2 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--crimson);
  line-height: 1.3;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.15s, color 0.15s;
  position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--crimson); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--crimson);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 3px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--crimson-hover); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.nav-toggle span {
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid var(--line-dark);
}
.nav-mobile a {
  padding: 16px 32px;
  color: var(--off-white);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.nav-mobile.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--navy);
  color: var(--off-white);
  padding: 90px 0 80px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 22px;
}
/* Hero eyebrow: white + bold on dark navy background */
.hero .eyebrow {
  color: var(--white);
  font-weight: 700;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  animation: pulse-white 2s infinite;
}
@keyframes pulse-white {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(137,5,26,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(137,5,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(137,5,26,0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.accent-text { color: var(--white); font-weight: 800; }
.hero-sub {
  font-size: 17px;
  color: var(--slate-light);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.stat-num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--off-white);
}
.stat-label {
  font-size: 12px;
  color: var(--slate-light);
  letter-spacing: 0.02em;
}

/* Hero video card */
.hero-video-wrap { display: flex; justify-content: center; }
.video-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid rgba(242,244,240,0.12);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(137,5,26,0.08);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  background: var(--navy-deep);
  z-index: 2;
}
.video-card.has-video .video-placeholder { display: none; }
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 8px 24px rgba(137,5,26,0.4);
}
.video-play-btn:hover { background: var(--crimson-hover); transform: translate(-50%, -50%) scale(1.06); }
.video-play-btn:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }
.video-play-btn.playing { opacity: 0; pointer-events: none; }
.video-card.has-video .video-play-btn { display: flex; }
.video-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--off-white);
  background: rgba(8,9,41,0.65);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid rgba(242,244,240,0.15);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--crimson);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 32px;
  gap: 28px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
  border-left: 2px solid var(--white);
}
.trust-item strong {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
}
.trust-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* ============================================
   BANNER
   ============================================ */
.banner-section { width: 100%; }
.banner-image-wrap {
  width: 100%;
  aspect-ratio: 3.7 / 1;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.banner-image-wrap picture,
.banner-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
}
.banner-image-wrap img { object-fit: cover; }
.banner-image-wrap .photo-placeholder-label { display: none; }
.banner-image-wrap.banner-missing picture { display: none; }
.banner-image-wrap.banner-missing .photo-placeholder-label { display: block; }

/* ============================================
   SECTION GENERIC
   ============================================ */
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.eyebrow-dark {
  color: var(--crimson);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}
.eyebrow-light {
  color: rgba(242,244,240,0.7);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}
.section h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.005em;
}
.section-sub {
  font-size: 16px;
  color: var(--slate);
  margin-top: 16px;
  line-height: 1.6;
}
.section-sub.light { color: var(--slate-light); }

/* ============================================
   ABOUT
   ============================================ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  column-gap: 56px;
  row-gap: 40px;
  align-items: start;
}
.about-copy h2 { margin-bottom: 18px; }
.about-copy .section-sub { margin-top: 0; margin-bottom: 16px; }
.about-copy .section-sub:last-of-type { margin-bottom: 0; }

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: start;
}
.about-highlight {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--crimson);
  border-radius: 6px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-highlight strong {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.about-highlight span {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.5;
}

.about-extra {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.about-brands-label,
.about-areas-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.about-areas p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.6;
}

/* ============================================
   REPAIR / FAULT GRID
   ============================================ */
.repair-section { background: var(--paper); }
.service-group { margin-bottom: 44px; }
.service-group:last-of-type { margin-bottom: 40px; }
.service-group-title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 18px;
}
.fault-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.fault-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.fault-card {
  background: var(--paper);
  padding: 20px 22px;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fault-card:hover { background: var(--white); }
.fault-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fault-icon {
  color: var(--crimson);
  flex-shrink: 0;
}
.fault-card h3 {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
}
.fault-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
}
.fault-time {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--crimson);
  background: rgba(137,5,26,0.1);
  padding: 4px 9px;
  border-radius: 3px;
  display: inline-block;
  align-self: flex-start;
}

.brand-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.brand-strip-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.brand-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.brand-pills span {
  font-size: 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line-dark);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ============================================
   BRAND LOGOS MARQUEE
   ============================================ */
.brands-marquee-section {
  background: var(--white);
  border-bottom: 1px solid var(--line-dark);
  padding: 44px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.brands-marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 56px;
  padding-right: 56px;
}
.marquee-logo-box {
  width: 150px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.marquee-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.marquee-logo:hover { opacity: 1; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}


/* ============================================
   SHOP / PRODUCTS
   ============================================ */
.shop-section { background: var(--navy); color: var(--off-white); }
.shop-section .section-sub { color: var(--slate-light); }

/* fix eyebrow visibility on dark bg */
.shop-section .eyebrow-light {
  color: rgba(242,244,240,0.75);
}

.slider-btn {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-soft);
  border: 1px solid rgba(242,244,240,0.15);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.slider-btn:hover { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.slider-btn:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }
.slider-btn:disabled { opacity: 0.3; pointer-events: none; }

.product-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.product-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-grid::-webkit-scrollbar { display: none; }
.product-card {
  background: var(--navy-soft);
  border: 1px solid rgba(242,244,240,0.08);
  border-radius: 8px;
  padding: 0 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  min-width: 260px;
  overflow: hidden;
}
.product-card.featured {
  border-color: rgba(137,5,26,0.5);
  background: var(--navy-soft);
  position: relative;
}
.product-card.featured::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--crimson);
  border-radius: 8px 8px 0 0;
  z-index: 2;
}
.product-photo {
  aspect-ratio: 1 / 1;
  margin: 0 -18px 14px;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(242,244,240,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.product-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,9,41,0);
  transition: background 0.15s;
}
.product-photo:hover::after { background: rgba(8,9,41,0.25); }
.product-photo-zoom-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(8,9,41,0.7);
  backdrop-filter: blur(3px);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 2;
}
.product-photo:hover .product-photo-zoom-hint { opacity: 1; }
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-photo .photo-placeholder-label { color: var(--slate-light); font-size: 10px; }
.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 4px;
}
.product-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  color: var(--crimson-hover);
  text-transform: uppercase;
}
.product-power {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--crimson);
}
.product-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.3;
}
.product-card > p {
  font-size: 12px;
  color: var(--slate-light);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.spec-list {
  border-top: 1px solid rgba(242,244,240,0.1);
  padding-top: 10px;
  margin-bottom: 14px;
  flex-grow: 1;
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 3px 0;
}
.spec-list li span:first-child { color: var(--slate-light); }
.spec-list li span:last-child { font-family: var(--font-mono); color: var(--off-white); text-align: right; }
.product-foot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--off-white);
}
.product-foot .btn-small { width: 100%; }
.shop-note {
  text-align: center;
  font-size: 14px;
  color: var(--slate-light);
  font-style: italic;
  padding-top: 24px;
  border-top: 1px solid rgba(242,244,240,0.08);
}

/* ============================================
   VEHICLES SUPPORTED
   ============================================ */
.vehicles-section { background: var(--paper); }

.vehicles-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.vehicle-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vehicle-tab {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--line-dark);
  padding: 9px 18px;
  border-radius: 20px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.vehicle-tab:hover { border-color: var(--crimson); color: var(--crimson); }
.vehicle-tab.active {
  background: var(--crimson);
  border-color: var(--crimson);
  color: var(--white);
}
.vehicle-tab:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }

.vehicle-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  padding: 10px 16px;
  min-width: 240px;
  color: var(--slate-light);
  transition: border-color 0.15s;
}
.vehicle-search:focus-within { border-color: var(--crimson); color: var(--crimson); }
.vehicle-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--navy);
  width: 100%;
}
.vehicle-search input::placeholder { color: var(--slate-light); }

.vehicle-card.is-hidden { display: none; }
.vehicles-empty {
  text-align: center;
  font-size: 14px;
  color: var(--slate);
  padding: 32px 0;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.vehicle-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vehicle-photo {
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px dashed var(--line-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vehicle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-light);
}
.vehicle-card figcaption {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--navy);
}
.vehicles-note {
  text-align: center;
  font-size: 14px;
  color: var(--slate);
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

/* ============================================
   TESTIMONIALS (VIDEO)
   ============================================ */
.testimonial-section { background: var(--paper); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-video-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px -8px rgba(13,14,64,0.12);
}
.tv-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid var(--line-dark);
}
.tv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.tv-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  z-index: 2;
}
.tv-thumb.has-video .tv-placeholder { display: none; }
.tv-yt-link { display: block; text-decoration: none; cursor: pointer; }
.tv-yt-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.tv-yt-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); transition: transform 0.15s; }
.tv-yt-link:hover .tv-yt-play { transform: translate(-50%, -50%) scale(1.1); }
.tv-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 8px 22px rgba(137,5,26,0.4);
}
.tv-play-btn:hover { background: var(--crimson-hover); transform: translate(-50%, -50%) scale(1.06); }
.tv-play-btn:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }
.tv-quote {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--navy);
  text-align: left;
}
.tv-footer {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--slate);
  text-align: left;
}
.tv-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost-dark:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}
.btn-ghost-dark:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }

/* ============================================
   CONTACT (REDESIGNED)
   ============================================ */
.contact-section { background: var(--navy-deep); color: var(--off-white); }

.contact-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.contact-header h2 { color: var(--white); }
.contact-header .eyebrow { justify-content: center; }
.contact-header .section-sub { margin-top: 14px; }

.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.contact-cta-card {
  background: var(--navy-soft);
  border: 1px solid rgba(242,244,240,0.1);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  color: var(--off-white);
}
.contact-cta-card:hover {
  border-color: rgba(242,244,240,0.28);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.45);
}
.contact-cta-featured {
  border-color: rgba(137,5,26,0.5);
  background: var(--navy-soft);
}
.contact-cta-featured::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--crimson);
  border-radius: 12px 12px 0 0;
}
.contact-cta-featured:hover { border-color: rgba(137,5,26,0.75); }

.cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(242,244,240,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 6px;
}
.contact-cta-featured .cta-icon {
  background: rgba(137,5,26,0.25);
  color: var(--white);
}
.cta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--slate-light);
}
.cta-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
}
.cta-hint {
  font-size: 12px;
  color: var(--slate-light);
}
.cta-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--crimson);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 4px;
}

.contact-hours-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  background: rgba(242,244,240,0.04);
  border: 1px solid rgba(242,244,240,0.08);
  border-radius: 8px;
  font-size: 14px;
  color: var(--slate-light);
}
.contact-hours-bar svg { color: var(--crimson); flex-shrink: 0; }
.contact-hours-bar strong { color: var(--off-white); font-weight: 500; }

/* ============================================
   FOOTER (ENHANCED)
   ============================================ */
.footer {
  background: var(--white);
  color: var(--slate);
  border-top: 1px solid var(--line-dark);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.footer-brand-name .brand-name-line1 { font-size: 26px; }
.footer-brand-name .brand-name-line2 { font-size: 19px; }
.footer-tagline { font-size: 13.5px; line-height: 1.6; margin-top: 9px; margin-bottom: 16px; color: var(--slate); }
.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(137,5,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.footer-social-link:hover { border-color: var(--crimson); color: var(--white); background: var(--crimson); }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-links li a,
.footer-links li span {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.4;
  transition: color 0.15s;
}
.footer-links li a:hover { color: var(--navy); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: var(--slate-light); }
.footer-bottom-tagline { font-size: 12px; color: var(--slate-light); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8,9,41,0.93);
  backdrop-filter: blur(6px);
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  width: 100%;
}
.lightbox-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--navy-soft);
  border: 1px solid rgba(242,244,240,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--navy-deep);
}
.lightbox-image-wrap .photo-placeholder-label { color: var(--slate-light); font-size: 12px; }
.lightbox-caption {
  color: var(--off-white);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.lightbox-counter {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-light);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(242,244,240,0.15);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.14); }
.lightbox-close:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }
.lightbox-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(242,244,240,0.15);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex: 0 0 auto;
}
.lightbox-nav:hover { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.lightbox-nav:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-video-wrap { order: -1; max-width: 280px; margin: 0 auto 20px; }
  .banner-image-wrap { aspect-ratio: 4.4 / 1; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-extra { grid-template-columns: 1fr; gap: 24px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .fault-grid, .fault-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cta-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-cta-card {
    flex-direction: row;
    text-align: left;
    padding: 20px 22px;
    gap: 16px;
  }
  .cta-icon { width: 48px; height: 48px; flex-shrink: 0; margin-bottom: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section-inner, .nav-inner, .hero-inner, .trust-inner, .footer-inner { padding: 0 20px; }
  .nav-inner { height: 88px; }
  .brand-logo { height: 66px; }
  .brand-name-line1 { font-size: 15px; }
  .brand-name-line2 { font-size: 12.5px; }
  .brands-marquee-section { padding: 24px 0; }
  .marquee-logo-box { width: 96px; height: 52px; }
  .marquee-group { gap: 32px; padding-right: 32px; }
  .hero { padding: 36px 0 32px; }
  .hero-video-wrap { margin: 0 auto 16px; }
  .eyebrow, .eyebrow-dark { margin-bottom: 10px; }
  .hero h1 { font-size: 30px; margin-bottom: 14px; }
  .hero-sub { font-size: 15px; margin-bottom: 20px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding-top: 18px; }
  .hero-actions { flex-direction: column; margin-bottom: 32px; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 44px 0; }
  .section h2 { font-size: 25px; }
  .section-sub { margin-top: 10px; }
  .section-head { margin-bottom: 26px; }
  .banner-image-wrap { aspect-ratio: 2.4 / 1; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 18px 16px; }
  .trust-item strong { font-size: 13.5px; }
  .trust-item span { font-size: 12px; }
  .service-group { margin-bottom: 28px; }
  .service-group:last-of-type { margin-bottom: 24px; }
  .service-group-title { margin-bottom: 12px; }
  .fault-grid, .fault-grid.cols-3 { grid-template-columns: 1fr; }
  .about-grid { row-gap: 24px; }
  .about-extra { padding-top: 24px; }
  .about-highlights { grid-template-columns: 1fr; gap: 12px; }
  .about-highlight { padding: 16px 18px; }
  .product-slider-wrap {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: end;
    align-items: center;
    column-gap: 8px;
    row-gap: 10px;
  }
  .product-grid {
    grid-column: 1 / -1;
    grid-row: 1;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    grid-auto-columns: calc(50% - 6px);
    gap: 12px;
  }
  .slider-btn { grid-row: 2; width: 30px; height: 30px; }
  .slider-btn-prev { grid-column: 1; }
  .slider-btn-next { grid-column: 2; }
  .slider-btn svg { width: 14px; height: 14px; }
  .product-card { padding: 0 10px 12px; flex: none; min-width: 0; }
  .product-photo { margin: 0 -10px 8px; aspect-ratio: 1 / 1; }
  .product-card h3 { font-size: 12.5px; margin-bottom: 0; }
  .product-card > p { display: none; }
  .product-top { margin-bottom: 6px; }
  .product-tag { font-size: 8px; }
  .product-power { font-size: 10.5px; }
  .spec-list { display: none; }
  .price { font-size: 12px; margin-top: 8px; }
  .product-foot { gap: 6px; }
  .product-foot .btn-small { padding: 8px; font-size: 11px; }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .vehicles-toolbar { flex-direction: column; align-items: stretch; margin-bottom: 20px; }
  .vehicle-search { min-width: 0; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-video-card { padding: 12px; gap: 10px; }
  .tv-thumb { aspect-ratio: 16 / 9; }
  .tv-play-btn { width: 40px; height: 40px; }
  .tv-more-wrap { margin-top: 24px; }
  .contact-cta-grid { grid-template-columns: 1fr; gap: 14px; }
  .contact-cta-card { flex-direction: column; align-items: center; text-align: center; padding: 20px; }
  .contact-hours-bar { flex-direction: column; text-align: center; gap: 6px; padding: 14px; margin-top: 20px; }
  .footer { padding: 36px 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; margin-bottom: 20px; }
  .footer-col-brand { grid-column: auto; text-align: center; align-items: center; }
  .footer-col-brand .footer-brand { justify-content: center; flex-direction: column; gap: 8px; margin-bottom: 6px; }
  .footer-col-brand .brand-name-line1,
  .footer-col-brand .brand-name-line2 { text-align: center; }
  .footer-col-brand .footer-tagline { text-align: center; margin-top: 6px; margin-bottom: 12px; }
  .footer-col-brand .footer-socials { justify-content: center; }
  .footer-brand-logo { height: 174px; }
  .footer-col-title { margin-bottom: 12px; }
  .footer-links { gap: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 980px) {
  .lightbox-stage { max-width: 100%; }
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; }
}

@media (max-width: 360px) {
  .brand-name { display: none; }
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.floating-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px -6px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.floating-btn:hover { transform: scale(1.08); }
.floating-btn:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.call-float { background: var(--crimson); }
.call-float:hover { background: var(--crimson-hover); }

.whatsapp-float {
  background: #25D366;
  box-shadow: 0 10px 28px -6px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.55);
  animation: whatsapp-pulse 2.4s infinite;
}
.whatsapp-float:hover { background: #20BD5A; }
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 10px 28px -6px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 10px 28px -6px rgba(0,0,0,0.4), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 28px -6px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
}

.floating-btn-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--navy-deep);
  color: var(--off-white);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.4);
}
.floating-btn-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-deep);
}
.floating-btn:hover .floating-btn-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 680px) {
  .floating-actions { right: 16px; bottom: 16px; gap: 10px; }
  .floating-btn { width: 52px; height: 52px; }
  .floating-btn-tooltip { display: none; }
}

