/* =============================================
   TOKENS
============================================= */
:root {
  --black:      #0E0E0C;
  --charcoal:   #2C2C2A;
  --army:       #4B5320;
  --olive-tan:  #958B5F;
  --khaki:      #D4C59E;
  --cream:      #E8E0CC;
  --warm-gray:  #F3F1ED;
  --off-white:  #FBFBFA;
  --white:      #FFFFFF;
  --orange:     #F74023;
  --orange-h:   #D93518;
  --text-dark:  #2C2C2A;
  --text-mid:   #6B6860;
  --text-light: #9A9590;
  --border:     #E5E2DC;
  --font-d: 'Bebas Neue', sans-serif;
  --font-b: 'Barlow', sans-serif;
  --font-u: 'Barlow Condensed', sans-serif;
  --max-w: 1180px;
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--off-white); color: var(--text-dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* =============================================
   LAYOUT
============================================= */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; width: 100%; }

/* =============================================
   TYPOGRAPHY HELPERS
============================================= */
.eyebrow {
  font-family: var(--font-u); font-weight: 700; font-size: 12px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--olive-tan);
  text-align: center; display: block;
}
.sec-title {
  font-family: var(--font-d); font-size: 48px; letter-spacing: 1px;
  color: var(--army); text-align: center; line-height: 1;
}
.sec-sub {
  font-family: var(--font-b); font-size: 16px; color: var(--text-mid);
  text-align: center; line-height: 1.7; margin-top: 12px;
}
.sec-header { max-width: 680px; margin: 0 auto 56px; display: flex; flex-direction: column; gap: 8px; }

/* =============================================
   BUTTONS
============================================= */
.btn-chevron {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--charcoal); color: #fff;
  font-family: var(--font-u); font-weight: 700; font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase;
  position: relative; overflow: hidden; transition: color .3s;
}
.btn-chevron::before {
  content: ''; position: absolute; inset: 0; width: 0;
  background: var(--orange);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  transition: width .38s cubic-bezier(.16,1,.3,1); z-index: 0;
}
.btn-chevron:hover::before { width: 115%; }
.btn-chevron > * { position: relative; z-index: 1; }

.btn-orange {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--orange); color: #fff;
  font-family: var(--font-u); font-weight: 700; font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background .2s;
}
.btn-orange:hover { background: var(--orange-h); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--charcoal); color: var(--cream);
  font-family: var(--font-u); font-weight: 700; font-size: 15px;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background .2s;
}
.btn-dark:hover { background: #3a3a38; }

.card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-u); font-weight: 600; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid);
  transition: color .2s;
}
.card-link:hover { color: var(--army); }

/* chevron icon */
.chev { width: 12px; height: 20px; display: inline-block; flex-shrink: 0; }
.arr  { width: 14px; height: 14px; display: inline-block; flex-shrink: 0; }

