/* ECI Logistics — Master Stylesheet (concatenated for performance) */
/* =========================================================
   ECI LOGISTICS — DESIGN SYSTEM
   Tokens: color, type, spacing, motion, elevation
   ========================================================= */

:root {
  /* ---- Brand colors (locked to existing brand) ---- */
  --navy-900: #0c1730;
  --navy-800: #14213d;   /* primary */
  --navy-700: #1c2c50;
  --blue-600: #1d4ed8;   /* secondary */
  --blue-500: #2f62f0;
  --blue-100: #e3ebfd;
  --green-600: #25a244;  /* accent */
  --green-500: #2fbb50;
  --green-100: #e2f6e7;
  --light: #f5f8fb;      /* light */
  --white: #ffffff;

  /* ---- Neutrals derived for text / borders ---- */
  --ink-900: #0d1220;
  --ink-700: #3a4257;
  --ink-500: #667085;
  --ink-300: #a6aec2;
  --line-200: #e4e9f2;
  --line-100: #edf1f7;

  /* ---- Typography ---- */
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;

  --fs-hero: clamp(2.5rem, 4.4vw + 1rem, 4rem);       /* 64px desktop */
  --fs-h1: clamp(2.1rem, 3vw + 1rem, 3rem);
  --fs-h2: clamp(1.9rem, 2.4vw + 1rem, 3rem);         /* 48px desktop */
  --fs-h3: clamp(1.3rem, 1vw + 1rem, 1.6rem);
  --fs-lead: clamp(1.125rem, 0.4vw + 1rem, 1.375rem);
  --fs-body: 1.125rem;                                 /* 18px */
  --fs-small: 0.9375rem;
  --fs-micro: 0.8125rem;

  --lh-tight: 1.08;
  --lh-snug: 1.25;
  --lh-body: 1.65;

  /* ---- Spacing scale ---- */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6.5rem;
  --space-4xl: 9rem;

  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  /* ---- Radius ---- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* ---- Elevation ---- */
  --shadow-sm: 0 1px 2px rgba(12, 23, 48, 0.06), 0 1px 1px rgba(12, 23, 48, 0.04);
  --shadow-md: 0 8px 24px rgba(12, 23, 48, 0.08), 0 2px 8px rgba(12, 23, 48, 0.05);
  --shadow-lg: 0 24px 48px -12px rgba(12, 23, 48, 0.18), 0 4px 16px rgba(12, 23, 48, 0.06);
  --shadow-glow-green: 0 0 0 1px rgba(37, 162, 68, 0.18), 0 12px 32px -8px rgba(37, 162, 68, 0.25);

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-med: 420ms;
  --dur-slow: 800ms;

  --header-h: 84px;
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
}

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

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; width: 100%; }

html:focus-within { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-sm);
  font-weight: 700;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); letter-spacing: -0.025em; }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }

p { margin: 0 0 var(--space-md); }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2.5px solid var(--blue-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--navy-800);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-sm);
  z-index: 999;
  transition: top var(--dur-fast) var(--ease-out);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

::selection { background: var(--green-100); color: var(--navy-900); }

/* Section rhythm */
section[class] { padding-block: var(--space-3xl); }
@media (max-width: 720px) {
  section[class] { padding-block: var(--space-2xl); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--green-600);
  display: inline-block;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--ink-500);
  line-height: var(--lh-snug);
}

.section-head {
  max-width: 680px;
  margin-bottom: var(--space-2xl);
}
.section-head.center { margin-inline: auto; text-align: center; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
/* =========================================================
   COMPONENTS
   ========================================================= */

/* ---- Buttons ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: var(--shadow-glow-green);
}
.btn-primary:hover { background: var(--green-500); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

.btn-dark {
  background: var(--navy-800);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border: 1.5px solid var(--line-200);
}
.btn-ghost:hover { border-color: var(--navy-800); }

.btn-block { width: 100%; }

/* Ripple */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255,255,255,0.55), transparent 60%);
  opacity: 0;
  transition: opacity 500ms ease;
  z-index: -1;
}
.btn:active::after { opacity: 1; transition: none; }

/* Link with animated underline */
.link-underline {
  position: relative;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-med) var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }
.link-underline svg { transition: transform var(--dur-fast) var(--ease-out); width: 16px; height: 16px; }
.link-underline:hover svg { transform: translateX(3px); }

