/* ─── CSS RESET & TOKENS ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy-950: #05101F;
  --navy-900: #091529;
  --navy-800: #0F2040;
  --navy-700: #162E57;
  --navy-600: #1D4175;
  --navy-500: #2B5990;
  --navy-400: #3D6FA8;
  --navy-200: #ABBDD9;
  --navy-100: #D5DEED;
  --navy-50:  #EEF2F8;

  --orange-600: #EA6C0D;
  --orange-500: #F97316;
  --orange-400: #FB923C;
  --orange-100: #FFEDD5;

  --white: #FFFFFF;
  --slate-50:  #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;

  --green: #10B981;
  --green-light: #D1FAE5;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --red-light: #FEE2E2;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --shadow-sm: 0 1px 3px rgba(9,21,41,0.08);
  --shadow-md: 0 4px 16px rgba(9,21,41,0.10);
  --shadow-lg: 0 12px 40px rgba(9,21,41,0.14);
  --shadow-xl: 0 24px 64px rgba(9,21,41,0.18);
  --shadow-orange: 0 8px 32px rgba(249,115,22,0.28);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITY ────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
/* Mobile clickability cue: links blink once every 3s */
@keyframes linkPulse {
  0%, 100% { opacity: 1; }
  8%       { opacity: 0.4; }
  16%      { opacity: 1; }
}
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  a:not(.nav-logo) { animation: linkPulse 3s ease-in-out infinite; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up    { animation: fadeUp 0.65s ease-out both; }
.anim-fade-in    { animation: fadeIn 0.5s ease-out both; }
.anim-slide-r    { animation: slideRight 0.6s ease-out both; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.12s; }
.d3 { animation-delay: 0.19s; }
.d4 { animation-delay: 0.26s; }
.d5 { animation-delay: 0.33s; }
.d6 { animation-delay: 0.40s; }
.d7 { animation-delay: 0.47s; }
.d8 { animation-delay: 0.54s; }

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  background: rgba(9,21,41,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  display: block;
  width: auto;
  height: 44px;
  /* Single-asset inversion: black artwork → white on dark nav. Swap for a true reversed asset when available. */
  filter: brightness(0) invert(1);
}
.nav-logo em {
  font-style: normal;
  color: var(--orange-500);
}
.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 4px;
  padding: 2px 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--orange-400);
  text-transform: uppercase;
  margin-left: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-ghost-nav {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}
.btn-ghost-nav:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-primary-nav {
  padding: 9px 22px;
  background: var(--orange-500);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2px;
  box-shadow: var(--shadow-orange);
  transition: all 0.2s;
}
.btn-primary-nav:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(249,115,22,0.36);
}

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  background-color: var(--white);
  background-image: url('../images/banner-storefront.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid var(--slate-200);
}
@media (max-width: 800px) {
  .hero { background-image: url('../images/banner-storefront-800.webp'); }
}
/* Original light gradient overlay — sits between the bg image and the copy panel */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.20) 45%, rgba(255,255,255,0.08) 100%);
  pointer-events: none;
}
/* Opaque image cover-layer that sits above the copy panel and fades out on hover,
   revealing the original layout (image background + light gradient + dark-glass copy at 0.62). */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url('../images/banner-storefront.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.8s ease,
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.8s ease;
  will-change: opacity, transform, filter;
}
@media (max-width: 800px) {
  .hero::after { background-image: url('../images/banner-storefront-800.webp'); }
}
.hero:hover::after,
.hero.is-revealed::after {
  opacity: 0;
  transform: scale(1.04);
  filter: blur(2px);
}
.hero-copy {
  position: relative;
  z-index: 1;
  background: rgba(9,21,41,0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 18px 50px -18px rgba(5,16,31,0.55);
}
.hero-copy .hero-h1 { color: var(--white); }
.hero-copy .hero-h1 .block2 { color: var(--slate-300); }
.hero-copy .hero-sub { color: var(--slate-300); }
.hero-copy .hero-stats { border-top-color: rgba(255,255,255,0.12); }
.hero-copy .hero-stat:not(:last-child)::after { background: rgba(255,255,255,0.12); }
.hero-copy .hero-stat-num { color: var(--white); }
.hero-copy .hero-stat-label { color: var(--slate-400); }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 72px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange-400);
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: var(--navy-900);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-h1 .accent { color: var(--orange-500); }
.hero-h1 .block2 { color: var(--slate-400); }
.hero-sub {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  background: var(--orange-500);
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.2px;
  box-shadow: var(--shadow-orange);
  transition: all 0.22s;
}
.btn-primary-hero:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(249,115,22,0.38);
}
.btn-primary-hero .arrow {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  transition: transform 0.2s;
}
.btn-primary-hero:hover .arrow { transform: translateX(3px); }
.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.2s;
}
.btn-secondary-hero:hover { color: var(--navy-900); }
.btn-secondary-hero svg { opacity: 0.6; }

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--slate-200);
  padding-top: 36px;
}
.hero-stat {
  flex: 1;
  padding-right: 32px;
  position: relative;
}
.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; height: 80%;
  width: 1px;
  background: var(--slate-200);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num em {
  font-style: normal;
  color: var(--orange-500);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: var(--font-mono);
}