/* =============================================
   SCROLL REVEALS
============================================= */
.reveal       { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.vis   { opacity: 1; transform: none; }
.rev-l        { opacity: 0; transform: translateX(-50px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.rev-l.vis    { opacity: 1; transform: none; }
.rev-r        { opacity: 0; transform: translateX(50px);  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.rev-r.vis    { opacity: 1; transform: none; }
.d1  { transition-delay:   0ms; } .d2  { transition-delay:  80ms; }
.d3  { transition-delay: 160ms; } .d4  { transition-delay: 240ms; }
.d5  { transition-delay: 320ms; } .d6  { transition-delay: 400ms; }
.d7  { transition-delay: 480ms; } .d8  { transition-delay: 560ms; }
.d9  { transition-delay: 640ms; }

/* =============================================
   1. UTILITY BAR
============================================= */
.util-bar {
  background: var(--charcoal); padding: 7px 0;
  display: none;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
}
@media(min-width:768px){ .util-bar { display: block; } }
.util-bar .container { display: flex; justify-content: space-between; align-items: center; }
.util-creds { font-family: var(--font-u); font-size: 12.5px; letter-spacing: .8px; color: rgba(237,235,231,.7); }
.util-right { font-family: var(--font-u); font-size: 12.5px; letter-spacing: .8px; }
.util-right .hot { color: var(--orange); font-weight: 600; }
.util-right .num { color: #fff; font-weight: 700; }
.util-right .dim { color: rgba(237,235,231,.9); }

/* =============================================
   2. NAV
============================================= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(14,14,12,0.15);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 3px solid rgba(75,83,32,0.3);
  transition: background .45s cubic-bezier(.16,1,.3,1), border-color .45s, box-shadow .3s;
}
/* On desktop sit below the util-bar */
@media(min-width:768px){ .site-nav { top: 30px; } }

/* Scrolled — frosted glass over light sections */
.site-nav.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--army);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px 13px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-mark {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-mark span { font-family: var(--font-u); font-weight: 700; font-size: 14px; color: var(--khaki); letter-spacing: 1px; }

/* Glass state: light text */
.nav-word { font-family: var(--font-d); font-size: 26px; letter-spacing: 2px; color: var(--off-white); transition: color .45s; }
.site-nav.scrolled .nav-word { color: var(--charcoal); }

/* ── Real logo images in nav (white + color crossfade) ── */
.nav-logo { position: relative; }
.nav-logo-img { height: 28px; width: auto; display: block; }
.nav-logo-white { opacity: 1; transition: opacity .35s ease; }
.nav-logo-color {
  position: absolute; top: 0; left: 0;
  opacity: 0; transition: opacity .35s ease;
}
.site-nav.scrolled .nav-logo-white { opacity: 0; }
.site-nav.scrolled .nav-logo-color  { opacity: 1; }
@media(max-width:768px) { .nav-logo-img { height: 22px; } }

/* ── Real logo image in footer ── */
.foot-logo-img { width: 176px; height: auto; display: block; margin-bottom: 14px; }

.nav-links { display: none; align-items: center; gap: 28px; }
@media(min-width:1024px){ .nav-links { display: flex; } }
.nav-links a {
  font-family: var(--font-u); font-weight: 600; font-size: 14px;
  letter-spacing: .8px; text-transform: uppercase;
  color: rgba(232,224,204,.85); transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.site-nav.scrolled .nav-links a { color: #6b6860; }
.site-nav.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: 9px 22px; font-weight: 700 !important;
  letter-spacing: 1px !important; transition: background .2s !important;
}
.nav-cta:hover { background: var(--orange-h) !important; }
/* Active/selected nav link — two states:
   glass (dark bg): khaki — warm, legible on dark
   scrolled (light bg): army — brand olive, legible on white */
.nav-active { color: var(--khaki) !important; font-weight: 700 !important; }
.site-nav.scrolled .nav-active { color: var(--army) !important; }

/* Glass state: light hamburger */
.ham { display: flex; flex-direction: column; gap: 5px; padding: 4px; }
@media(min-width:1024px){ .ham { display: none; } }
.ham span { display: block; width: 24px; height: 2px; background: var(--off-white); transition: background .45s; }
.site-nav.scrolled .ham span { background: var(--charcoal); }

/* Mobile nav panel */
.mob-nav { display: none; flex-direction: column; background: rgba(255,255,255,0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); padding: 16px 24px; border-top: 1px solid var(--border); }
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: var(--font-u); font-weight: 600; font-size: 16px;
  letter-spacing: .8px; text-transform: uppercase; color: var(--text-mid);
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.mob-nav a:last-child { border-bottom: none; color: var(--orange); font-weight: 700; }

/* ── Desktop nav dropdowns ── */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-drop-trigger { display: flex !important; align-items: center; gap: 5px; }
.nav-chev { width: 8px; height: 5px; flex-shrink: 0; transition: transform .22s ease; }
.nav-item:hover .nav-chev,
.nav-item:focus-within .nav-chev { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 12px 40px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.07);
  border: 1px solid var(--border);
  padding: 6px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 500;
}
/* Invisible bridge — prevents hover gap between trigger and panel */
.nav-dropdown::before {
  content: ''; position: absolute; bottom: 100%; left: 0; right: 0; height: 12px;
}
/* 2-column layout for Industries (9 items) */
.nav-dropdown-wide {
  min-width: 350px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 6px;
  gap: 2px;
}
/* Show on hover or keyboard focus-within */
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}
.nav-dropdown a {
  display: block; padding: 9px 18px;
  font-family: var(--font-u); font-weight: 600; font-size: 12px;
  letter-spacing: .7px; text-transform: uppercase;
  color: var(--text-mid) !important;
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav-dropdown-wide a { border-radius: 4px; }
.nav-dropdown a:hover { color: var(--army) !important; background: var(--warm-gray); }

/* ── Mobile nav accordion ── */
.mob-group { display: flex; flex-direction: column; }
.mob-group-hd {
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--border);
}
.mob-group-hd > a {
  flex: 1; border-bottom: none !important;
}
.mob-tog {
  flex-shrink: 0; width: 48px;
  background: none; border: none; border-left: 1px solid var(--border);
  cursor: pointer; color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, background .2s;
}
.mob-tog:hover { background: var(--warm-gray); color: var(--army); }
.mob-tog svg { width: 10px; height: 7px; transition: transform .22s ease; }
.mob-group.open .mob-tog { color: var(--army); }
.mob-group.open .mob-tog svg { transform: rotate(180deg); }
.mob-subs {
  display: none; flex-direction: column;
  background: var(--warm-gray);
}
.mob-group.open .mob-subs { display: flex; }
.mob-subs a {
  font-family: var(--font-u) !important; font-weight: 600 !important; font-size: 13px !important;
  letter-spacing: .6px !important; text-transform: uppercase;
  color: var(--text-mid) !important; padding: 11px 24px 11px 36px !important;
  border-bottom: 1px solid var(--border) !important;
}
.mob-subs a:last-child { border-bottom: none !important; }
.mob-subs a:hover { color: var(--army) !important; }
/* Last link in mob-nav is still the CTA — target it by being the last direct child */
.mob-nav > a:last-child { border-bottom: none; color: var(--orange); font-weight: 700; }

/* =============================================
   3. HERO
============================================= */
.hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.3) translateY(-6%); }
.hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #0e0e0c 0%, #0e0e0c 30%, rgba(14,14,12,0) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr .8fr; gap: 60px;
  align-items: center; padding: 120px 0 80px; width: 100%;
}
/* Mobile: no util-bar, just nav height offset */
@media(max-width:768px){ .hero-inner { padding-top: 80px; } }
@media(max-width:1024px){ .hero-inner { grid-template-columns: 1fr; } .hero-stats { display: none; } }
.hero-badge {
  display: inline-flex; border: 1px solid rgba(212,197,158,.3);
  padding: 6px 15px; margin-bottom: 12px;
}
.hero-badge span {
  font-family: var(--font-u); font-weight: 700; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--cream);
}
.hero h1 {
  font-family: var(--font-d); font-size: 78px; line-height: .95;
  letter-spacing: 1px; color: var(--off-white); margin-bottom: 18px;
}
.hero h1 .amp { color: var(--off-white); }
@media(max-width:768px){ .hero h1 { font-size: 52px; } }
.hero-sub {
  font-family: var(--font-b); font-size: 17px; line-height: 1.75;
  color: rgba(237,235,231,.9); max-width: 540px; margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media(max-width:480px){ .hero-actions { flex-direction: column; align-items: stretch; } .hero-actions > * { width: 100%; justify-content: center; } }
.btn-secondary {
  display: inline-flex; align-items: center; padding: 15px 21px;
  border: 1px solid rgba(255,255,255,.2); font-family: var(--font-u);
  font-weight: 600; font-size: 14px; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.5); color: #fff; }
/* stat cards */
.hero-stats { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 25px 29px; display: flex; flex-direction: column; gap: 2px;
}
.stat-num  { font-family: var(--font-d); font-size: 36px; letter-spacing: 1px; color: #fff; line-height: 1; }
.stat-lbl  { font-family: var(--font-u); font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* =============================================
   4. TRUST BAR
============================================= */
.trust-bar { background: var(--army); padding: 16px 0; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0 39px; }
.trust-item { display: flex; align-items: center; gap: 7px; }
.trust-dia  { width: 5px; height: 5px; background: var(--khaki); transform: rotate(45deg); flex-shrink: 0; }
.trust-item span {
  font-family: var(--font-u); font-weight: 600; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase; color: rgba(237,235,231,.95); white-space: nowrap;
}

/* =============================================
   5. SERVICES — SPLIT SCROLL
============================================= */
.svc-section { background: #fff; padding-top: 96px; }
.svc-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 1200px; }
@media(max-width:1024px){ .svc-wrap { grid-template-columns: 1fr; } .svc-img-panel { display: none; } }

.svc-img-panel { position: sticky; top: 15vh; height: 70vh; overflow: hidden; }
.svc-img-track { display: flex; height: 100%; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.svc-slide {
  flex: 0 0 100%; height: 100%; position: relative;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}
.svc-slide img { width: 100%; height: 100%; object-fit: cover; }

.svc-text-col { padding: 80px 48px 80px 60px; display: flex; flex-direction: column; }
.svc-block {
  min-height: 280px; display: flex; flex-direction: column; justify-content: center;
  padding: 60px 0 61px; border-bottom: 1px solid var(--border);
  opacity: .3; transition: opacity .4s;
}
.svc-block:last-child { border-bottom: none; }
.svc-block.active { opacity: 1; }
.svc-n  { font-family: var(--font-d); font-size: 48px; line-height: 1; letter-spacing: 1px; color: var(--border); margin-bottom: 8px; }
.svc-block.active .svc-n { color: var(--orange); }
.svc-name { font-family: var(--font-d); font-size: 32px; letter-spacing: 1px; color: var(--army); margin-bottom: 6px; }
.svc-cap  { font-family: var(--font-u); font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mid); margin-bottom: 12px; }
.svc-desc { font-family: var(--font-b); font-size: 15px; line-height: 1.7; color: var(--text-mid); max-width: 400px; margin-bottom: 16px; }

/* =============================================
   6 & 15. TICKERS
============================================= */
.ticker { overflow: hidden; }
.ticker-dark  { background: var(--charcoal); padding: 14px 0; }
.ticker-light { background: var(--warm-gray); padding: 14px 0; }
.ticker-track { display: flex; align-items: center; white-space: nowrap; width: max-content; }
.ticker-dark  .ticker-track { animation: tick-r 30s linear infinite; }
.ticker-light .ticker-track { animation: tick-r 30s linear infinite; }
@keyframes tick-l { from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@keyframes tick-r { from{ transform: translateX(-50%); } to{ transform: translateX(0); } }
.tick-item { display: inline-flex; align-items: center; gap: 24px; padding: 0 24px; }
.tick-icon { color: var(--orange); display: flex; align-items: center; flex-shrink: 0; }
.ticker-dark  .tick-text { font-family: var(--font-u); font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); }
.ticker-light .tick-text { font-family: var(--font-u); font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); }
.ticker-light .tick-icon { color: #F74023; }

/* =============================================
   7. CTA BREAK
============================================= */
.cta-break {
  background: var(--charcoal); padding: 72px 0; position: relative; overflow: hidden;
}
.cta-break::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(75,83,32,.04) 40px, rgba(75,83,32,.04) 41px);
}
.cta-break .container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.cta-break h2 { font-family: var(--font-d); font-size: 46px; letter-spacing: 1px; color: var(--off-white); }
.cta-break p  { font-family: var(--font-b); font-size: 16px; color: rgba(237,235,231,.85); max-width: 680px; padding-bottom: 14px; }

/* =============================================
   8. INDUSTRIES
============================================= */
.ind-section { background: var(--warm-gray); padding: 96px 0; }
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media(max-width:1024px){ .ind-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:768px) { .ind-grid { grid-template-columns: 1fr; } }
.ind-card {
  background: #fff; border: 1px solid var(--border);
  padding: 33px 29px; overflow: hidden; position: relative;
}
.ind-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.ind-card:hover::after { transform: scaleX(1); }
.ind-card h3 { font-family: var(--font-d); font-size: 26px; letter-spacing: 1px; color: var(--text-mid); margin-bottom: 9px; }
.ind-card p  { font-family: var(--font-b); font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 18px; }
.ind-extra-wrap { display: none; gap: 20px; margin-top: 20px; }
.ind-extra-wrap.open { display: grid; grid-template-columns: repeat(3,1fr); }
@media(max-width:1024px){ .ind-extra-wrap.open { grid-template-columns: repeat(2,1fr); } }
@media(max-width:768px)  { .ind-extra-wrap.open { grid-template-columns: 1fr; } }

/* =============================================
   9. WHY ONPOINT
============================================= */
.why-section { background: #fff; padding: 96px 0; overflow: hidden; }
.why-wrap { position: relative; height: 290px; }
.why-card {
  position: absolute; top: 20px; bottom: 20px; width: 280px;
  background: #fff; border: 1px solid var(--cream); border-left: 3px solid var(--army);
  padding: 29px 27px; display: flex; flex-direction: column; gap: 10px;
  opacity: 0;
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.why-wrap.spread .why-card { opacity: 1; transform: translateX(0) !important; }
.why-card:nth-child(1) { left: calc(50% - 584px); transform: translateX(444px); transition-delay:   0ms; }
.why-card:nth-child(2) { left: calc(50% - 288px); transform: translateX(148px); transition-delay: 100ms; }
.why-card:nth-child(3) { left: calc(50% + 8px);   transform: translateX(-148px); transition-delay: 200ms; }
.why-card:nth-child(4) { left: calc(50% + 304px); transform: translateX(-444px); transition-delay: 300ms; }
.why-card h4 { font-family: var(--font-u); font-weight: 700; font-size: 18px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); }
.why-card p  { font-family: var(--font-b); font-size: 14px; line-height: 1.7; color: var(--text-mid); }
@media(max-width:1200px){
  .why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; height: auto; padding: 0; }
  .why-card { position: static; width: 100%; opacity: 1; transform: none; }
}
@media(max-width:768px){
  .why-wrap { grid-template-columns: 1fr; }
}

/* =============================================
   10. TRUCK CALLOUT
============================================= */
.callout-section { background: var(--warm-gray); padding: 96px 0; }
.callout-inner {
  position: relative; min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 40px;
}
.callout-rings {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  pointer-events: none; z-index: 0;
}
.callout-rings span {
  position: absolute; inset: 0;
  border: 3px solid #9A9590;
  border-radius: 50%; opacity: 0;
  animation: ring-pulse 6s cubic-bezier(.2,.6,.4,1) infinite;
}
.callout-rings span:nth-child(1) { animation-delay: 0s; }
.callout-rings span:nth-child(2) { animation-delay: 1.5s; }
.callout-rings span:nth-child(3) { animation-delay: 3s; }
.callout-rings span:nth-child(4) { animation-delay: 4.5s; }
@keyframes ring-pulse {
  0%   { transform: scale(.3); opacity: 0; }
  8%   { opacity: .28; }
  100% { transform: scale(2.4); opacity: 0; }
}
.callout-truck {
  max-width: 960px; width: 100%;
  mix-blend-mode: multiply;
  position: relative; z-index: 2;
  opacity: 0; transform: scale(0.82);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1);
}
.callout-truck.vis { opacity: .9; transform: scale(1); }
.callout-tag {
  position: absolute; display: flex; align-items: flex-start;
  gap: 12px; max-width: 270px;
}
.callout-tag.right { flex-direction: row-reverse; text-align: right; }
.callout-tag.tl { top: 12%; left: 1%; }
.callout-tag.bl { bottom: 12%; left: 1%; }
.callout-tag.tr { top: 12%; right: 1%; }
.callout-tag.br { bottom: 12%; right: 1%; }
.co-num { width: 36px; height: 36px; background: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.co-num span { font-family: var(--font-d); font-size: 20px; color: #fff; line-height: 1; }
.co-body h5 { font-family: var(--font-u); font-weight: 700; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 4px; }
.co-body p  { font-family: var(--font-b); font-size: 13px; line-height: 1.5; color: var(--text-mid); }
@media(max-width:768px){
  .callout-inner { flex-direction: column; gap: 0; min-height: auto; }
  .callout-truck { display: none; }
  .callout-tag { position: static; max-width: 100%; }
  .callout-tags-mobile { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; }
}

/* =============================================
   11. VEHICLE SPECS TABS
============================================= */
.specs-section { background: var(--warm-gray); border-top: 1px solid var(--cream); padding: 97px 0 96px; }
.tab-nav { display: flex; justify-content: center; border-bottom: 2px solid var(--border); overflow-x: auto; overflow-y: clip; margin-bottom: 40px; }
.tab-btn { padding: 18px 24px; font-family: var(--font-u); font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); position: relative; white-space: nowrap; transition: color .2s; }
.tab-btn::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--army); opacity: 0; transition: opacity .2s; }
.tab-btn.active { color: var(--charcoal); }
.tab-btn.active::after { opacity: 1; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media(max-width:1024px){ .tab-panel.active { grid-template-columns: 1fr; } }
.tab-vname { font-family: var(--font-d); font-size: 32px; letter-spacing: 1px; color: var(--army); margin-bottom: 12px; }
.tab-desc  { font-family: var(--font-b); font-size: 15px; line-height: 1.7; color: var(--text-mid); margin-bottom: 16px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.spec-item { background: #fff; border: 1px solid var(--border); padding: 17px 19px; }
.spec-val  { font-family: var(--font-d); font-size: 24px; letter-spacing: .5px; color: var(--army); margin-bottom: 2px; }
.spec-lbl  { font-family: var(--font-u); font-weight: 600; font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }
.tab-visual {
  position: relative; height: 376px;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  overflow: hidden;
}
.tab-visual img { width: 100%; height: 100%; object-fit: cover; }
.tab-vis-ov { display: none; }
.tab-dim {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-u); font-weight: 600; font-size: 13px; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.4); text-align: center; white-space: nowrap;
}
.tab-dim { display: none; }
.tab-dim .dv { color: var(--orange); font-size: 15px; font-weight: 700; }
.tab-stats { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--border); margin-top: 8px; }
.tab-stat { padding: 28px 16px; text-align: center; border-right: 1px solid var(--border); }
.tab-stat:last-child { border-right: none; }
.tstat-n { font-family: var(--font-d); font-size: 32px; letter-spacing: .5px; color: var(--army); margin-bottom: 4px; }
.tstat-l { font-family: var(--font-u); font-weight: 600; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
@media(max-width:600px){ .tab-stats { grid-template-columns: repeat(2,1fr); } }

/* =============================================
   12. COVERAGE
============================================= */
.cov-section { background: #fff; padding: 96px 0; }
.cov-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media(max-width:1024px){ .cov-inner { grid-template-columns: 1fr; } }
.cov-text .eyebrow { text-align: left; }
.cov-text h2 { font-family: var(--font-d); font-size: 46px; color: var(--army); line-height: 1; margin: 10px 0 16px; }
.cov-text p  { font-family: var(--font-b); font-size: 15px; line-height: 1.7; color: var(--text-mid); margin-bottom: 32px; }
.map-box { position: relative; background: transparent; border: none; }
.map-img-wrap {
  position: relative; width: 100%;
  transform-origin: 50% 50%;
  animation: map-breathe 7s ease-in-out infinite;
}
.coverage-map-img { width: 100%; height: auto; display: block; }
@keyframes map-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.022); }
}