/* ---- Badges / pills ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-micro);
  font-weight: 600;
  background: var(--blue-100);
  color: var(--blue-600);
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--r-lg);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* ---- Icon tile ---- */
.icon-tile {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--navy-800);
  color: var(--white);
  flex-shrink: 0;
}
.icon-tile svg { width: 26px; height: 26px; }
.icon-tile.green { background: var(--green-600); }
.icon-tile.blue { background: var(--blue-600); }
.icon-tile.light { background: var(--light); color: var(--navy-800); }

/* ---- Forms ---- */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}
.field label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--navy-800);
}
.field input,
.field textarea,
.field select {
  padding: 0.9rem 1.05rem;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line-200);
  background: var(--light);
  color: var(--navy-800);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue-600);
  background: var(--white);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }

.form-toast {
  margin-top: var(--space-sm);
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  display: none;
}
.form-toast.show { display: block; }
.form-toast.success { background: var(--green-100); color: var(--green-600); }
.form-toast.error { background: #fdeaea; color: #c23434; }

/* ---- Stat ---- */
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat .label {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.65);
}
.stat.dark .num { color: var(--navy-800); }
.stat.dark .label { color: var(--ink-500); }

/* ---- Manifest code chip (signature motif) ---- */
.manifest-code {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.05em;
  color: var(--ink-500);
}

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--dur-fast), transform var(--dur-fast), visibility var(--dur-fast);
  z-index: 400;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-600); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---- Scroll progress ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--green-600);
  z-index: 1100;
  transition: width 80ms linear;
}

/* ---- Loader ---- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-800);
  z-index: 2000;
  display: grid;
  place-items: center;
  transition: opacity 500ms var(--ease-out), visibility 500ms var(--ease-out);
}
.page-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader .mark {
  width: 46px; height: 46px;
  border-radius: 10px;
  border: 2.5px solid rgba(255,255,255,0.18);
  border-top-color: var(--green-500);
  animation: spin 850ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .page-loader { display: none; }
}
/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(20,33,61,0.06);
  transition: box-shadow var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(12,23,48,0.08);
  background: rgba(255,255,255,0.92);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  width: 100%;
}

.brand { display: flex; align-items: center; height: 100%; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
  
}

.nav-list { display: flex; align-items: center; gap: var(--space-lg); height: 100%; }

.nav-list > li { position: relative; height: 100%; display: flex; align-items: center; }

.nav-list a.nav-link {
  position: relative;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy-800);
  padding: 0.4rem 0.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-list a.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px; width: 100%;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-med) var(--ease-out);
}
.nav-list a.nav-link:hover::after,
.nav-list a.nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-list a.nav-link.active { color: var(--green-600); }

.nav-list .caret { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease-out); }
.has-mega:hover .caret, .has-mega.open .caret { transform: rotate(180deg); }

/* Mega menu */
.has-mega { position: static; }
.mega {
  position: absolute;
  left: 0; right: 0; top: 100%;
  margin-top: 1px;
  background: var(--white);
  border-bottom: 1px solid var(--line-200);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), visibility var(--dur-fast);
  z-index: 850;
}
.has-mega:hover .mega,
.has-mega.open .mega,
.mega:hover,
.mega:focus-within {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-xl) var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.mega-item {
  display: flex;
  gap: 0.85rem;
  padding: var(--space-sm);
  border-radius: var(--r-md);
  transition: background var(--dur-fast) var(--ease-out);
}
.mega-item:hover { background: var(--light); }
.mega-item .icon-tile { width: 42px; height: 42px; }
.mega-item .icon-tile svg { width: 20px; height: 20px; }
.mega-item h4 { font-size: 0.98rem; margin: 0 0 0.2rem; }
.mega-item p { font-size: 0.85rem; color: var(--ink-500); margin: 0; line-height: 1.45; }

.header-cta { display: flex; align-items: center; gap: var(--space-md); flex-shrink: 0; }
.header-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--navy-800);
  font-size: 0.95rem;
}
.header-call svg { width: 18px; height: 18px; color: var(--green-600); }
.header-call .num { font-family: var(--font-mono); letter-spacing: -0.01em; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 50%;
  margin-left: auto;
  z-index: 910;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  width: 20px; height: 2px;
  background: var(--navy-800);
  margin-inline: auto;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .header-call span.txt { display: none; }
  .mega-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md) var(--container-pad);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease-out);
    overflow-y: auto;
    gap: 0;
    z-index: 899;
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; height: auto; }
  .nav-list > li { height: auto; border-bottom: 1px solid var(--line-100); }
  /* NEW */