/* ─── HERO PANEL (right side — Live Tracker) ──────────────────────────────── */
.hero-panel {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hp-header {
  background: var(--navy-800);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-title-icon {
  width: 26px; height: 26px;
  background: rgba(249,115,22,0.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.5px;
}
.live-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}
.hp-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.job-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.job-row:hover {
  border-color: var(--navy-100);
  box-shadow: var(--shadow-sm);
}
.job-row-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--navy-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.job-row-info { flex: 1; min-width: 0; }
.job-row-name { font-size: 13px; font-weight: 600; color: var(--navy-800); }
.job-row-car  { font-size: 11px; color: var(--slate-500); margin-top: 1px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-blue   { background: #DBEAFE; color: #1D4ED8; }
.sp-amber  { background: var(--amber-light); color: #92400E; }
.sp-green  { background: var(--green-light); color: #065F46; }
.sp-slate  { background: var(--slate-100); color: var(--slate-600); }
.hp-footer {
  padding: 12px 14px;
  border-top: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-footer-text { font-size: 11px; color: var(--slate-500); }
.hp-track-btn {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange-500);
  display: flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.hp-track-btn:hover { gap: 7px; }

/* ─── TRUST BAR (running newsflash marquee) ──────────────────────────────── */
.trust-bar {
  background: var(--slate-100);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 14px 0;
  overflow: hidden;
}
.trust-marquee {
  display: flex;
  width: max-content;
  /* Soft fade at both edges so items appear/disappear gracefully */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0 11px;   /* half the gap, so the seam between copies stays even */
  list-style: none;
  flex-shrink: 0;
  animation: trust-scroll 38s linear infinite;
}
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
  /* Static fallback: show the first copy centered, hide the duplicate */
  .trust-marquee { width: 100%; justify-content: center; flex-wrap: wrap; -webkit-mask-image: none; mask-image: none; }
  .trust-track:last-child { display: none; }
  .trust-track { flex-wrap: wrap; justify-content: center; }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--slate-600);
  white-space: nowrap;
}
.trust-icon {
  width: 28px; height: 28px;
  background: var(--navy-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.trust-divider { color: var(--slate-300); font-size: 18px; }

/* ─── SECTION SHARED ─────────────────────────────────────────────────────── */
.section { padding: 84px 0; }
.section-alt { background: var(--slate-50); }
.section-dark { background: var(--navy-900); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--orange-500);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--navy-900);
  margin-bottom: 16px;
}
.section-h2 .accent { color: var(--orange-500); }
.section-h2-light { color: var(--white); }
.section-sub {
  font-size: 16px;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 520px;
}
.section-sub-light { color: rgba(255,255,255,0.45); }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border: 2px solid var(--navy-200);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-600);
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-outline:hover {
  border-color: var(--navy-500);
  color: var(--navy-800);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange-500);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow-orange);
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(249,115,22,0.36);
}

/* ─── SERVICES ───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card-image {
  position: absolute;
  inset: 0;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  transform: scale(1);
  transform-origin: center;
  transition: opacity 0.45s ease, transform 0.55s ease;
  z-index: 0;
  pointer-events: none;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 255, 255, 0.38) 55%,
    rgba(255, 255, 255, 0.22) 100%);
  opacity: 0.55;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 2;
}
.service-card:hover,
.service-card.is-revealed {
  border-color: var(--navy-200);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before,
.service-card.is-revealed::before { transform: scaleX(1); }
.service-card:hover::after,
.service-card.is-revealed::after {
  opacity: 1;
  background: linear-gradient(180deg,
    rgba(9, 21, 41, 0.45) 0%,
    rgba(9, 21, 41, 0.70) 55%,
    rgba(9, 21, 41, 0.88) 100%);
}
.service-card:hover .service-card-image,
.service-card.is-revealed .service-card-image {
  opacity: 0.85;
  transform: scale(1.08);
}
.service-card-name {
  position: relative;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: color 0.45s ease, text-shadow 0.45s ease;
}
.service-card:hover .service-card-name,
.service-card.is-revealed .service-card-name {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}
.service-card-desc {
  position: relative;
  z-index: 3;
  font-size: 13.5px;
  color: var(--slate-700);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: color 0.45s ease, text-shadow 0.45s ease;
}
.service-card:hover .service-card-desc,
.service-card.is-revealed .service-card-desc {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}
.service-card-link {
  position: relative;
  z-index: 3;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange-500);
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link,
.service-card.is-revealed .service-card-link { gap: 8px; }

/* ─── WHY US ──────────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-visual {
  position: relative;
  background: rgba(9,21,41,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 18px 50px -18px rgba(5,16,31,0.55);
  overflow: hidden;
}
.why-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.why-stat-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.why-stat-block .num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.why-stat-block .num em { font-style: normal; color: var(--orange-500); }
.why-stat-block .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-family: var(--font-mono);
}
.why-brands {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.brand-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-mono);
}
.why-block-label {
  font-size: 12px;
  color: var(--orange-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.insurer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.insurer-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.insurer-card img {
  width: auto;
  height: 30px;
  max-width: 100%;
  object-fit: contain;
}
.insurer-card span {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}
@media (max-width: 640px) {
  .insurer-grid { grid-template-columns: repeat(3, 1fr); }
  .insurer-card img { height: 26px; }
}
.partner-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.partner-card img {
  width: auto;
  height: 36px;
  max-width: 100%;
  object-fit: contain;
}
.partner-card span {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}
@media (max-width: 640px) {
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
.why-list.is-revealed .why-item {
  animation: whyFloatUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--why-i, 0) * 220ms);
}
@keyframes whyFloatUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .why-item { opacity: 1; transform: none; }
  .why-list.is-revealed .why-item { animation: none; }
}
.why-item-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--orange-100);
  border: 1.5px solid rgba(249,115,22,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 5px;
}
.why-item-desc {
  font-size: 13.5px;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ─── CERTIFICATIONS (highlighted under Why Us) ──────────────────────────── */
.certifications {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--slate-200);
  text-align: center;
}
.cert-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange-600);
  text-transform: uppercase;
  background: var(--orange-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.cert-heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: var(--navy-900);
  line-height: 1.1;
  margin-bottom: 14px;
}
.cert-heading em { font-style: normal; color: var(--orange-500); }
.cert-sub {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 36px;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.cert-card:hover {
  border-color: var(--orange-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cert-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  background: var(--orange-100);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.cert-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.cert-desc {
  font-size: 12.5px;
  color: var(--slate-500);
  line-height: 1.5;
}

/* ─── MEDIA SECTION (articles / features / social tabs) ──────────────────── */
.media-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.media-header .section-tag { margin: 0 auto 14px; }
.media-header .section-sub { margin: 14px auto 0; }

.media-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 36px;
}
.media-tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--slate-600);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.media-tab:hover { color: var(--navy-900); }
.media-tab.is-active {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.media-tab:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 2px;
}

.media-cube-viewport {
  position: relative;
  width: 100%;
  perspective: 2000px;
  perspective-origin: 50% 50%;
  transition: height 0.75s cubic-bezier(0.65, 0.02, 0.3, 1);
  overflow: visible;
}
.media-cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.65, 0.02, 0.3, 1);
  will-change: transform;
}
.media-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: 50% 50%;
  transform: rotateY(0deg) translateZ(var(--cube-depth, 240px));
  transition: opacity 0.35s ease;
}
.media-panel[data-face="0"] { transform: rotateY(0deg)   translateZ(var(--cube-depth, 240px)); }
.media-panel[data-face="1"] { transform: rotateY(120deg) translateZ(var(--cube-depth, 240px)); }
.media-panel[data-face="2"] { transform: rotateY(240deg) translateZ(var(--cube-depth, 240px)); }
.media-panel:not(.is-active) { opacity: 0.35; }

