/* ==========================================================================
   QuickCar: Driveaway Vehicle Logistics
   Theme: "The Open Route", asphalt dark + glowing route lines,
   condensed highway-sign type, license-plate stat badges.
   Colorway derived from the QuickCar logo (monochrome teal).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=Archivo:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Logo-derived palette (all teal) */
  --teal: #16999a;
  --teal-dark: #067f7e;
  --teal-bright: #33cac6;
  /* Secondary accents: kept as --blue* names so existing rules resolve,
     but remapped to deeper/lighter teals from the logo. */
  --blue: #0e7d7c;
  --blue-deep: #054a49;
  --blue-light: #58b6b7;

  /* Neutrals */
  --navy: #0a1220;
  --navy-2: #101d30;
  --navy-3: #172a44;
  --ink: #0d1b2a;
  --paper: #f6f8fa;
  --paper-2: #eef2f5;
  --paper-3: #e3e9ee;
  --white: #ffffff;

  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(13, 27, 42, 0.1);

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1200px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-lg: 0 30px 60px -20px rgba(10, 18, 32, 0.45);
  --shadow-md: 0 16px 32px -12px rgba(10, 18, 32, 0.3);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------- Reset ---------------------------------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}
.section--tight { padding: 64px 0; }
.section--dark {
  background: var(--navy);
  color: var(--paper);
}
.section--navy2 { background: var(--navy-2); color: var(--paper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-weight: 500;
}
.section--dark .eyebrow,
.section--navy2 .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow { color: var(--teal-bright); }
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.005em;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: rgba(13, 27, 42, 0.72);
  max-width: 56ch;
}
.section--dark .lede,
.section--navy2 .lede,
.hero .lede,
.page-hero .lede { color: rgba(246, 248, 250, 0.72); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head__text { max-width: 640px; }
.section-head h2 { margin-top: 12px; }

/* ---------------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-dark));
  color: var(--navy);
  box-shadow: 0 10px 24px -8px rgba(41, 190, 176, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(41, 190, 176, 0.65); }
.btn--ghost-dark {
  border-color: var(--line-dark);
  color: var(--paper);
}
.btn--ghost-dark:hover { border-color: var(--teal-bright); color: var(--teal-bright); }
.btn--ghost-light {
  border-color: var(--line-light);
  color: var(--ink);
}
.btn--ghost-light:hover { border-color: var(--blue); color: var(--blue); }
.btn--block { width: 100%; }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ---------------------------------- Header ---------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), box-shadow .3s var(--ease);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 32, 0);
  backdrop-filter: blur(0px);
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  z-index: -1;
}
.site-header.is-scrolled { padding: 12px 0; box-shadow: 0 10px 30px -15px rgba(0,0,0,.4); }
.site-header.is-scrolled::before {
  background: rgba(10, 18, 32, 0.88);
  backdrop-filter: blur(10px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand img, .brand svg { height: 48px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(246, 248, 250, 0.75);
  padding: 10px 16px;
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav a.is-active { color: var(--teal-bright); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--paper);
  white-space: nowrap;
}
.header-phone svg { width: 15px; height: 15px; color: var(--teal-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; width: 18px; height: 2px; background: currentColor;
  transition: transform .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  padding-top: 168px;
  padding-bottom: 110px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 15% 10%, rgba(41, 190, 176, 0.16), transparent 60%),
    radial-gradient(50% 60% at 90% 90%, rgba(6, 127, 126, 0.32), transparent 65%);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { color: var(--white); }
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal-bright), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .lede { margin-top: 24px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}
.hero-badges {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(246,248,250,.8);
  padding: 9px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}
.hero-badge svg { width: 14px; height: 14px; color: var(--teal-bright); }

/* Route visual */
.route-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.route-svg-wrap { width: 100%; aspect-ratio: 1 / 0.92; }
.route-visual svg { width: 100%; height: 100%; }
.route-line {
  fill: none;
  stroke: url(#routeGradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  stroke-dashoffset: 0;
  animation: dashMove 2.4s linear infinite;
}
@keyframes dashMove { to { stroke-dashoffset: -44; } }
.route-pin { filter: drop-shadow(0 6px 14px rgba(0,0,0,.35)); }
.route-car {
  offset-path: path('M40,240 C 140,60 260,340 380,90');
  animation: driveRoute 6s linear infinite;
}
@keyframes driveRoute {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}
.route-card {
  margin-top: -18px;
  background: rgba(16, 29, 48, 0.9);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  gap: 22px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.route-card div { text-align: center; }
.route-card b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-bright); }
.route-card span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(246,248,250,.6); }

/* ---------------------------------- Stat strip / license plates ---------------------------------- */
.stat-strip {
  background: var(--navy-2);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 40px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.plate {
  border: 2px solid var(--line-dark);
  border-radius: 8px;
  padding: 16px 14px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
}
.plate b {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  display: block;
  letter-spacing: .02em;
}
.plate span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(246,248,250,.65);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---------------------------------- Cards ---------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  flex: none;
}
.card__icon svg { width: 26px; height: 26px; color: var(--white); }
.card h3 { margin-bottom: 12px; }
.card p { color: rgba(13,27,42,.68); line-height: 1.6; font-size: .96rem; }
.card__link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--blue);
}
.card__link svg { width: 13px; height: 13px; transition: transform .25s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

.card--dark {
  background: var(--navy-3);
  border-color: var(--line-dark);
}
.card--dark h3, .card--dark p { color: var(--paper); }
.card--dark p { color: rgba(246,248,250,.68); }

/* ---------------------------------- Process / mile markers ---------------------------------- */
.route-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.route-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 6%;
  right: 6%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--teal-dark) 60%, transparent 0);
  background-size: 16px 2px;
  background-repeat: repeat-x;
}
.step {
  position: relative;
  padding-top: 70px;
}
.step::before {
  content: attr(data-step);
  position: absolute;
  top: 0; left: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--teal-bright);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--teal-dark);
  z-index: 1;
}
.step h3 { margin-bottom: 10px; }
.step p { color: rgba(13,27,42,.65); line-height: 1.6; font-size: .95rem; }
.section--dark .step p,
.section--navy2 .step p { color: rgba(246,248,250,.65); }

/* ---------------------------------- Industries strip ---------------------------------- */
.industry-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.industry-chip {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .03em;
  padding: 12px 20px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.industry-chip svg { width: 15px; height: 15px; color: var(--blue); }

.industry-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.industry-block:nth-child(even) .industry-visual { order: 2; }
.industry-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-3), var(--ink));
  display: flex; align-items: center; justify-content: center;
}
.industry-visual svg { width: 46%; height: 46%; }
.industry-visual::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.035) 0 2px, transparent 2px 26px);
}
.industry-number {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal-bright);
  border: 1px solid var(--line-dark);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.industry-copy .feature-list { margin-top: 22px; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: .96rem;
  color: rgba(13,27,42,.75);
}
.section--dark .feature-list li,
.section--navy2 .feature-list li { border-color: var(--line-dark); color: rgba(246,248,250,.75); }
.feature-list li:last-child { border-bottom: none; }
.feature-list svg { width: 18px; height: 18px; color: var(--teal-dark); flex: none; margin-top: 2px; }
.section--dark .feature-list svg,
.section--navy2 .feature-list svg { color: var(--teal-bright); }

/* ---------------------------------- Why us list ---------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
}
.why-item { display: flex; gap: 18px; }
.why-item__icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 10px;
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
}
.why-item__icon svg { width: 22px; height: 22px; color: var(--teal-bright); }
.why-item h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--white); }
.why-item p { font-size: .92rem; color: rgba(246,248,250,.65); line-height: 1.55; }

/* ---------------------------------- Testimonials ---------------------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
}
.testi::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  position: absolute;
  top: 6px; left: 20px;
  color: var(--paper-3);
  line-height: 1;
  z-index: 0;
}
.testi p { position: relative; z-index: 1; font-size: 1.05rem; line-height: 1.6; color: var(--ink); }
.testi footer { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-display); font-weight: 700;
}
.testi-name { font-weight: 700; font-size: .92rem; }
.testi-role { font-family: var(--font-mono); font-size: 11px; color: rgba(13,27,42,.55); text-transform: uppercase; letter-spacing: .04em; }

/* ---------------------------------- CTA banner ---------------------------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--blue-deep), var(--ink) 60%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 100% 0%, rgba(41,190,176,.28), transparent 60%);
}
.cta-banner h2, .cta-banner p { position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }
.cta-banner p { color: rgba(246,248,250,.72); margin-top: 12px; max-width: 46ch; }

/* ---------------------------------- Footer ---------------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(246,248,250,.7);
  padding: 72px 0 28px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand img { height: 42px; margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; line-height: 1.6; max-width: 32ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.footer-social a:hover { border-color: var(--teal-bright); color: var(--teal-bright); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; font-size: .92rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--teal-bright); margin-top: 3px; flex: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: .82rem;
}
.footer-bottom a:hover { color: var(--white); }

/* ---------------------------------- Forms ---------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(13,27,42,.6);
}
.section--dark .field label,
.section--navy2 .field label { color: rgba(246,248,250,.6); }
.field input, .field select, .field textarea {
  background: var(--white);
  border: 1.5px solid var(--line-light);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.section--dark .field input,
.section--dark .field select,
.section--dark .field textarea,
.section--navy2 .field input,
.section--navy2 .field select,
.section--navy2 .field textarea {
  background: rgba(255,255,255,.05);
  border-color: var(--line-dark);
  color: var(--paper);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(41,190,176,.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .82rem; color: rgba(13,27,42,.5); margin-top: 14px; }
.section--dark .form-note, .section--navy2 .form-note { color: rgba(246,248,250,.5); }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(41,190,176,.12);
  border: 1px solid var(--teal-dark);
  color: var(--teal-bright);
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: .92rem;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: none; }

/* ---------------------------------- Page hero (inner pages) ---------------------------------- */
.page-hero {
  background: var(--navy);
  color: var(--paper);
  padding: 168px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(55% 70% at 85% 0%, rgba(41,190,176,.18), transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero .lede { margin-top: 20px; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(246,248,250,.5);
  margin-bottom: 26px;
}
.breadcrumb a:hover { color: var(--teal-bright); }

/* Lane divider */
.lane-divider {
  height: 3px;
  background-image: linear-gradient(90deg, var(--teal-dark) 50%, transparent 0);
  background-size: 24px 3px;
  background-repeat: repeat-x;
  opacity: .5;
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* Map / coverage */
.coverage-map {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-3), var(--ink));
  overflow: hidden;
}
.coverage-map svg { width: 100%; height: 100%; }

/* Safety grid */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.safety-item {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.safety-item .card__icon { margin-bottom: 16px; }

/* Values grid (about) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 30px 20px;
}
.value-card b {
  font-family: var(--font-display);
  font-size: 2.6rem;
  display: block;
  color: var(--teal-bright);
}
.value-card span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(246,248,250,.6);
}

/* Timeline (about) */
.timeline { position: relative; padding-left: 32px; border-left: 2px solid var(--line-light); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(41,190,176,.2);
}
.timeline-item b { font-family: var(--font-mono); color: var(--blue); font-size: .82rem; letter-spacing: .05em; }
.timeline-item p { margin-top: 8px; color: rgba(13,27,42,.7); line-height: 1.6; }

/* Contact info cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-info-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.contact-info-card svg { width: 24px; height: 24px; color: var(--teal-bright); margin-bottom: 14px; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--white); }
.contact-info-card p, .contact-info-card a { font-size: .92rem; color: rgba(246,248,250,.68); line-height: 1.6; }
.contact-info-card a:hover { color: var(--teal-bright); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.contact-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* ---------------------------------- Responsive ---------------------------------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .route-visual { max-width: 460px; margin-inline: auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .route-steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .route-steps::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-block, .industry-block:nth-child(even) .industry-visual { grid-template-columns: 1fr; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav {
    display: flex;
    position: fixed;
    inset: 72px 16px auto 16px;
    background: var(--navy-2);
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow-lg);
  }
  .site-header.nav-open .nav a { width: 100%; padding: 14px 16px; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .card-grid, .stat-grid, .why-grid, .values-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 44px 28px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
}