.nav-list a.nav-link { padding: 0.65rem 0; width: 100%; justify-content: space-between; }
  .nav-list a.nav-link::after { display: none; }
  .mega {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none;
    display: none;
    background: var(--light);
    margin: 0 -1.25rem;
  }
  .has-mega.open .mega { display: block; }
  .mega-inner { grid-template-columns: 1fr; padding: var(--space-sm) var(--container-pad) var(--space-md); gap: 0.25rem; }
  /* NEW */
.header-cta { margin-top: var(--space-sm); flex-direction: column; align-items: stretch; }
  .header-call { justify-content: center; padding: 0.9rem; background: var(--light); border-radius: var(--r-sm); }
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.72);
}

.footer-top {
  padding-block: var(--space-3xl) var(--space-2xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: var(--space-xl);
}

.footer-brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: var(--space-md); }
.footer-brand p { font-size: 0.95rem; max-width: 30ch; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 0.6rem; margin-top: var(--space-md); }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.footer-social a:hover { background: var(--green-600); border-color: var(--green-600); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a, .footer-col p { font-size: 0.92rem; color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: var(--white); }
.footer-col address { font-style: normal; }

.newsletter-form { display: flex; gap: 0.5rem; margin-top: var(--space-sm); }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
  background: var(--green-600);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out);
}
.newsletter-form button:hover { background: var(--green-500); }

.footer-map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  height: 160px;
}
.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .legal-links { display: flex; gap: 1.25rem; }

@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .footer-top { grid-template-columns: 1fr; }
}
/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  padding-top: calc(var(--space-3xl) + 1rem);
  padding-bottom: var(--space-2xl);
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-layer img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: grayscale(0.3) contrast(1.05);
}
.hero-bg-layer::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(29,78,216,0.35), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(37,162,68,0.25), transparent 60%),
    linear-gradient(180deg, rgba(12,23,48,0.4), rgba(12,23,48,0.92) 85%);
}

/* Floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  animation: float 9s ease-in-out infinite;
}
.hero-shape.s1 { width: 10px; height: 10px; background: var(--green-500); top: 22%; left: 6%; animation-delay: 0s; }
.hero-shape.s2 { width: 6px; height: 6px; background: var(--blue-500); top: 65%; left: 14%; animation-delay: 1.4s; }
.hero-shape.s3 { width: 14px; height: 14px; border: 1.5px solid rgba(255,255,255,0.3); background: transparent; top: 15%; left: 45%; animation-delay: 2.4s; }
.hero-shape.s4 { width: 8px; height: 8px; background: var(--green-500); top: 78%; left: 60%; animation-delay: 3.1s; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-22px) translateX(10px); }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-copy .badge-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: var(--space-md); }
.hero-copy .badge.on-dark { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.16); }

.hero-copy h1 { color: var(--white); max-width: 15ch; }
.hero-copy .lead { color: rgba(255,255,255,0.72); max-width: 46ch; margin-top: var(--space-md); }

.hero-actions { display: flex; gap: 1rem; margin-top: var(--space-xl); flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}
.hero-trust .stat .num { font-size: 1.7rem; }
.hero-trust-divider { width: 1px; height: 34px; background: rgba(255,255,255,0.16); }

/* Signature: live manifest / route panel */
.manifest-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-xl);
  backdrop-filter: blur(16px);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}
.manifest-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px dashed rgba(255,255,255,0.16);
}
.manifest-head .m-title { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; }
.manifest-head .m-code { font-family: var(--font-mono); font-size: 0.78rem; color: var(--green-500); }
.manifest-live { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--green-500); font-weight: 700; }
.manifest-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); animation: pulse-dot 1.6s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(47,187,80,0.6);} 50% { box-shadow: 0 0 0 6px rgba(47,187,80,0);} }

.manifest-route { position: relative; padding: var(--space-md) 0.25rem var(--space-lg); }
.manifest-route svg { width: 100%; height: auto; display: block; }
.route-line { stroke-dasharray: 6 6; }
.route-dot { fill: var(--white); }
.route-dot.origin { fill: var(--blue-500); }
.route-dot.dest { fill: var(--green-500); }
.route-mover {
  animation: move-route 5s linear infinite;
  offset-rotate: 0deg;
}
.route-city-label { font-family: var(--font-mono); font-size: 9px; fill: rgba(255,255,255,0.75); }