/* Map pins + ripple animation */
.map-pins { position: absolute; inset: 0; pointer-events: none; }
.map-pin {
  position: absolute;
  width: 11px; height: 11px;
  transform: translate(-50%, -50%);
}
.map-pin::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: #F74023; z-index: 2;
}
.pin-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #F74023;
  transform-origin: center;
  animation: pin-ripple 2.8s cubic-bezier(.2,.6,.4,1) infinite;
}
@keyframes pin-ripple {
  0%   { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(5.5); opacity: 0; }
}
/* Stagger each pin so ripples cascade rather than fire in unison */
.map-pin:nth-child(1) .r1 { animation-delay: 0s; }
.map-pin:nth-child(1) .r2 { animation-delay: 1.0s; }
.map-pin:nth-child(2) .r1 { animation-delay: 0.4s; }
.map-pin:nth-child(2) .r2 { animation-delay: 1.4s; }
.map-pin:nth-child(3) .r1 { animation-delay: 0.8s; }
.map-pin:nth-child(3) .r2 { animation-delay: 1.8s; }
.map-pin:nth-child(4) .r1 { animation-delay: 1.2s; }
.map-pin:nth-child(4) .r2 { animation-delay: 2.2s; }
.map-pin:nth-child(5) .r1 { animation-delay: 1.6s; }
.map-pin:nth-child(5) .r2 { animation-delay: 2.6s; }
.map-pin:nth-child(6) .r1 { animation-delay: 2.0s; }
.map-pin:nth-child(6) .r2 { animation-delay: 3.0s; }
.map-pin:nth-child(7) .r1 { animation-delay: 2.4s; }
.map-pin:nth-child(7) .r2 { animation-delay: 3.4s; }

/* =============================================
   13. CTA WITH IMAGE
============================================= */
.cta-img { position: relative; height: 400px; overflow: hidden; display: flex; align-items: center; }
.cta-img-bg { position: absolute; inset: 0; }
.cta-img-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.cta-img-ov {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #0e0e0c 0%, #0e0e0c 30%, rgba(14,14,12,.85) 50%, rgba(14,14,12,.4) 70%, rgba(14,14,12,.2) 100%);
}
.cta-img-ov::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,12,.3) 0%, transparent 30%, transparent 70%, rgba(14,14,12,.3) 100%);
}
.cta-img-content {
  position: relative; z-index: 1;
  padding: 0 24px; max-width: 580px;
  margin-left: max(24px, calc((100% - 1180px) / 2 + 24px));
}
.cta-img-content h2 { font-family: var(--font-d); font-size: 46px; letter-spacing: 1px; color: var(--off-white); line-height: 1; margin-bottom: 14px; }
.cta-img-content p  { font-family: var(--font-b); font-size: 16px; color: rgba(237,235,231,.9); margin-bottom: 28px; line-height: 1.6; }

/* =============================================
   14. TESTIMONIALS
============================================= */
.testi-section { background: var(--charcoal); padding: 96px 0; }
.testi-section .eyebrow { color: var(--olive-tan); }
.testi-section .sec-title { color: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
@media(max-width:1024px){ .testi-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--army);
  padding: 36px 32px 30px; display: flex; flex-direction: column; gap: 20px;
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .35s, border-color .35s;
}
.testi-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.16);
  border-top-color: var(--orange);
}
.testi-quote-icon { color: var(--orange); line-height: 1; }
.testi-quote-icon svg { width: 32px; height: 24px; fill: var(--orange); }
.testi-body {
  font-family: var(--font-b); font-size: 15px; line-height: 1.75;
  color: rgba(232,224,204,.85); flex: 1;
}
.testi-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.testi-meta { display: flex; flex-direction: column; gap: 3px; }
.testi-name { font-family: var(--font-u); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--cream); }
.testi-company { font-family: var(--font-b); font-size: 12px; color: var(--olive-tan); }
.testi-stars { display: flex; gap: 3px; }
.testi-stars span { color: var(--orange); font-size: 14px; line-height: 1; }

/* =============================================
   16. DRIVERS
============================================= */
.drivers-section { background: var(--warm-gray); padding: 96px 0; }
.driver-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media(max-width:768px){ .driver-cards { grid-template-columns: 1fr; } }
.driver-card { background: #fff; border: 1px solid var(--border); padding: 37px 33px; }
.driver-card h3 { font-family: var(--font-d); font-size: 26px; color: var(--text-mid); margin-bottom: 6px; }
.driver-sub { font-family: var(--font-u); font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--army); margin-bottom: 14px; }
.driver-card p { font-family: var(--font-b); font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 24px; }

/* =============================================
   17. BLOG
============================================= */
.blog-section { background: #fff; padding: 96px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media(max-width:1024px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: #fff; border: 1px solid var(--border); overflow: hidden; }
.blog-thumb { height: 200px; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 21px 22px 22px; }
.blog-body h3 { font-family: var(--font-u); font-weight: 700; font-size: 16px; letter-spacing: .3px; text-transform: uppercase; color: var(--text-mid); line-height: 1.3; margin-bottom: 8px; }
.blog-body p  { font-family: var(--font-b); font-size: 13.5px; line-height: 1.6; color: var(--text-mid); }

/* =============================================
   18. FAQ
============================================= */
.faq-section { background: var(--warm-gray); padding: 96px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-family: var(--font-u); font-weight: 700; font-size: 17px;
  letter-spacing: .3px; color: var(--charcoal); text-align: left;
}
.faq-tog { width: 20px; height: 20px; flex-shrink: 0; margin-left: 16px; position: relative; }
.faq-tog::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 14px; height: 1.5px; background: var(--text-light); }
.faq-tog::after  { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 1.5px; height: 14px; background: var(--text-light); transition: transform .3s, opacity .3s; }
.faq-item.open .faq-tog::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { display: none; padding: 0 0 22px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-family: var(--font-b); font-size: 15px; line-height: 1.7; color: var(--text-mid); max-width: 680px; }

/* =============================================
   19. CTA FADES INTO FOOTER
============================================= */
.cta-foot { position: relative; overflow: hidden; margin-bottom: -1px; }
.cta-foot-bg { position: absolute; inset: 0; }
.cta-foot-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.cta-foot-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.cta-foot-ov { position: absolute; inset: 0; background: rgba(14,14,12,.55); }
.cta-foot-ov::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, #0e0e0c 0%, transparent 25%, transparent 50%, #0e0e0c 100%);
}
.cta-foot-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center; padding: 80px 24px;
}
.cta-foot-content h2 { font-family: var(--font-d); font-size: clamp(36px,5vw,52px); letter-spacing: 1px; color: var(--off-white); }
.cta-foot-content p  { font-family: var(--font-b); font-size: 16px; line-height: 1.7; color: rgba(237,235,231,.9); max-width: 660px; padding-bottom: 18px; }