@media (prefers-reduced-motion: reduce) {
  .media-cube,
  .media-cube-viewport { transition: none; }
  .media-panel { transition: none; }
}

.media-empty {
  text-align: center;
  color: var(--slate-600);
  font-size: 14px;
  padding: 32px 0;
}

/* ─── REVIEWS SECTION (Google reviews — 4-face cube carousel) ─────────────── */
.reviews-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.reviews-header .section-tag { margin: 0 auto 14px; }
.reviews-header .section-sub { margin: 14px auto 0; }

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 10px 18px 10px 14px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 999px;
  text-decoration: none;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.reviews-google-link:hover {
  border-color: var(--orange-400);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.reviews-google-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 14px;
  border-right: 1px solid var(--slate-200);
}
.reviews-google-stars {
  color: var(--orange-500);
  font-size: 15px;
  letter-spacing: 2px;
}
.reviews-google-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy-900);
}
.reviews-google-cta { color: var(--orange-600); }

.reviews-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 36px;
}
.reviews-tab {
  appearance: none;
  background: transparent;
  border: 0;
  min-width: 36px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-600);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.reviews-tab:hover { color: var(--navy-900); }
.reviews-tab.is-active {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.reviews-tab:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 2px;
}

.reviews-cube-viewport {
  position: relative;
  width: 100%;
  perspective: 2000px;
  perspective-origin: 50% 50%;
  transition: height 0.75s cubic-bezier(0.65, 0.02, 0.3, 1);
  overflow: visible;
}
.reviews-cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.65, 0.02, 0.3, 1);
  will-change: transform;
}
.reviews-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: 50% 50%;
  transition: opacity 0.35s ease;
}
/* 4-faced cube: 90° steps. depth = width / 2 (computed in JS via cube-depth). */
.reviews-panel[data-face="0"] { transform: rotateY(0deg)   translateZ(var(--cube-depth, 320px)); }
.reviews-panel[data-face="1"] { transform: rotateY(90deg)  translateZ(var(--cube-depth, 320px)); }
.reviews-panel[data-face="2"] { transform: rotateY(180deg) translateZ(var(--cube-depth, 320px)); }
.reviews-panel[data-face="3"] { transform: rotateY(270deg) translateZ(var(--cube-depth, 320px)); }
.reviews-panel:not(.is-active) { opacity: 0.35; }