@keyframes move-route {
  0% { offset-distance: 0%; opacity: 0; }
  6% { opacity: 1; }
  94% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.manifest-rows { display: flex; flex-direction: column; gap: 0.65rem; margin-top: var(--space-sm); }
.manifest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.04);
}
.manifest-row .r-code { font-family: var(--font-mono); color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.manifest-row .r-status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-pill);
  background: var(--green-100);
  color: var(--green-600);
}
.manifest-row .r-status.transit { background: var(--blue-100); color: var(--blue-600); }

.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  z-index: 2;
}
.scroll-indicator .wheel {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator .wheel::after {
  content: "";
  width: 3px; height: 6px;
  border-radius: 2px;
  background: var(--green-500);
  animation: scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes scroll-wheel { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(10px); } 100% { opacity: 0; } }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .manifest-panel { order: -1; }
}
@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: var(--space-md); }
}
/* =========================================================
   SECTIONS
   ========================================================= */

/* ---- Trusted by ---- */
.trusted-by { padding-block: var(--space-xl); border-bottom: 1px solid var(--line-100); }
.trusted-by .tb-label { font-size: var(--fs-small); color: var(--ink-500); margin-bottom: var(--space-md); text-align: center; }
.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; gap: var(--space-2xl); width: max-content; animation: marquee 28s linear infinite; align-items: center; }
.logo-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink-300);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trusted-badges { display: flex; justify-content: center; gap: var(--space-lg); margin-top: var(--space-lg); flex-wrap: wrap; }
.trusted-badges img { height: 56px; opacity: 0.9; }

/* ---- Stats ---- */
.stats-band {
  background: var(--navy-800);
  background-image: radial-gradient(70% 100% at 100% 0%, rgba(29,78,216,0.35), transparent 60%);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat { grid-column: span 1; } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.service-card {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card .thumb {
  border-radius: var(--r-md);
  overflow: hidden;
  height: 190px;
  margin-bottom: var(--space-md);
  position: relative;
}
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--ink-500); font-size: 0.98rem; }
.service-card ul { margin: var(--space-sm) 0; display: flex; flex-direction: column; gap: 0.45rem; }
.service-card li { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.92rem; color: var(--ink-700); }
.service-card li svg { width: 16px; height: 16px; color: var(--green-600); flex-shrink: 0; margin-top: 3px; }
.service-card .card-foot { margin-top: auto; padding-top: var(--space-md); }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ---- Why choose us ---- */
.why-us { background: var(--light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.why-card { padding: var(--space-lg); background: var(--white); }
.why-card .icon-tile { margin-bottom: var(--space-md); }
.why-card h3 { font-size: 1.15rem; }
.why-card p { font-size: 0.95rem; color: var(--ink-500); margin: 0; }

@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---- Coverage map ---- */
.coverage { position: relative; }
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.coverage-map-wrap {
  background: var(--light);
  border-radius: var(--r-xl);
  padding: var(--space-lg);
  border: 1px solid var(--line-200);
}
.coverage-map-wrap svg { width: 100%; height: auto; }
.map-region {
  fill: var(--white);
  stroke: var(--line-200);
  stroke-width: 1.5;
  transition: fill var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
.map-region.active, .map-region:hover { fill: var(--green-100); stroke: var(--green-600); }
.map-city-dot { fill: var(--navy-800); transition: fill var(--dur-fast) var(--ease-out), r var(--dur-fast) var(--ease-out); }
.map-region.active ~ .map-city-dot,
.map-city:hover .map-city-dot { fill: var(--green-600); }
.map-city { cursor: pointer; }
.map-city text { font-family: var(--font-mono); font-size: 10px; fill: var(--ink-700); font-weight: 600; }

.coverage-list { display: flex; flex-direction: column; gap: 0.4rem; }
.coverage-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-md);
  transition: background var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
.coverage-item:hover, .coverage-item.active { background: var(--light); }
.coverage-item .city-name { font-weight: 700; color: var(--navy-800); display: flex; align-items: center; gap: 0.6rem; }
.coverage-item .city-name::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green-600); }
.coverage-item .city-tag { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-500); }

@media (max-width: 860px) { .coverage-layout { grid-template-columns: 1fr; } }