/* =============================================
   20. FOOTER
============================================= */
.site-footer { background: var(--black); padding-top: 48px; overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; padding-bottom: 56px; }
@media(max-width:1024px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }
.foot-brand { font-family: var(--font-d); font-size: 30px; letter-spacing: 2px; color: var(--cream); margin-bottom: 10px; }
.foot-desc  { font-family: var(--font-b); font-size: 13.5px; line-height: 1.7; color: rgba(237,235,231,.85); max-width: 280px; margin-bottom: 20px; }
.foot-emerg { background: rgba(247,64,35,.08); border: 1px solid rgba(247,64,35,.15); padding: 15px 19px; }
.foot-emerg span { font-family: var(--font-u); font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); }
.foot-col h4 { font-family: var(--font-u); font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; }
.foot-links { display: flex; flex-direction: column; gap: 9px; }
.foot-links li a { font-family: var(--font-b); font-size: 13.5px; color: rgba(237,235,231,.85); transition: color .2s; }
.foot-links li a:hover { color: #fff; }
.foot-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.foot-contact div { font-family: var(--font-b); font-size: 13.5px; color: rgba(237,235,231,.85); line-height: 1.6; }
.foot-contact strong { color: var(--cream); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.foot-bottom p, .foot-bottom span { font-family: var(--font-b); font-size: 11.5px; color: rgba(255,255,255,.5); }
.foot-bottom a { color: inherit; opacity: .7; }
.foot-watermark { overflow: hidden; padding: 40px 24px 0; display: flex; align-items: flex-end; justify-content: center; }
.foot-watermark img { width: min(820px, 88%); height: auto; display: block; opacity: 0.07; }
.foot-credit { padding: 12px 0 10px; text-align: center; }
.foot-credit span { font-family: var(--font-u); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.25); }
.foot-credit a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.foot-credit a:hover { color: rgba(255,255,255,.75); }

/* =============================================
   21. MOBILE STICKY BAR
============================================= */
.mob-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; height: 56px; }
@media(max-width:768px){ .mob-bar { display: grid; grid-template-columns: 1fr 1fr; } }
.mob-bar a { display: flex; align-items: center; justify-content: center; font-family: var(--font-u); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: #fff; }
.mob-call { background: var(--charcoal); }
.mob-quote { background: var(--orange); }

/* =============================================
   RESPONSIVE SECTION PADDING
============================================= */
@media(max-width:768px){
  .svc-section, .ind-section, .why-section, .callout-section,
  .specs-section, .cov-section, .drivers-section, .blog-section,
  .faq-section, .testi-section { padding: 64px 0; }
  body { padding-bottom: 56px; }
  .hero { min-height: 75vh; }
  .svc-text-col { padding: 48px 24px; }
}

/* Fixed header offset for non-hero pages
   Add class="page-top" to first section on pages without a hero */
.page-top { padding-top: calc(36px + 64px); }
@media(max-width:768px) { .page-top { padding-top: 64px; } }

/* =============================================
   SERVICE PAGE — SHARED TEMPLATE STYLES
============================================= */

/* ── Service Hero ── */
.psvc-hero {
  position: relative; background: var(--charcoal); overflow: hidden;
}
.psvc-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(75,83,32,.03) 40px, rgba(75,83,32,.03) 41px);
}
.psvc-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding: 150px 0 80px; width: 100%;
}
@media(max-width:1024px) {
  .psvc-hero-inner { grid-template-columns: 1fr; padding: 120px 0 60px; }
  .psvc-hero-img { display: none; }
}
.psvc-hero-img {
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  overflow: hidden; height: 420px;
}
.psvc-hero-img img,
.psvc-hero-img video { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.psvc-hero-img video { object-position: 100% 80%; transform: scale(1.2); }

/* Breadcrumb */
.psvc-breadcrumb {
  display: flex; align-items: center; gap: 7px; margin-bottom: 20px;
  font-family: var(--font-u); font-size: 11.5px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(237,235,231,.4);
}
.psvc-breadcrumb a { color: rgba(237,235,231,.5); transition: color .2s; }
.psvc-breadcrumb a:hover { color: rgba(237,235,231,.85); }
.psvc-breadcrumb svg { width: 6px; height: 10px; opacity: .3; }

/* Hero text elements */
.psvc-eyebrow { font-family: var(--font-u); font-weight: 700; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--olive-tan); display: block; margin-bottom: 12px; }
.psvc-hero h1 { font-family: var(--font-d); font-size: 66px; line-height: .95; letter-spacing: 1px; color: var(--off-white); margin-bottom: 18px; }
@media(max-width:768px) { .psvc-hero h1 { font-size: 48px; } }
.psvc-hero-sub { font-family: var(--font-b); font-size: 16px; line-height: 1.75; color: rgba(237,235,231,.85); max-width: 520px; margin-bottom: 24px; }
.psvc-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.psvc-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 6px 14px; font-family: var(--font-u); font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--khaki); }
.psvc-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media(max-width:480px) { .psvc-actions { flex-direction: column; align-items: stretch; } .psvc-actions > * { justify-content: center; } }

/* ── Quick Specs Strip ── */
.qspecs-strip { background: var(--army); }
.qspecs-inner { display: grid; grid-template-columns: repeat(5, 1fr); }
@media(max-width:768px) { .qspecs-inner { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:480px) { .qspecs-inner { grid-template-columns: repeat(2, 1fr); } }
.qspec-item { padding: 24px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.qspec-item:last-child { border-right: none; }
.qspec-val { font-family: var(--font-d); font-size: 28px; letter-spacing: .5px; color: #fff; line-height: 1; margin-bottom: 4px; }
.qspec-lbl { font-family: var(--font-u); font-weight: 600; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ── Service Overview ── */
.svc-ov { background: #fff; padding: 96px 0; }
.svc-ov-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media(max-width:1024px) { .svc-ov-inner { grid-template-columns: 1fr; } }
.svc-ov-img { clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%); overflow: hidden; height: 440px; }
.svc-ov-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.svc-ov-text .eyebrow { text-align: left; }
.svc-ov-text h2 { font-family: var(--font-d); font-size: 46px; color: var(--army); line-height: 1; margin: 10px 0 18px; }
.svc-ov-text p { font-family: var(--font-b); font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px; }

/* ── Cargo Cards ── */
.cargo-section { background: var(--warm-gray); padding: 96px 0; }
.cargo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:1024px) { .cargo-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px) { .cargo-grid { grid-template-columns: 1fr; } }
.cargo-card {
  background: #fff; border: 1px solid var(--border); padding: 30px 28px; position: relative;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s;
}
.cargo-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--army); transition: background .35s;
}
.cargo-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.08); border-color: transparent; }
.cargo-card:hover::before { background: var(--orange); }
.cargo-num {
  font-family: var(--font-d); font-size: 40px; color: var(--border); line-height: 1; margin-bottom: 8px;
  transition: color .35s;
}
.cargo-card:hover .cargo-num { color: var(--orange); }
.cargo-card h3 { font-family: var(--font-d); font-size: 22px; letter-spacing: .5px; color: var(--charcoal); margin-bottom: 8px; }
.cargo-card p { font-family: var(--font-b); font-size: 14px; line-height: 1.7; color: var(--text-mid); }

/* ── Full Specs Section ── */
.svc-specs { background: #fff; padding: 96px 0; }
.svc-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 40px; }
@media(max-width:1024px) { .svc-specs-grid { grid-template-columns: 1fr; } }
.spec-table { display: flex; flex-direction: column; }
.spec-table-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); gap: 16px; }
.spec-table-row:first-child { border-top: 1px solid var(--border); }
.spec-table-label { font-family: var(--font-u); font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); }
.spec-table-value { font-family: var(--font-d); font-size: 22px; letter-spacing: .5px; color: var(--army); text-align: right; white-space: nowrap; }
.svc-specs-img { clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%); overflow: hidden; height: 360px; }
.svc-specs-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }

/* ── Related Services Grid ── */
.related-section { background: #fff; padding: 96px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:1024px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { background: var(--warm-gray); border: 1px solid var(--border); overflow: hidden; }
.related-card-img { height: 200px; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.related-card:hover .related-card-img img { transform: scale(1.05); }
.related-card-body { padding: 24px 24px 28px; }
.related-card-cap { font-family: var(--font-u); font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--army); margin-bottom: 6px; }
.related-card-body h3 { font-family: var(--font-d); font-size: 26px; color: var(--charcoal); margin-bottom: 8px; }
.related-card-body p { font-family: var(--font-b); font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 18px; }

/* Mobile responsive for service sections */
@media(max-width:768px) {
  .cargo-section, .svc-ov, .svc-specs, .related-section { padding: 64px 0; }
}

/* =============================================
   INDUSTRY PAGE — SHARED TEMPLATE STYLES
============================================= */

/* ── Fleet Recommendations ── */
.fleet-section { background: #fff; padding: 96px 0; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:1024px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:640px)  { .fleet-grid { grid-template-columns: 1fr; } }
.fleet-card {
  background: var(--warm-gray); border: 1px solid var(--border); overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.fleet-card-img { height: 200px; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); }
.fleet-card-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }
.fleet-card-body { padding: 24px 24px 28px; }
.fleet-card-cap { font-family: var(--font-u); font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--army); margin-bottom: 6px; }
.fleet-card-body h3 { font-family: var(--font-d); font-size: 26px; color: var(--charcoal); margin-bottom: 8px; }
.fleet-card-body p { font-family: var(--font-b); font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 18px; }

/* ── Single Industry Testimonial ── */
.ind-testi { background: var(--charcoal); padding: 96px 0; }
.ind-testi-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.ind-testi-stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 28px; }
.ind-testi-stars svg { width: 18px; height: 18px; color: var(--orange); }
.ind-testi-quote {
  font-family: var(--font-d); font-size: 36px; line-height: 1.2; letter-spacing: .3px;
  color: var(--off-white); margin-bottom: 36px; position: relative; padding: 0 20px;
}
@media(max-width:768px) { .ind-testi-quote { font-size: 24px; padding: 0; } }
.ind-testi-quote::before {
  content: '\201C'; font-size: 140px; line-height: 0; color: var(--army); opacity: .35;
  position: absolute; top: 50px; left: -10px; font-family: var(--font-d);
}
@media(max-width:768px) { .ind-testi-quote::before { display: none; } }
.ind-testi-divider { width: 40px; height: 3px; background: var(--army); margin: 0 auto 24px; }
.ind-testi-name { font-family: var(--font-u); font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); margin-bottom: 4px; }
.ind-testi-role { font-family: var(--font-b); font-size: 13px; color: var(--olive-tan); }