@media (prefers-reduced-motion: reduce) {
  .reviews-cube,
  .reviews-cube-viewport { transition: none; }
  .reviews-panel { transition: none; }
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start; /* cards size to their own content — no forced equal-row stretch */
}
.review-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 16px;
  padding: 22px 22px 18px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
  border-color: var(--orange-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-stars {
  color: var(--orange-500);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate-700, var(--navy-800));
  margin: 0 0 16px;
}
.review-text--muted {
  color: var(--slate-500);
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
}
.review-avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.review-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.review-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange-600);
  background: var(--orange-50, #fff4ec);
  padding: 2px 7px;
  border-radius: 999px;
}
.review-detail {
  font-size: 12px;
  color: var(--slate-500);
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
}

.fa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 24px;
  justify-content: center;
  text-align: left;
}

/* Social grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.social-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange-400);
  box-shadow: var(--shadow-md);
}
.social-card-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--slate-100);
  color: var(--navy-900);
}
.social-card-icon svg { width: 22px; height: 22px; }
.social-card--ig .social-card-icon { background: linear-gradient(135deg,#f9ce34,#ee2a7b 50%,#6228d7); color: #fff; }
.social-card--fb .social-card-icon { background: #1877f2; color: #fff; }
.social-card--tt .social-card-icon { background: #000; color: #fff; }
.social-card--wa .social-card-icon { background: #25d366; color: #fff; }
.social-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.social-card-platform {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-600);
}
.social-card-handle {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.social-card-meta {
  font-size: 12px;
  color: var(--slate-600);
}
.social-card-arrow {
  font-size: 18px;
  color: var(--orange-500);
  transition: transform 0.18s;
}
.social-card:hover .social-card-arrow { transform: translateX(3px); color: var(--orange-600); }
.fa-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.fa-card:hover {
  border-color: var(--orange-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.fa-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--slate-100);
  overflow: hidden;
}
.fa-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fa-card:hover .fa-card-media img {
  transform: scale(1.04);
}
.fa-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.fa-card-source {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--orange-600);
  text-transform: uppercase;
}
.fa-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.35;
  letter-spacing: -0.1px;
}
.fa-card-cta {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-500);
  letter-spacing: 0.2px;
}
.fa-card:hover .fa-card-cta { color: var(--orange-600); }

/* ─── PROCESS ────────────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 52px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--slate-200) 0px, var(--slate-200) 8px,
    transparent 8px, transparent 16px
  );
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--slate-200);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--slate-400);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.process-step.active .process-num {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.process-step-icon { font-size: 22px; margin-bottom: 10px; }
.process-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.process-step-desc {
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.55;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  border-color: var(--navy-200);
  box-shadow: var(--shadow-md);
}
.testimonial-card.featured {
  border-color: var(--navy-200);
  background: var(--navy-50);
}
.tc-quote-mark {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--orange-500);
  line-height: 0.7;
  margin-bottom: 16px;
  opacity: 0.6;
}
.tc-stars { color: var(--orange-500); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.tc-text {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.tc-name { font-size: 13.5px; font-weight: 600; color: var(--navy-800); }
.tc-vehicle { font-size: 11px; color: var(--slate-500); font-family: var(--font-mono); }

/* ─── TRACK BANNER ───────────────────────────────────────────────────────── */
.track-banner {
  background: var(--navy-800);
  border-radius: 18px;
  padding: 44px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.track-banner::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,0.1), transparent 65%);
}
.track-banner-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--orange-400);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.track-banner-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.track-banner-sub {
  font-size: 14.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.track-input-row {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.track-input {
  padding: 13px 20px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  width: 180px;
  outline: none;
  transition: border-color 0.2s;
}
.track-input::placeholder {
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
}
.track-input:focus { border-color: var(--orange-500); }
.btn-track {
  padding: 13px 28px;
  background: var(--orange-500);
  border-radius: 7px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-orange);
  transition: all 0.2s;
}
.btn-track:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}

/* ─── CONTACT SECTION ────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--orange-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-icon-link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.contact-info-icon-link:hover,
.contact-info-icon-link:focus-visible {
  background: var(--orange-200, #ffd9b8);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  outline: none;
}
.contact-info-label { font-size: 11px; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; font-family: var(--font-mono); }
.contact-info-val { font-size: 15px; font-weight: 600; color: var(--navy-800); }
.contact-info-sub { font-size: 12.5px; color: var(--slate-500); }

.contact-form {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-family: var(--font-mono);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy-800);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(43,89,144,0.08);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--slate-400); }
/* Invalid field state + inline error message */
.form-input.invalid, .form-select.invalid, .form-textarea.invalid {
  border-color: #DC2626;
}
.form-input.invalid:focus, .form-select.invalid:focus, .form-textarea.invalid:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,0.10);
}
.form-error {
  color: #DC2626;
  font-size: 11.5px;
  font-weight: 500;
  margin-top: 5px;
  min-height: 0;
}
.form-error:empty { margin-top: 0; }
/* Honeypot — visually hidden, off-screen, never focusable by sighted users */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.btn-form-submit {
  width: 100%;
  padding: 13px;
  background: var(--orange-500);
  border-radius: 7px;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-form-submit:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}
.form-note { font-size: 11px; color: var(--slate-400); text-align: center; margin-top: 10px; }
.form-file {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px dashed var(--slate-200);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-file:hover { border-color: var(--navy-400); }
.form-file:focus-within {
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(43,89,144,0.08);
}
.form-file-icon { font-size: 16px; line-height: 1; }
.form-file-text { font-size: 14px; color: var(--slate-400); font-family: var(--font-body); }
.form-file.has-files { border-style: solid; border-color: var(--navy-400); }
.form-file.has-files .form-file-text { color: var(--navy-800); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-950);
  padding: 60px 0 28px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-logo em { font-style: normal; color: var(--orange-500); }
.footer-logo img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 100%;
  /* Single-asset inversion: black artwork → white on dark footer. Swap for a true reversed asset when available. */
  filter: brightness(0) invert(1);
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.6; max-width: 240px; }
.footer-motto { margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red, #C8102E); }
.footer-col-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  font-family: var(--font-mono);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom-left { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── LOCATION ───────────────────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-map {
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  background: var(--slate-100);
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about-intro { max-width: 720px; margin-bottom: 44px; }
.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 52px;
  align-items: start;
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate-600);
}
.about-lead {
  font-size: 18px;
  color: var(--navy-900);
  font-weight: 500;
}
.about-body strong { color: var(--navy-900); font-weight: 700; }

/* Pull-quote */
.about-quote {
  margin-top: 14px;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--orange-500);
}
.about-quote p {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.about-quote .accent { color: var(--orange-500); font-style: italic; }
.about-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate-500);
}

/* Legacy / heritage card */
.legacy-card {
  position: relative;
  background: var(--navy-900);
  border: 1px solid var(--navy-700);
  border-radius: 16px;
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.legacy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-500), transparent);
}
.legacy-year {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  margin-bottom: 4px;
}
.legacy-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.legacy-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--navy-100);
  margin-bottom: 14px;
}
.legacy-card p strong { color: var(--white); font-weight: 600; }
.legacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  background: rgba(249,115,22,0.14);
  border: 1px solid rgba(249,115,22,0.4);
  border-radius: 8px;
  padding: 9px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-400);
}

/* ─── CONTACT (Get in Touch) ─────────────────────────────────────────────── */
.contact-info .section-sub { margin-top: 14px; max-width: 560px; }
.contact-detail { margin-top: 26px; }
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 6px;
}
.contact-detail-val { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-val a {
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  text-decoration: none;
}
.contact-detail-val a:hover { color: var(--orange-600); }

/* ─── REQUEST A QUOTE ─────────────────────────────────────────────────────── */
.quote-header {
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: center;
}
.quote-header .section-tag { margin: 0 auto 12px; }
.quote-header .section-sub { margin: 14px auto 0; }
.quote-form-wrap { max-width: 720px; margin: 0 auto; }

/* ─── DEPARTMENT HOURS (compact list) ─────────────────────────────────────── */
.dept-hours {
  margin-top: 32px;
  max-width: 460px;
  border-top: 1px solid var(--slate-200);
}
.dept-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--slate-200);
}
.dept-name {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--navy-900);
}
.dept-time {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate-600);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.dept-row--always { border-bottom: 0; }
.dept-time--always {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-600);
}

/* ─── DISABLED: Tracking ─────────────────────────────────────────────────── */
/* Tracking isn't ready yet — hidden site-wide via display:none.
   "Book a Service" CTAs now link to the Request a Quote section (#quote). */
.hero-panel,
.btn-secondary-hero,
.hp-track-btn,
.track-banner,
.footer-links li:has(a[href$="track.html"]) { display: none; }

/* Footer Account column (Client Portal / Login / Register — not ready yet) */
.footer-grid > div:nth-child(4) { display: none; }

/* Navbar "Request A Quote" button hidden for now (hero button still shows).
   Covers both the desktop nav and the mobile drawer instance. */
.btn-primary-nav { display: none; }

/* With the right-side hero panel hidden, left copy spans full width */
.hero-inner { grid-template-columns: 1fr; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { gap: 0; position: relative; }

  /* Mobile drawer when hamburger is open — wrap onto stacked rows */
  .nav-inner.menu-open {
    flex-wrap: wrap;
    height: auto;
    min-height: 68px;
    align-items: center;
    row-gap: 0;
  }
  .nav-inner.menu-open .nav-logo { order: 0; }
  .nav-inner.menu-open .nav-toggle { order: 1; }
  .nav-inner.menu-open .nav-links {
    display: flex;
    order: 2;
    flex-basis: 100%;
    flex-direction: column;
    margin: 0;
    padding: 12px 0 16px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .nav-inner.menu-open .nav-links a {
    display: block;
    padding: 14px 4px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-inner.menu-open .nav-links li:last-child a { border-bottom: none; }
  .nav-inner.menu-open .nav-actions {
    display: flex;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 16px;
  }
  .nav-inner.menu-open .nav-actions .btn-ghost-nav,
  .nav-inner.menu-open .nav-actions .btn-primary-nav {
    text-align: center;
    padding: 14px 18px;
    font-size: 14px;
  }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 52px 0 48px; }
  .hero-h1 { font-size: 52px; }
  .hero-panel { display: none; }
  .hero-copy { padding: 28px 24px; }

  .section { padding: 56px 0; }
  .section-h2 { font-size: 38px; }
  .section-header-row { flex-direction: column; align-items: flex-start; }

  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 28px; }
  .location-map, .location-map iframe { min-height: 320px; }
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-quote p { font-size: 26px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-heading { font-size: 28px; }
  .certifications { margin-top: 52px; padding-top: 40px; }
  .fa-grid { grid-template-columns: 1fr; gap: 20px; }
  .media-tabs { width: 100%; overflow-x: auto; }
  .media-tab { padding: 9px 16px; font-size: 12px; }
  .review-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-tab { min-width: 32px; padding: 8px 12px; font-size: 12px; }
  .reviews-google-link { flex-direction: column; gap: 10px; padding: 14px 18px; text-align: center; }
  .reviews-google-rating { padding-right: 0; border-right: 0; }
  .social-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .process-steps::before { display: none; }
  .track-banner { grid-template-columns: 1fr; padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  .trust-track { gap: 16px; padding: 0 8px; animation-duration: 26s; }

  .hero-stats { gap: 24px; flex-direction: column; border-top: none; padding-top: 0; }
  .hero-stat::after { display: none; }
  .hero-stat { padding: 0; }

  /* Larger touch targets and 16px font to prevent iOS zoom on focus */
  .form-input, .form-select, .form-textarea {
    padding: 14px 16px;
    font-size: 16px;
  }
  .track-input { font-size: 16px; padding: 13px 14px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 44px; }
  .track-banner-title { font-size: 30px; }
  .track-input-row { flex-direction: column; }
  .track-input { width: 100%; }
  .btn-track { width: 100%; text-align: center; }
}