/* ---- Fleet ---- */
.fleet { background: var(--navy-900); color: var(--white); }
.fleet .section-head h2 { color: var(--white); }
.fleet .section-head .lead { color: rgba(255,255,255,0.6); }
.fleet-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
  scrollbar-width: thin;
}
.fleet-card {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.fleet-card .thumb { height: 200px; overflow: hidden; }
.fleet-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.fleet-card:hover .thumb img { transform: scale(1.05); }
.fleet-card .body { padding: var(--space-md); }
.fleet-card h3 { color: var(--white); font-size: 1.1rem; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--space-sm); }
.fleet-specs span {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  padding: 0.3rem 0.6rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}
.fleet-nav { display: flex; gap: 0.6rem; margin-top: var(--space-lg); }
.fleet-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.fleet-nav button:hover { background: rgba(255,255,255,0.1); }
.fleet-nav svg { width: 18px; height: 18px; color: var(--white); }

/* ---- Process timeline ---- */
.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 26px; left: 0; right: 0;
  height: 2px;
  background: var(--line-200);
  z-index: 0;
}
.process-line-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: var(--green-600);
  transition: width 1200ms var(--ease-out);
}
.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}
.process-step .step-marker {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line-200);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--ink-500);
  margin-bottom: var(--space-md);
  transition: border-color var(--dur-med) var(--ease-out), color var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}
.process-step.is-active .step-marker,
.process-step:hover .step-marker { border-color: var(--green-600); color: var(--green-600); background: var(--green-100); }
.process-step h3 { font-size: 1.05rem; }
.process-step p { font-size: 0.92rem; color: var(--ink-500); }
.process-step .step-code { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-300); margin-bottom: 0.3rem; display: block; }

@media (max-width: 900px) {
  .process-line, .process-line-fill { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ---- Testimonials ---- */
.testimonials { background: var(--light); }
.testi-head-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: var(--space-md); margin-bottom: var(--space-2xl); }
.testi-rating { display: flex; align-items: center; gap: 0.75rem; }
.testi-rating .stars { display: flex; gap: 2px; color: #f5a623; }
.testi-rating svg { width: 18px; height: 18px; }
.testi-rating strong { font-size: 1.05rem; color: var(--navy-800); }
.testi-rating span { color: var(--ink-500); font-size: 0.9rem; }

.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.testi-card { padding: var(--space-lg); background: var(--white); }
.testi-card .stars { display: flex; gap: 2px; color: #f5a623; margin-bottom: var(--space-md); }
.testi-card .stars svg { width: 15px; height: 15px; }
.testi-card p.quote { font-size: 1rem; color: var(--ink-700); }
.testi-person { display: flex; align-items: center; gap: 0.75rem; margin-top: var(--space-md); }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testi-person .name { font-weight: 700; color: var(--navy-800); font-size: 0.92rem; }
.testi-person .role { font-size: 0.82rem; color: var(--ink-500); }
.testi-card.video { position: relative; padding: 0; overflow: hidden; }
.testi-card.video .thumb { height: 100%; min-height: 260px; position: relative; }
.testi-card.video img { width: 100%; height: 100%; object-fit: cover; }
.testi-card.video .play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(12,23,48,0.1), rgba(12,23,48,0.7));
}
.testi-card.video .play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: grid; place-items: center;
  transition: transform var(--dur-fast) var(--ease-out);
}
.testi-card.video:hover .play-btn { transform: scale(1.08); }
.testi-card.video .play-btn svg { width: 20px; height: 20px; color: var(--navy-800); margin-left: 3px; }
.testi-card.video .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-md); color: var(--white); }

@media (max-width: 980px) { .testi-track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testi-track { grid-template-columns: 1fr; } }

/* ---- FAQ ---- */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--space-2xl); }
.faq-item {
  border-bottom: 1px solid var(--line-200);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-800);
}
.faq-q .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line-200);
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--navy-800);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}
.faq-q .plus::before { width: 12px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-q .plus { background: var(--green-600); border-color: var(--green-600); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--white); }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms var(--ease-out);
}
.faq-a p { padding-bottom: var(--space-lg); color: var(--ink-500); max-width: 60ch; }