/* ── Industry Coverage Section ── */
.ind-coverage { background: #fff; padding: 96px 0; }
.ind-coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media(max-width:1024px) { .ind-coverage-inner { grid-template-columns: 1fr; gap: 40px; } }
.ind-coverage-text .eyebrow { text-align: left; }
.ind-coverage-text h2 { font-family: var(--font-d); font-size: 46px; color: var(--army); line-height: 1; margin: 10px 0 18px; }
.ind-coverage-text p { font-family: var(--font-b); font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px; }
.ind-regions { display: flex; flex-direction: column; }
.ind-region { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.ind-region:first-child { border-top: 1px solid var(--border); }
.ind-region-dia { flex-shrink: 0; width: 10px; height: 10px; background: var(--army); transform: rotate(45deg); margin-top: 6px; }
.ind-region-body h4 { font-family: var(--font-u); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 4px; }
.ind-region-body p { font-family: var(--font-b); font-size: 14px; line-height: 1.6; color: var(--text-mid); }

/* Mobile responsive for industry sections */
@media(max-width:768px) {
  .fleet-section, .ind-testi, .ind-coverage { padding: 64px 0; }
}

/* =============================================
   ABOUT PAGE STYLES
============================================= */

/* ── About Hero ── */
.abt-hero { position: relative; min-height: 540px; display: flex; align-items: center; background: var(--black); overflow: hidden; }
.abt-hero-bg { position: absolute; inset: 0; }
.abt-hero-bg img,
.abt-hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.abt-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(14,14,12,.84) 50%, rgba(14,14,12,.4) 100%);
}
.abt-hero-ov::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,14,12,.65) 100%);
}
.abt-hero-content { position: relative; z-index: 2; padding: 170px 0 100px; max-width: 740px; }
.abt-hero-content .eyebrow { text-align: left; color: var(--olive-tan); margin-bottom: 14px; }
.abt-hero-content h1 { font-family: var(--font-d); font-size: clamp(50px, 7vw, 76px); line-height: .95; color: var(--off-white); margin-bottom: 22px; letter-spacing: 1px; }
.abt-hero-content > p { font-family: var(--font-b); font-size: 17px; line-height: 1.75; color: rgba(237,235,231,.85); max-width: 560px; margin-bottom: 32px; }
.abt-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
@media(max-width:768px) { .abt-hero-content { padding: 110px 0 72px; } }

/* ── Team Section ── */
.team-section { background: var(--warm-gray); padding: 96px 0; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media(max-width:900px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: #fff; border: 1px solid var(--border); overflow: hidden; }
.team-card-img { height: 340px; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card-body { padding: 28px 30px 32px; }
.team-card-role { font-family: var(--font-u); font-weight: 700; font-size: 11.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--army); margin-bottom: 8px; }
.team-card-body h3 { font-family: var(--font-d); font-size: 32px; color: var(--charcoal); margin-bottom: 14px; }
.team-card-body p { font-family: var(--font-b); font-size: 14.5px; line-height: 1.75; color: var(--text-mid); }
.team-callout { background: var(--charcoal); border: none; display: flex; flex-direction: column; justify-content: center; padding: 48px 40px; }
.team-callout .eyebrow { text-align: left; color: var(--olive-tan); margin-bottom: 16px; }
.team-callout h3 { font-family: var(--font-d); font-size: 36px; color: var(--off-white); line-height: 1.05; margin-bottom: 18px; }
.team-callout p { font-family: var(--font-b); font-size: 15px; line-height: 1.75; color: rgba(237,235,231,.8); margin-bottom: 28px; }
@media(max-width:768px) { .team-callout { padding: 36px 28px; } }

/* ── Operating Principles ── */
.principles-section { background: #fff; padding: 96px 0; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:1024px) { .principles-grid { grid-template-columns: 1fr; } }
.principle-card { border: 1px solid var(--border); padding: 36px 32px; position: relative; transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s; }
.principle-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--army); transition: background .35s; }
.principle-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.principle-card:hover::before { background: var(--orange); }
.principle-num { font-family: var(--font-d); font-size: 52px; color: var(--border); line-height: 1; margin-bottom: 12px; transition: color .35s; }
.principle-card:hover .principle-num { color: var(--orange); }
.principle-card h3 { font-family: var(--font-d); font-size: 28px; letter-spacing: .5px; color: var(--charcoal); margin-bottom: 14px; }
.principle-card p { font-family: var(--font-b); font-size: 14.5px; line-height: 1.75; color: var(--text-mid); }

/* ── Credentials Section ── */
.creds-section { background: var(--warm-gray); padding: 96px 0; }
.creds-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media(max-width:1024px) { .creds-inner { grid-template-columns: 1fr; gap: 40px; } }
.creds-text .eyebrow { text-align: left; }
.creds-text h2 { font-family: var(--font-d); font-size: 46px; color: var(--army); line-height: 1; margin: 10px 0 18px; }
.creds-text p { font-family: var(--font-b); font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px; }
.creds-table { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); overflow: hidden; }
.creds-row { display: grid; grid-template-columns: 1.1fr 1.6fr; border-bottom: 1px solid var(--border); }
.creds-row:last-child { border-bottom: none; }
.creds-label { padding: 15px 20px; font-family: var(--font-u); font-weight: 700; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mid); background: var(--warm-gray); border-right: 1px solid var(--border); display: flex; align-items: center; }
.creds-value { padding: 15px 20px; font-family: var(--font-b); font-size: 14px; line-height: 1.5; color: var(--charcoal); display: flex; align-items: center; }
.creds-value strong { color: var(--army); }
.creds-value a { color: var(--army); text-decoration: underline; text-decoration-color: rgba(75,83,32,.3); }
.creds-value a:hover { text-decoration-color: var(--army); }

/* ── Dual CTA ── */
.dual-cta { background: #fff; padding: 96px 0; }
.dual-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media(max-width:768px) { .dual-cta-grid { grid-template-columns: 1fr; } }
.dual-cta-card { padding: 52px 44px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.dual-cta-card-ship { background: var(--army); }
.dual-cta-card-drive { background: var(--charcoal); }
.dual-cta-card-eyebrow { font-family: var(--font-u); font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.dual-cta-card h3 { font-family: var(--font-d); font-size: 44px; line-height: .95; color: var(--off-white); margin-bottom: 16px; }
.dual-cta-card p { font-family: var(--font-b); font-size: 15px; line-height: 1.75; color: rgba(237,235,231,.85); max-width: 380px; margin-bottom: 28px; flex-grow: 1; }
.dual-cta-card-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.dual-cta-card-phone { font-family: var(--font-u); font-weight: 600; font-size: 13px; letter-spacing: 1px; color: rgba(255,255,255,.55); }
.dual-cta-card-phone a { color: rgba(255,255,255,.8); transition: color .2s; }
.dual-cta-card-phone a:hover { color: #fff; }
@media(max-width:768px) {
  .team-section, .principles-section, .creds-section, .dual-cta { padding: 64px 0; }
  .dual-cta-card { padding: 36px 28px; }
}

/* =============================================
   COVERAGE PAGE STYLES
============================================= */

/* ── Coverage Overview (map zone) ── */
.cov-overview { background: #fff; padding: 96px 0; }
.cov-overview-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media(max-width:1024px) { .cov-overview-inner { grid-template-columns: 1fr; gap: 48px; } }
.cov-stats { display: flex; flex-direction: column; gap: 0; }
.cov-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.cov-stat { background: #fff; padding: 28px 24px; text-align: center; }
.cov-stat-val { font-family: var(--font-d); font-size: 52px; line-height: 1; color: var(--army); }
.cov-stat-lbl { font-family: var(--font-u); font-weight: 600; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }
.cov-map-note { background: var(--warm-gray); border: 1px solid var(--border); border-top: 3px solid var(--army); padding: 20px 24px; margin-top: -1px; }
.cov-map-note p { font-family: var(--font-b); font-size: 13px; line-height: 1.6; color: var(--text-mid); }
.cov-map-note strong { color: var(--army); }
.cov-overview-text .eyebrow { text-align: left; }
.cov-overview-text h2 { font-family: var(--font-d); font-size: 46px; color: var(--army); line-height: 1; margin: 10px 0 18px; }
.cov-overview-text p { font-family: var(--font-b); font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px; }
.cov-model-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cov-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--warm-gray); border: 1px solid var(--border); padding: 10px 16px; font-family: var(--font-u); font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal); }
.cov-pill-dot { width: 8px; height: 8px; background: var(--army); transform: rotate(45deg); flex-shrink: 0; }

/* ── Distance Tiers ── */
.tier-section { background: var(--warm-gray); padding: 96px 0; }
.tier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media(max-width:768px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card { background: #fff; border: 1px solid var(--border); padding: 36px 32px; position: relative; }
.tier-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--army); }
.tier-tag { display: inline-flex; background: var(--army); color: rgba(255,255,255,.9); font-family: var(--font-u); font-weight: 700; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; margin-bottom: 18px; }
.tier-range { font-family: var(--font-d); font-size: 48px; color: var(--army); line-height: 1; margin-bottom: 10px; }
.tier-card h3 { font-family: var(--font-d); font-size: 26px; color: var(--charcoal); margin-bottom: 14px; }
.tier-card p { font-family: var(--font-b); font-size: 14.5px; line-height: 1.75; color: var(--text-mid); margin-bottom: 16px; }
.tier-usecase { font-family: var(--font-u); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); padding-top: 14px; border-top: 1px solid var(--border); }

/* ── Vehicle Coverage Table ── */
.vcov-section { background: #fff; padding: 96px 0; }
.vcov-table { border: 1px solid var(--border); overflow: hidden; }
.vcov-row { display: grid; grid-template-columns: 2fr 1.2fr 2.5fr; }
.vcov-row + .vcov-row { border-top: 1px solid var(--border); }
.vcov-head { background: var(--charcoal); }
.vcov-row:not(.vcov-head):hover { background: var(--warm-gray); }
.vcov-cell { padding: 18px 24px; display: flex; align-items: center; }
.vcov-cell + .vcov-cell { border-left: 1px solid var(--border); }
.vcov-head .vcov-cell + .vcov-cell { border-left-color: rgba(255,255,255,.1); }
.vcov-col-label { font-family: var(--font-u); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.vcov-vehicle a { font-family: var(--font-d); font-size: 22px; letter-spacing: .5px; color: var(--charcoal); transition: color .2s; }
.vcov-vehicle a:hover { color: var(--army); }
.vcov-cap { font-family: var(--font-d); font-size: 20px; color: var(--army); }
.vcov-best { font-family: var(--font-b); font-size: 13.5px; line-height: 1.5; color: var(--text-mid); }
@media(max-width:900px) {
  .vcov-row { grid-template-columns: 1fr 1fr; }
  .vcov-cell:nth-child(3) { grid-column: 1 / -1; border-left: none; border-top: 1px solid var(--border); }
  .vcov-head .vcov-cell:nth-child(3) { display: none; }
}
@media(max-width:540px) {
  .vcov-row { grid-template-columns: 1fr; }
  .vcov-cell + .vcov-cell { border-left: none; border-top: 1px solid var(--border); }
  .vcov-head .vcov-cell:nth-child(2) { display: none; }
}

/* ── One Provider section ── */
.cov-model-section { background: #fff; padding: 96px 0; }
.cov-model-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media(max-width:1024px) { .cov-model-inner { grid-template-columns: 1fr; gap: 40px; } }
.cov-model-text .eyebrow { text-align: left; }
.cov-model-text h2 { font-family: var(--font-d); font-size: 46px; color: var(--army); line-height: 1; margin: 10px 0 18px; }
.cov-model-text p { font-family: var(--font-b); font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px; }
.cov-model-boxes { display: flex; flex-direction: column; gap: 16px; }
.cov-model-box { background: var(--warm-gray); border: 1px solid var(--border); border-left: 3px solid var(--army); padding: 22px 24px; }
.cov-model-box h4 { font-family: var(--font-d); font-size: 22px; color: var(--charcoal); margin-bottom: 6px; }
.cov-model-box p { font-family: var(--font-b); font-size: 14px; line-height: 1.65; color: var(--text-mid); }

/* ── Service Regions ── */
.region-section { background: var(--warm-gray); padding: 96px 0; }
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:1024px) { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px)  { .region-grid { grid-template-columns: 1fr; } }
.region-card { background: #fff; border: 1px solid var(--border); padding: 28px 26px; position: relative; }
.region-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--army); }
.region-name { font-family: var(--font-d); font-size: 26px; letter-spacing: .5px; color: var(--charcoal); margin-bottom: 4px; }
.region-states { font-family: var(--font-u); font-weight: 600; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--army); margin-bottom: 14px; }
.region-card p { font-family: var(--font-b); font-size: 14px; line-height: 1.7; color: var(--text-mid); }

/* Coverage page mobile */
@media(max-width:768px) {
  .cov-overview, .tier-section, .vcov-section, .cov-model-section, .region-section { padding: 64px 0; }
  .cov-stat-val { font-size: 40px; }
  .tier-range { font-size: 36px; }
}

/* =============================================
   CAREERS PAGE STYLES
============================================= */

/* ── Open Positions ── */
.jobs-section { background: #fff; padding: 96px 0; }
.jobs-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 480px)); gap: 24px; justify-content: center; }
@media(max-width:1024px) { .jobs-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.job-card { display: flex; flex-direction: column; background: var(--warm-gray); border: 1px solid var(--border); overflow: hidden; transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s; }
.job-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.07); }
.job-card-head { background: var(--charcoal); padding: 28px 28px 24px; position: relative; }
.job-card-head::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 3px; background: var(--army); }
.job-type { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-u); font-weight: 700; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--olive-tan); margin-bottom: 10px; }
.job-type-dot { width: 6px; height: 6px; background: var(--army); border-radius: 50%; flex-shrink: 0; }
.job-card-head h3 { font-family: var(--font-d); font-size: 32px; letter-spacing: .5px; color: var(--off-white); line-height: 1; }
.job-card-body { padding: 24px 28px 28px; flex-grow: 1; display: flex; flex-direction: column; }
.job-highlights { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.job-highlight { display: flex; align-items: flex-start; gap: 10px; }
.job-highlight-dot { flex-shrink: 0; width: 8px; height: 8px; background: var(--army); transform: rotate(45deg); margin-top: 5px; }
.job-highlight span { font-family: var(--font-b); font-size: 14px; line-height: 1.5; color: var(--text-mid); }
.job-req-label { font-family: var(--font-u); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 10px; }
.job-reqs { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; flex-grow: 1; }
.job-req { font-family: var(--font-b); font-size: 13.5px; line-height: 1.5; color: var(--text-mid); padding-left: 14px; position: relative; }
.job-req::before { content: '—'; position: absolute; left: 0; color: var(--army); font-size: 12px; }

/* ── Requirements Section ── */
.car-reqs-section { background: var(--warm-gray); padding: 96px 0; }
.car-reqs-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media(max-width:1024px) { .car-reqs-inner { grid-template-columns: 1fr; gap: 40px; } }
.car-reqs-col h3 { font-family: var(--font-d); font-size: 32px; color: var(--charcoal); margin-bottom: 24px; }
.car-req-list { display: flex; flex-direction: column; }
.car-req-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.car-req-item:first-child { border-top: 1px solid var(--border); }
.car-req-dia { flex-shrink: 0; width: 9px; height: 9px; background: var(--army); transform: rotate(45deg); margin-top: 5px; }
.car-req-text { font-family: var(--font-b); font-size: 14.5px; line-height: 1.6; color: var(--text-mid); }
.car-req-text strong { color: var(--charcoal); font-weight: 600; }

/* ── Driver Benefits ── */
.benefits-section { background: #fff; padding: 96px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:1024px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px)  { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card { border: 1px solid var(--border); padding: 30px 28px; position: relative; }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--army); }
.benefit-num { font-family: var(--font-d); font-size: 44px; color: var(--border); line-height: 1; margin-bottom: 10px; transition: color .35s; }
.benefit-card:hover .benefit-num { color: var(--orange); }
.benefit-card h4 { font-family: var(--font-d); font-size: 24px; color: var(--charcoal); margin-bottom: 8px; }
.benefit-card p { font-family: var(--font-b); font-size: 14px; line-height: 1.7; color: var(--text-mid); }

/* ── Careers Apply CTA ── */
.car-apply { background: #fff; padding: 96px 0; }
.car-apply-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media(max-width:768px) { .car-apply-inner { grid-template-columns: 1fr; } }
.car-apply-card { padding: 52px 44px; display: flex; flex-direction: column; }
.car-apply-card-form { background: var(--army); }
.car-apply-card-call { background: var(--charcoal); }
.car-apply-card-eyebrow { font-family: var(--font-u); font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.car-apply-card h3 { font-family: var(--font-d); font-size: 42px; line-height: .95; color: var(--off-white); margin-bottom: 16px; }
.car-apply-card p { font-family: var(--font-b); font-size: 15px; line-height: 1.75; color: rgba(237,235,231,.85); margin-bottom: 28px; flex-grow: 1; }
.car-apply-card-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.car-apply-note { font-family: var(--font-u); font-weight: 600; font-size: 13px; letter-spacing: 1px; color: rgba(255,255,255,.55); }
.car-apply-note a { color: rgba(255,255,255,.8); transition: color .2s; }
.car-apply-note a:hover { color: #fff; }

/* Careers mobile */
@media(max-width:768px) {
  .jobs-section, .car-reqs-section, .benefits-section, .car-apply { padding: 64px 0; }
  .car-apply-card { padding: 36px 28px; }
}

/* ── Process Steps (The Process / What Happens After You Apply) ── */
.ind-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}

/* Connecting line behind the steps */
.ind-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 2px;
  background: linear-gradient(90deg, var(--army) 0%, var(--khaki) 100%);
  z-index: 0;
}

.ind-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--army);
  padding: 32px 28px 36px;
  position: relative;
  z-index: 1;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
  margin: 0 12px;
}
.ind-step:first-child { margin-left: 0; }
.ind-step:last-child  { margin-right: 0; }
.ind-step:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }

/* Step number badge */
.ind-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--army);
  color: var(--off-white);
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 1px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.ind-step h3 {
  font-family: var(--font-d);
  font-size: 26px;
  letter-spacing: .5px;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.1;
}
.ind-step p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-mid);
}

/* Reveal animation — steps slide up from further down for extra drama */
.ind-step.reveal { transform: translateY(40px); }
.ind-step.reveal.vis { transform: translateY(0); }
.ind-step:hover { transform: translateY(-5px) !important; }

/* ── Sequential orange sweep: green → orange → green, card 1 → 2 → 3, loops ── */
/* Total cycle: 4.5s. Each card active for ~30% of cycle (~1.35s), staggered by 1.5s */
@keyframes step-border-sweep {
  0%   { border-top-color: var(--army); }
  6%   { border-top-color: var(--orange); }
  24%  { border-top-color: var(--orange); }
  33%  { border-top-color: var(--army); }
  100% { border-top-color: var(--army); }
}
@keyframes step-badge-sweep {
  0%   { background: var(--army); box-shadow: none; }
  6%   { background: var(--orange); box-shadow: 0 0 0 4px rgba(247,64,35,.18); }
  24%  { background: var(--orange); box-shadow: 0 0 0 4px rgba(247,64,35,.18); }
  33%  { background: var(--army); box-shadow: none; }
  100% { background: var(--army); box-shadow: none; }
}

.ind-step {
  animation: step-border-sweep 4.5s ease-in-out infinite;
}
.ind-step:nth-child(2) { animation-delay: 1.5s; }
.ind-step:nth-child(3) { animation-delay: 3s; }

.ind-step .ind-step-num {
  animation: step-badge-sweep 4.5s ease-in-out infinite;
}
.ind-step:nth-child(2) .ind-step-num { animation-delay: 1.5s; }
.ind-step:nth-child(3) .ind-step-num { animation-delay: 3s; }

@media(max-width:900px) {
  .ind-steps { grid-template-columns: 1fr; }
  .ind-steps::before { display: none; }
  .ind-step { margin: 0 0 16px 0; }
  .ind-step:last-child { margin-bottom: 0; }
}

/* ── Credentials Grid (A Carrier That Runs Straight) ── */
.trust-creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 8px;
}

.trust-cred-item {
  background: var(--warm-gray);
  border: 1px solid var(--border);
  border-top: 3px solid var(--army);
  padding: 28px 24px 24px;
  text-align: center;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.trust-cred-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.07);
}

.trust-cred-label {
  font-family: var(--font-u);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.trust-cred-val {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: .5px;
  color: var(--army);
  line-height: 1.1;
}

@media(max-width:768px) {
  .trust-creds-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px) {
  .trust-creds-grid { grid-template-columns: 1fr; }
}

/* =============================================
   QUOTE PAGE STYLES
============================================= */

/* ── Quote hero (compact dark) ── */
.quote-hero { background: var(--charcoal); padding: 160px 0 56px; position: relative; overflow: hidden; }
.quote-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(75,83,32,.03) 40px, rgba(75,83,32,.03) 41px);
}
.quote-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media(max-width:900px) { .quote-hero-inner { grid-template-columns: 1fr; gap: 28px; } }
.quote-hero-text .eyebrow { text-align: left; margin-bottom: 12px; }
.quote-hero-text h1 { font-family: var(--font-d); font-size: clamp(48px, 6vw, 72px); line-height: .95; color: var(--off-white); letter-spacing: 1px; margin-bottom: 16px; }
.quote-hero-text p { font-family: var(--font-b); font-size: 16px; line-height: 1.75; color: rgba(237,235,231,.8); max-width: 480px; }
.quote-hero-phone { margin-top: 20px; font-family: var(--font-u); font-size: 13px; letter-spacing: 1px; color: rgba(237,235,231,.5); }
.quote-hero-phone a { color: var(--khaki); font-weight: 700; font-size: 15px; }
.quote-hero-phone a:hover { color: #fff; }
.emerg-box { background: rgba(247,64,35,.08); border: 1px solid rgba(247,64,35,.2); border-left: 3px solid var(--orange); padding: 20px 22px; }
.emerg-box-label { font-family: var(--font-u); font-weight: 700; font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.emerg-box p { font-family: var(--font-b); font-size: 14.5px; line-height: 1.6; color: rgba(237,235,231,.85); }
.emerg-box a { color: #fff; font-weight: 600; }

/* ── Quote main layout ── */
.quote-main { background: #fff; padding: 64px 0 80px; }
.quote-main-inner { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
@media(max-width:1100px) { .quote-main-inner { grid-template-columns: 1fr 360px; gap: 40px; } }
@media(max-width:900px)  { .quote-main-inner { grid-template-columns: 1fr; } }

/* ── The Form ── */
.quote-form-wrap { background: var(--warm-gray); border: 1px solid var(--border); padding: 36px 36px 40px; }
@media(max-width:540px) { .quote-form-wrap { padding: 24px 20px 28px; } }
.quote-form-title { font-family: var(--font-d); font-size: 28px; color: var(--charcoal); margin-bottom: 6px; }
.quote-form-sub { font-family: var(--font-b); font-size: 14px; color: var(--text-mid); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-family: var(--font-u); font-weight: 700; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal); }
.form-label .req { color: var(--army); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-family: var(--font-b); font-size: 15px; color: var(--text-dark);
  outline: none; border-radius: 0; -webkit-appearance: none; appearance: none;
  transition: border-color .2s, background .2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--army); background: var(--off-white); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); font-size: 14px; }
.form-textarea { resize: vertical; min-height: 96px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9590' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.form-select:focus { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234B5320' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:640px) { .form-row { grid-template-columns: 1fr; } }

/* Optional fields toggle */
.form-optional-toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; border: none; background: none; padding: 14px 0; font-family: var(--font-u); font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--army); margin: 4px 0 0; width: 100%; text-align: left; border-top: 1px solid var(--border); transition: color .2s; }
.form-optional-toggle:hover { color: var(--charcoal); }
.form-toggle-icon { width: 18px; height: 18px; flex-shrink: 0; position: relative; border: 1.5px solid currentColor; }
.form-toggle-icon::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 10px; height: 1.5px; background: currentColor; }
.form-toggle-icon::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 1.5px; height: 10px; background: currentColor; transition: transform .25s, opacity .25s; }
.form-optional-toggle.open .form-toggle-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.form-optional-fields { display: none; padding-top: 4px; }
.form-optional-fields.open { display: block; }

/* Submit area */
.form-submit-area { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.form-submit { width: 100%; padding: 17px 24px; background: var(--orange); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-u); font-weight: 700; font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; transition: background .2s; }
.form-submit:hover { background: var(--orange-h); }
.form-submit svg { width: 12px; height: 20px; flex-shrink: 0; }
.form-submit-note { font-family: var(--font-b); font-size: 12.5px; color: var(--text-light); text-align: center; margin-top: 10px; }

/* Success state */
.form-success {
  display: none; flex-direction: column; align-items: center; text-align: center;
  padding: 48px 24px; gap: 14px;
}
.form-success-icon { width: 52px; height: 52px; background: var(--army); display: flex; align-items: center; justify-content: center; }
.form-success-icon svg { width: 24px; height: 24px; color: #fff; }
.form-success h3 { font-family: var(--font-d); font-size: 32px; color: var(--charcoal); }
.form-success p { font-family: var(--font-b); font-size: 15px; line-height: 1.7; color: var(--text-mid); max-width: 380px; }
.form-success a { color: var(--army); font-weight: 600; }
.quote-form.submitted .form-fields { display: none; }
.quote-form.submitted .form-success { display: flex; }

/* ── Quote aside ── */
.quote-aside { display: flex; flex-direction: column; gap: 20px; }
.quote-steps-card { background: var(--charcoal); padding: 28px 28px 32px; }
.quote-steps-card h3 { font-family: var(--font-d); font-size: 24px; color: var(--off-white); margin-bottom: 24px; }
.quote-step { display: flex; gap: 16px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
.quote-step:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.quote-step-num { flex-shrink: 0; width: 32px; height: 32px; background: var(--army); display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 18px; color: #fff; }
.quote-step-body h4 { font-family: var(--font-u); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream); margin-bottom: 5px; }
.quote-step-body p { font-family: var(--font-b); font-size: 13.5px; line-height: 1.6; color: rgba(237,235,231,.7); }

.quote-contact-card { background: var(--warm-gray); border: 1px solid var(--border); padding: 24px 26px; }
.quote-contact-card h3 { font-family: var(--font-d); font-size: 22px; color: var(--charcoal); margin-bottom: 18px; }
.quote-contact-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.quote-contact-item:first-of-type { border-top: 1px solid var(--border); }
.quote-contact-item:last-of-type { border-bottom: none; }
.quote-contact-dia { flex-shrink: 0; width: 8px; height: 8px; background: var(--army); transform: rotate(45deg); margin-top: 5px; }
.quote-contact-body { font-family: var(--font-b); font-size: 13.5px; line-height: 1.6; color: var(--text-mid); }
.quote-contact-body strong { display: block; font-family: var(--font-u); font-weight: 700; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 3px; }
.quote-contact-body a { color: var(--army); font-weight: 600; }

/* ── Quote Trust Strip ── */
.quote-trust { background: var(--army); padding: 20px 0; }
.quote-trust-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0; }
.quote-trust-item { display: flex; align-items: center; gap: 8px; padding: 8px 20px; font-family: var(--font-u); font-weight: 600; font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.85); }
.quote-trust-item + .quote-trust-item { border-left: 1px solid rgba(255,255,255,.15); }
.quote-trust-dia { width: 7px; height: 7px; background: var(--khaki); transform: rotate(45deg); flex-shrink: 0; }
@media(max-width:900px) {
  .quote-trust-inner { gap: 0; }
  .quote-trust-item + .quote-trust-item { border-left: none; }
  .quote-trust-item { padding: 6px 14px; font-size: 11px; }
}

/* ── Quote FAQ (white bg override) ── */
.quote-faq { background: var(--warm-gray); }

/* ── Simplified footer ── */
.foot-simple { background: var(--black); padding: 20px 0; border-top: 1px solid rgba(255,255,255,.06); }
.foot-simple-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.foot-simple-inner p, .foot-simple-inner span { font-family: var(--font-b); font-size: 11.5px; color: rgba(255,255,255,.4); }
.foot-simple-inner a { color: inherit; opacity: .7; }
.foot-watermark-sm { overflow: hidden; height: 80px; display: flex; align-items: flex-end; justify-content: center; background: var(--black); }
.foot-watermark-sm span { font-family: var(--font-d); font-size: 16vw; letter-spacing: 0.01em; color: rgba(251,251,250,.04); line-height: .85; white-space: nowrap; }

/* Quote page mobile */
@media(max-width:768px) {
  .quote-hero { padding: 110px 0 44px; }
  .quote-main { padding: 40px 0 60px; }
}

/* =============================================
   BLOG ARTICLE TEMPLATE
============================================= */

/* ── Breadcrumb ── */
.article-breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-u); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 28px;
}
.article-breadcrumb a { color: inherit; transition: color .2s; }
.article-breadcrumb a:hover { color: var(--army); }
.article-breadcrumb .bc-sep { opacity: .35; }

/* ── Article Hero ── */
.article-hero { background: var(--white); padding: 120px 0 0; }
.article-hero-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.article-tag-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.article-hero h1 {
  font-family: var(--font-d); font-size: 56px; line-height: .95;
  color: var(--text-dark); margin-bottom: 18px; letter-spacing: .5px;
}
.article-dek {
  font-family: var(--font-b); font-size: 18px; line-height: 1.75;
  color: var(--text-mid); max-width: 680px;
}
.article-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
  font-family: var(--font-u); font-size: 11.5px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light);
  padding: 18px 0; margin-top: 20px;
  border-top: 1px solid var(--border);
}
.article-meta span + span { margin-left: 16px; }
.article-meta .meta-dot { opacity: .3; margin-left: 16px; }
.article-hero-img {
  margin-top: 40px; height: 480px; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* ── Article Layout ── */
.article-content-section { background: var(--white); padding: 72px 0 96px; }
.article-layout {
  display: grid; grid-template-columns: 1fr 312px;
  gap: 72px; align-items: start;
}

/* ── Article Body Prose ── */
.article-body { min-width: 0; }
.article-body h2 {
  font-family: var(--font-d); font-size: 36px; line-height: 1;
  color: var(--text-dark); margin: 52px 0 14px; letter-spacing: .5px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--font-u); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dark); margin: 32px 0 10px;
}
.article-body p {
  font-family: var(--font-b); font-size: 16px; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 20px;
}
.article-body p:last-child { margin-bottom: 0; }
.article-body ul { margin: 0 0 22px 0; padding-left: 0; list-style: none; }
.article-body ul li {
  font-family: var(--font-b); font-size: 16px; line-height: 1.75;
  color: var(--text-mid); margin-bottom: 8px;
  padding-left: 20px; position: relative;
}
.article-body ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--army);
}
.article-body ol { margin: 0 0 22px 22px; }
.article-body ol li {
  font-family: var(--font-b); font-size: 16px; line-height: 1.75;
  color: var(--text-mid); margin-bottom: 8px;
}
.article-body strong { color: var(--text-dark); font-weight: 600; }
.article-body a { color: var(--army); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--orange); }

/* ── Pull Quote ── */
.pull-quote {
  border-left: 4px solid var(--army); padding: 18px 26px;
  margin: 36px 0; background: var(--warm-gray);
}
.pull-quote p {
  font-family: var(--font-b); font-size: 20px; font-weight: 500;
  font-style: italic; line-height: 1.5; color: var(--text-dark); margin: 0 !important;
}

/* ── Callout Box ── */
.callout-box {
  background: var(--warm-gray); border-left: 4px solid var(--orange);
  padding: 22px 26px; margin: 36px 0;
}
.callout-box p { margin: 0 !important; font-size: 15px !important; line-height: 1.7 !important; }
.callout-label {
  font-family: var(--font-u); font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange);
  display: block; margin-bottom: 8px;
}

/* ── Comparison Table ── */
.compare-table { width: 100%; border-collapse: collapse; margin: 28px 0; overflow-x: auto; display: block; }
.compare-table th {
  font-family: var(--font-u); font-size: 11.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-dark);
  padding: 11px 14px; border-bottom: 2px solid var(--army);
  text-align: left; background: var(--warm-gray); white-space: nowrap;
}
.compare-table td {
  font-family: var(--font-b); font-size: 14.5px; color: var(--text-mid);
  padding: 11px 14px; border-bottom: 1px solid var(--border);
  vertical-align: top; line-height: 1.5;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .td-label { font-weight: 600; color: var(--text-dark); white-space: nowrap; }
.compare-table .td-hl { color: var(--army); font-weight: 600; }

/* ── Article Sidebar ── */
.article-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-cta-card { background: var(--army); padding: 28px 24px 30px; }
.sidebar-cta-card .sc-eyebrow {
  font-family: var(--font-u); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--khaki);
  display: block; margin-bottom: 10px;
}
.sidebar-cta-card h3 {
  font-family: var(--font-d); font-size: 28px; line-height: .95;
  color: var(--off-white); margin-bottom: 10px;
}
.sidebar-cta-card p {
  font-family: var(--font-b); font-size: 13.5px; line-height: 1.6;
  color: rgba(232,224,204,.8); margin-bottom: 20px;
}
.sidebar-cta-card .btn-orange { width: 100%; justify-content: center; text-align: center; display: flex; }
.sidebar-cta-card .sc-call {
  display: block; margin-top: 12px; text-align: center;
  font-family: var(--font-u); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(212,197,158,.65); transition: color .2s;
}
.sidebar-cta-card .sc-call:hover { color: var(--khaki); }
.sidebar-related { border: 1px solid var(--border); background: var(--white); overflow: hidden; }
.sidebar-related-head {
  font-family: var(--font-u); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-light);
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  display: block; background: var(--warm-gray);
}
.sidebar-rel-item {
  display: flex; gap: 12px; padding: 13px 16px; align-items: flex-start;
  border-bottom: 1px solid var(--border); transition: background .2s;
  text-decoration: none; color: inherit;
}
.sidebar-rel-item:last-child { border-bottom: none; }
.sidebar-rel-item:hover { background: var(--warm-gray); }
.sidebar-rel-thumb { width: 58px; height: 50px; flex-shrink: 0; overflow: hidden; }
.sidebar-rel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-rel-text .blog-tag { font-size: 9px; letter-spacing: 1.5px; padding: 2px 7px; margin-bottom: 5px; }
.sidebar-rel-text h4 {
  font-family: var(--font-u); font-size: 12.5px; font-weight: 700;
  line-height: 1.3; color: var(--text-dark); letter-spacing: .2px;
}

/* ── Author Card ── */
.article-author {
  margin-top: 56px; padding-top: 32px;
  border-top: 2px solid var(--border);
  display: flex; gap: 18px; align-items: flex-start;
}
.author-avatar {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%;
  background: var(--army); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 20px; color: var(--cream); letter-spacing: 1px;
}
.author-name {
  font-family: var(--font-u); font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dark);
  display: block; margin-bottom: 3px;
}
.author-role {
  font-family: var(--font-u); font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 8px;
}
.author-bio {
  font-family: var(--font-b); font-size: 14px; line-height: 1.65; color: var(--text-mid); margin: 0;
}

/* ── Related Articles Section ── */
.article-related-section { background: var(--warm-gray); padding: 80px 0; }

/* ── Article page responsive ── */
@media(max-width:1024px) {
  .article-layout { grid-template-columns: 1fr; gap: 48px; }
  .article-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .article-hero { padding: 100px 0 0; }
  .article-hero h1 { font-size: 36px; }
  .article-dek { font-size: 16px; }
  .article-hero-img { height: 220px; clip-path: none; margin-top: 28px; }
  .article-content-section { padding: 48px 0 64px; }
  .article-body h2 { font-size: 28px; margin-top: 40px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-related-section { padding: 56px 0; }
}

/* =============================================
   BLOG INDEX PAGE
============================================= */

/* ── Featured Post ── */
.blog-featured-section { background: var(--white); padding: 80px 0 72px; }
.blog-featured-label { font-family: var(--font-u); font-size: 11.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); margin-bottom: 24px; display: block; }
.blog-featured-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); overflow: hidden;
  background: var(--white);
  transition: box-shadow .3s ease;
}
.blog-featured-card:hover { box-shadow: 0 12px 40px rgba(14,14,12,.08); }
.blog-featured-img {
  overflow: hidden; min-height: 420px;
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
}
.blog-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body {
  padding: 52px 52px 52px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.blog-featured-body h2 {
  font-family: var(--font-d); font-size: 40px; line-height: .95;
  color: var(--text-dark); margin: 12px 0 16px;
}
.blog-featured-body .excerpt {
  font-family: var(--font-b); font-size: 15.5px; line-height: 1.75;
  color: var(--text-mid); margin-bottom: 28px;
}

/* ── Tag / Category Pill ── */
.blog-tag {
  display: inline-block; font-family: var(--font-u); font-size: 10.5px;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--army); background: rgba(75,83,32,.1);
  padding: 4px 10px; margin-bottom: 4px;
}

/* ── Post Meta Row (date · read time) ── */
.blog-meta-row {
  display: flex; align-items: center; gap: 16px; margin-top: 16px;
}
.blog-meta-row span {
  font-family: var(--font-u); font-size: 11.5px; color: var(--text-light);
  letter-spacing: 1px; text-transform: uppercase;
}
.blog-meta-row span + span::before {
  content: '·'; margin-right: 16px; opacity: .5;
}

/* ── All Articles Section ── */
.blog-all-section { background: var(--warm-gray); padding: 80px 0 96px; }
.blog-all-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.blog-all-header-label { font-family: var(--font-u); font-size: 11.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); }
.blog-all-header-count { font-family: var(--font-u); font-size: 11.5px; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }

/* ── Enhanced Blog Card (full version) ── */
.blog-card-full {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; transition: box-shadow .3s ease, transform .3s ease;
}
.blog-card-full:hover { box-shadow: 0 8px 32px rgba(14,14,12,.07); transform: translateY(-2px); }
.blog-card-full .blog-thumb { height: 220px; }
.blog-card-full .blog-card-inner { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card-full .blog-card-inner h3 {
  font-family: var(--font-d); font-size: 22px; line-height: 1;
  color: var(--text-dark); margin: 10px 0 10px; letter-spacing: .5px;
}
.blog-card-full .blog-card-inner p {
  font-family: var(--font-b); font-size: 14px; line-height: 1.65;
  color: var(--text-mid); flex: 1;
}
.blog-card-full .blog-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
}
.blog-card-full .blog-card-bottom .blog-meta-row { margin-top: 0; }
.blog-read-link {
  font-family: var(--font-u); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--army);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.blog-read-link svg { width: 11px; height: 11px; transition: transform .2s; }
.blog-card-full:hover .blog-read-link { color: var(--orange); }
.blog-card-full:hover .blog-read-link svg { transform: translateX(3px); }

/* ── Coming-soon placeholder card ── */
.blog-placeholder-card {
  background: transparent; border: 2px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}
.blog-placeholder-inner { text-align: center; padding: 40px 24px; }
.blog-placeholder-inner .placeholder-icon { font-size: 32px; margin-bottom: 14px; opacity: .35; }
.blog-placeholder-inner p { font-family: var(--font-u); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); line-height: 1.6; }

/* ── Blog page responsive ── */
@media(max-width:900px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 260px; clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%); }
  .blog-featured-body { padding: 32px 28px 36px; }
  .blog-featured-body h2 { font-size: 30px; }
}
@media(max-width:768px) {
  .blog-featured-section { padding: 56px 0 48px; }
  .blog-all-section { padding: 56px 0 64px; }
}

/* ==============================================
   POLICY PAGES (Privacy & Cookie Policy, etc.)
============================================== */
.policy-hero {
  background: var(--charcoal);
  padding: 150px 0 52px;
}
.policy-hero h1 {
  font-family: var(--font-d);
  font-size: 52px;
  color: var(--off-white);
  margin: 12px 0 8px;
  line-height: 1.05;
}
.policy-meta {
  font-family: var(--font-u);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive-tan);
  margin: 0;
}

/* Breadcrumb */
.psvc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-u);
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.psvc-breadcrumb a { color: var(--khaki); text-decoration: none; transition: color .2s; }
.psvc-breadcrumb a:hover { color: var(--cream); }
.psvc-breadcrumb svg { width: 5px; height: 9px; opacity: .5; }
.psvc-breadcrumb span { color: var(--olive-tan); }

/* Policy body */
.policy-body {
  padding: 72px 0 96px;
  background: var(--white);
}
.policy-prose {
  max-width: 780px;
}
.policy-prose h2 {
  font-family: var(--font-d);
  font-size: 36px;
  color: var(--text-dark);
  margin: 0 0 20px;
  line-height: 1.1;
}
.policy-prose h3 {
  font-family: var(--font-u);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--army);
  margin: 36px 0 12px;
}
.policy-prose p {
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.75;
  margin: 0 0 16px;
}
.policy-prose ul,
.policy-prose ol {
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.75;
  margin: 0 0 20px;
  padding-left: 24px;
}
.policy-prose li { margin-bottom: 6px; }
.policy-prose strong { font-weight: 600; }
.policy-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* Contact block */
.policy-contact {
  background: var(--warm-gray);
  border-left: 3px solid var(--army);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 20px 0 28px;
}
.policy-contact p {
  margin: 0 0 4px;
  font-size: 14px;
}
.policy-contact a {
  color: var(--army);
  text-decoration: none;
  transition: color .2s;
}
.policy-contact a:hover { color: var(--orange); }

/* Updated date */
.policy-updated {
  font-family: var(--font-u);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 48px;
}

/* Policy responsive */
@media(max-width: 768px) {
  .policy-hero { padding: 110px 0 40px; }
  .policy-hero h1 { font-size: 38px; }
  .policy-body { padding: 48px 0 64px; }
  .policy-prose h2 { font-size: 28px; }
}