/* ---- Final CTA ---- */
.final-cta {
  background: var(--navy-900);
  background-image:
    radial-gradient(50% 80% at 90% 20%, rgba(37,162,68,0.25), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(29,78,216,0.3), transparent 60%);
  color: var(--white);
  border-radius: var(--r-xl);
  margin-inline: var(--container-pad);
  padding: var(--space-3xl) var(--space-2xl);
}
.cta-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-2xl); align-items: center; }
.cta-layout h2 { color: var(--white); max-width: 16ch; }
.cta-layout .lead { color: rgba(255,255,255,0.65); }
.cta-actions { display: flex; gap: 1rem; margin-top: var(--space-lg); flex-wrap: wrap; }
.cta-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
}
.cta-panel .field input, .cta-panel .field textarea, .cta-panel .field select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
  color: var(--white);
}
.cta-panel .field input::placeholder, .cta-panel .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.cta-panel .field label { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .final-cta { margin-inline: var(--space-md); padding: var(--space-2xl) var(--space-lg); }
  .cta-layout, .faq-layout { grid-template-columns: 1fr; }
}
/* =========================================================
   INNER PAGES
   ========================================================= */

.page-hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  padding-block: calc(var(--space-2xl) + 1rem) var(--space-2xl);
  overflow: hidden;
}
.page-hero .hero-bg-layer img { opacity: 0.28; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumbs { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: var(--space-md); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs svg { width: 13px; height: 13px; }
.page-hero h1 { color: var(--white); max-width: 22ch; font-size: var(--fs-h1); }
.page-hero .lead { color: rgba(255,255,255,0.68); max-width: 60ch; margin-top: var(--space-sm); }
.page-hero .hero-actions { margin-top: var(--space-lg); }

/* Content blocks */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.content-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.content-copy h2 { margin-top: 0; }
.content-copy .checklist { display: flex; flex-direction: column; gap: 0.7rem; margin-top: var(--space-md); }
.content-copy .checklist li { display: flex; gap: 0.6rem; align-items: flex-start; }
.content-copy .checklist svg { width: 19px; height: 19px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }

.article-sections { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.article-card { padding: var(--space-lg); }
.article-card .step-code { font-family: var(--font-mono); font-size: 0.75rem; color: var(--green-600); display: block; margin-bottom: 0.5rem; }

@media (max-width: 860px) {
  .content-block, .content-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .article-sections { grid-template-columns: 1fr; }
}

/* Stat strip (used on About) */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--light);
  border-radius: var(--r-lg);
}
@media (max-width: 700px) { .stat-strip { grid-template-columns: 1fr 1fr; } }

/* Values grid (About) */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* ---- Contact page ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: var(--space-lg);
}
.contact-info-card h3 { color: var(--white); font-size: 1.1rem; }
.contact-row { display: flex; gap: 0.85rem; padding: var(--space-md) 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-row:last-child { border-bottom: none; }
.contact-row .icon-tile { width: 42px; height: 42px; background: rgba(255,255,255,0.08); }
.contact-row .icon-tile svg { width: 19px; height: 19px; }
.contact-row .label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.15rem; }
.contact-row a, .contact-row p { font-weight: 600; margin: 0; }
.contact-row p { font-weight: 500; color: rgba(255,255,255,0.85); font-size: 0.92rem; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.contact-map { border-radius: var(--r-lg); overflow: hidden; margin-top: var(--space-lg); height: 260px; border: 1px solid var(--line-200); }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gcap {
  position: absolute; inset: auto 0 0 0;
  padding: var(--space-md);
  background: linear-gradient(0deg, rgba(12,23,48,0.85), transparent);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.gallery-item:hover .gcap { opacity: 1; transform: translateY(0); }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xs); } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(12,23,48,0.92);
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(90vw, 1000px); max-height: 85vh; border-radius: var(--r-md); }
.lightbox-close {
  position: absolute; top: var(--space-lg); right: var(--space-lg);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--white);
  display: grid; place-items: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 20px; height: 20px; }

/* ---- Careers ---- */
.job-list { display: flex; flex-direction: column; gap: var(--space-md); }
.job-card {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  flex-wrap: wrap;
}
.job-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.job-meta { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--ink-500); flex-wrap: wrap; }
.job-meta span { display: flex; align-items: center; gap: 0.35rem; }
.job-meta svg { width: 15px; height: 15px; }

/* ---- Area pages / service-areas hub ---- */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.area-card { padding: var(--space-lg); }
.area-card .icon-tile { margin-bottom: var(--space-md); }
.area-card h3 { font-size: 1.1rem; }
.area-card ul { display: flex; flex-direction: column; gap: 0.5rem; margin-top: var(--space-md); }
.area-card ul a { font-size: 0.92rem; font-weight: 600; color: var(--blue-600); display: inline-flex; align-items: center; gap: 0.3rem; }
.area-card ul a svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .area-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .area-grid { grid-template-columns: 1fr; } }

/* Utility spacing helpers */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }
