/* =====================================================================
   PINE LOGISTICS — pages.css
   Everything that isn't a shared token/utility/component lives here,
   in one file, split into clearly labeled sections so it's easy to find:

     1. NAVIGATION · FOOTER · MOBILE DRAWER · FLOATING WIDGETS  (all pages)
     2. HOME            — index.html
     3. FLEET            — fleet.html
     4. OWNER-OPERATORS  — owner.html
     5. COMPANY DRIVERS  — drivers.html
     6. LEGAL            — privacy.html · terms.html · compliance.html

   Loaded on every page, after global.css (tokens, reset, .btn, .glass,
   .reveal, .hero-layer, .scroll-cue, .section-head, .card-glow, keyframes…).
   ===================================================================== */


/* #####################################################################
   1. NAVIGATION · FOOTER · MOBILE DRAWER · FLOATING WIDGETS
   Site-wide chrome, identical markup/behavior on every page.
   ##################################################################### */

/* ---------- Header ---------- */
.pg-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  font-family: var(--font-body);
  transition: height .4s var(--ease), background .4s var(--ease),
              backdrop-filter .4s var(--ease), box-shadow .4s var(--ease);
}
.pg-header.is-scrolled {
  height: 64px;
  background: rgba(0, 37, 15, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(155, 199, 61, 0.18);
}
.pg-header-inner {
  width: min(100% - 3rem, var(--maxw));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}

/* Logo (far left) */
.pg-brand { display: inline-flex; align-items: center; text-decoration: none; }
.pg-logo {
  height: 42px; width: auto; display: block;
  filter: drop-shadow(0 0 10px rgba(155, 199, 61, 0.25));
  transition: height .4s var(--ease);
}
.pg-header.is-scrolled .pg-logo { height: 34px; }

/* Right cluster */
.pg-actions { display: flex; align-items: center; gap: 1.75rem; }
.pg-nav { display: flex; gap: 1.4rem; }
.pg-nav a {
  position: relative; text-decoration: none;
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82); padding: 0.25rem 0;
  transition: color .4s var(--ease);
}
.pg-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--green-neon);
  box-shadow: var(--glow-neon); transition: width .4s var(--ease);
}
.pg-nav a:hover, .pg-nav a.is-active { color: var(--white); }
.pg-nav a:hover::after, .pg-nav a.is-active::after { width: 100%; }

/* Send Email button */
.pg-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  padding: 0.72rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease),
              background .4s var(--ease), color .4s var(--ease);
}
.pg-btn:hover { transform: translateY(-3px); }
.pg-btn-email {
  background: rgba(255, 255, 255, 0.08); color: var(--white);
  border-color: rgba(155, 199, 61, 0.45);
}
.pg-btn-email:hover { background: var(--green-neon); color: var(--green-darker); box-shadow: var(--glow-neon); }
.pg-btn-neon { background: var(--green-neon); color: var(--green-darker); box-shadow: var(--glow-neon); }
.pg-btn-neon:hover { box-shadow: var(--glow-neon-lg); }
.pg-btn-whatsapp {
  background: #1faf54; color: var(--white);
  box-shadow: 0 0 15px rgba(31, 175, 84, 0.5);
  margin-top: 0.75rem;
}
.pg-btn-whatsapp:hover { box-shadow: 0 0 25px rgba(31, 175, 84, 0.7); }
.pg-btn-block { width: 100%; justify-content: center; }
.pg-ico { width: 18px; height: 18px; }

/* ---------- Language switcher ---------- */
.pg-lang { position: relative; }
.pg-lang-toggle {
  display: inline-flex; align-items: center; gap: 0.4rem;
  height: 40px; padding: 0 0.9rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08); color: var(--white);
  border: 1px solid rgba(155, 199, 61, 0.4); cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.03em;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
}
.pg-lang-toggle svg { width: 16px; height: 16px; flex: none; }
.pg-lang-toggle:hover, .pg-lang.is-open .pg-lang-toggle {
  background: var(--green-neon); color: var(--green-darker); box-shadow: var(--glow-neon);
}
.pg-lang-chevron { transition: transform .3s var(--ease); }
.pg-lang.is-open .pg-lang-chevron { transform: rotate(180deg); }
.pg-lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 200;
  min-width: 200px; list-style: none; margin: 0; padding: 0.4rem;
  border-radius: 14px;
  background: rgba(0, 26, 13, 0.94);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(155, 199, 61, 0.25);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.6);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease);
}
.pg-lang.is-open .pg-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.pg-lang-menu li {
  padding: 0.65rem 0.85rem; border-radius: 8px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.9rem; color: rgba(255, 255, 255, 0.85);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.pg-lang-menu li:hover { background: rgba(155, 199, 61, 0.16); color: var(--white); }
.pg-lang-menu li.is-active { color: var(--green-neon); font-weight: 600; }

/* ---------- Hamburger ---------- */
.pg-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(155, 199, 61, 0.35);
  border-radius: 12px; cursor: pointer;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.pg-burger:hover { background: rgba(155, 199, 61, 0.14); box-shadow: var(--glow-neon); }
.pg-burger span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: var(--green-neon);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.pg-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pg-burger.is-open span:nth-child(2) { opacity: 0; }
.pg-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Drawer overlay + side drawer ---------- */
.pg-overlay {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(0, 20, 10, 0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.pg-overlay.is-open { opacity: 1; visibility: visible; }

.pg-drawer {
  position: fixed; top: 0; right: 0; z-index: 120;
  height: 100%; width: min(86vw, 360px);
  display: flex; flex-direction: column; padding: 1.5rem;
  font-family: var(--font-body);
  transform: translateX(105%);
  transition: transform .42s var(--ease);
  background:
    radial-gradient(420px 240px at 80% 0%, rgba(155, 199, 61, 0.14), transparent 65%),
    linear-gradient(160deg, var(--green-deep) 0%, var(--green-darker) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-left: 1px solid rgba(155, 199, 61, 0.25);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45);
}
.pg-drawer.is-open { transform: translateX(0); }
.pg-drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.pg-drawer-head .pg-logo { height: 38px; }
.pg-drawer-close {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(155, 199, 61, 0.3); border-radius: 10px;
  color: var(--green-neon); cursor: pointer;
  transition: background .4s var(--ease);
}
.pg-drawer-close:hover { background: rgba(155, 199, 61, 0.16); }
.pg-drawer-close svg { width: 22px; height: 22px; }
.pg-drawer-nav { display: flex; flex-direction: column; margin-top: 1.5rem; }
.pg-drawer-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85); text-decoration: none;
  padding: 0.95rem 0.4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color .4s var(--ease), padding-left .4s var(--ease);
}
.pg-drawer-nav a:hover, .pg-drawer-nav a.is-active { color: var(--green-neon); padding-left: 0.9rem; }
.pg-drawer .pg-btn-block { margin-top: auto; }
body.pg-locked { overflow: hidden; }

/* ---------- Mobile switch ---------- */
@media (max-width: 860px) {
  .pg-nav, .pg-actions .pg-btn-email { display: none; }
  .pg-burger { display: inline-flex; }
}

/* ---------- Footer ---------- */
.pg-footer {
  background:
    radial-gradient(800px 360px at 85% -10%, rgba(155, 199, 61, 0.08), transparent 60%),
    var(--charcoal);
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-body);
  padding: 4.5rem 0 1.75rem;
}
.pg-footer-grid {
  width: min(100% - 3rem, var(--maxw));
  margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1.2fr 1fr; gap: 3rem;
}
.pg-footer .pg-logo { height: 44px; }
.pg-footer-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--white); margin: 1rem 0 0.35rem;
}
.pg-footer-name strong { color: var(--green-neon); }
.pg-footer-tag { color: rgba(255, 255, 255, 0.6); margin-bottom: 1.25rem; }
.pg-contact-row a { color: rgba(255, 255, 255, 0.82); text-decoration: none; transition: color .4s var(--ease); }
.pg-contact-row a:hover { color: var(--green-neon); }

.pg-footer-head { color: var(--white); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.9rem; }
.pg-footer-text { font-size: 0.92rem; color: rgba(255, 255, 255, 0.62); }
.pg-footer-text strong { color: var(--green-neon); font-weight: 600; }
.pg-footer-links { margin-top: 1rem; font-size: 0.9rem; }
.pg-footer-links a { color: rgba(255, 255, 255, 0.78); text-decoration: none; transition: color .4s var(--ease); }
.pg-footer-links a:hover { color: var(--green-neon); }
.pg-footer-links .sep { margin: 0 0.5rem; opacity: 0.4; }

.pg-map {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(155, 199, 61, 0.22);
  margin-bottom: 1.1rem;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
  aspect-ratio: 200 / 110;
}
.pg-map svg { width: 100%; height: auto; display: block; }
.pg-map iframe { width: 100%; height: 100%; display: block; border: 0; filter: grayscale(0.15) contrast(1.05); }

.pg-footer-base {
  width: min(100% - 3rem, var(--maxw));
  margin: 3rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.42);
}

/* ---------- Floating widgets ---------- */
.pg-widgets {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.pg-fw {
  position: relative; width: 56px; height: 56px;
  display: grid; place-items: center; border-radius: 50%;
  color: var(--white);
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.5);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  animation: pg-float 4s var(--ease) infinite;
}
.pg-fw svg { width: 30px; height: 30px; }
.pg-fw-wa { background: #1faf54; }
.pg-fw-mail { background: var(--green-deep); animation-delay: .6s; }
.pg-fw:hover { transform: translateY(-4px) scale(1.06); box-shadow: var(--glow-neon-lg); }
.pg-fw::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid currentColor; opacity: 0.5;
  animation: pg-pulse 2.4s ease-out infinite;
}
.pg-fw-tip {
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--green-darker); color: var(--white);
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 500;
  padding: 0.35rem 0.7rem; border-radius: 8px; white-space: nowrap;
  border: 1px solid rgba(155, 199, 61, 0.3);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.pg-fw:hover .pg-fw-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

@keyframes pg-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes pg-pulse { 0% { transform: scale(.9); opacity: .5; } 100% { transform: scale(1.35); opacity: 0; } }

/* ---------- Navigation/footer/widgets responsive ---------- */
@media (max-width: 900px) { .pg-footer-grid { grid-template-columns: 1fr; gap: 2.25rem; } }
@media (max-width: 720px) { .pg-widgets { right: 1rem; bottom: 1rem; } .pg-fw { width: 52px; height: 52px; } }

@media (prefers-reduced-motion: reduce) {
  .pg-header, .pg-drawer, .pg-overlay, .pg-fw, .pg-fw::before,
  .pg-nav a::after, .pg-btn, .pg-burger span { animation: none !important; transition-duration: .01ms !important; }
}


/* #####################################################################
   2. HOME  —  index.html
   Hero · pathway cards · breakout stats
   ##################################################################### */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

/* Real hero photo — taller than viewport so parallax never reveals an edge */
.hero-photo {
  top: -8%;
  height: 116%;
  background-color: var(--green-darker);
  /* fallback while images load */
  overflow: hidden;
}

/* Hero slideshow — stacked photos cross-fading in place */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.is-active {
  opacity: 1;
}

/* Light green filter over the photo */
.hero-tint {
  background:
    radial-gradient(70% 55% at 50% 42%, rgba(155, 199, 61, 0.16), transparent 72%),
    linear-gradient(180deg, rgba(0, 77, 38, 0.28) 0%, rgba(0, 37, 15, 0.30) 55%, rgba(0, 37, 15, 0.58) 100%);
  mix-blend-mode: multiply;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 50% at 50% 46%, transparent 40%, rgba(0, 37, 15, 0.45) 100%);
  pointer-events: none;
}

/* Floating glass card — soft frosted backing tuned to highlight the text */
.hero-card {
  width: min(100% - 2.5rem, 680px);
  text-align: center;
  padding: 3rem 2.75rem;
  border-radius: 28px;
  background: rgba(6, 38, 22, 0.14);
  backdrop-filter: blur(10px) saturate(135%);
  -webkit-backdrop-filter: blur(10px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    var(--shadow-lift),
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 0 80px rgba(155, 199, 61, 0.06);
  animation: heroFloat 7s var(--ease) infinite;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 46ch;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Pathways ---------- */
.pathways {
  position: relative;
  padding: 6.5rem 0 7rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--green-soft) 100%);
  background-size: 200% 200%;
  animation: softShift 16s ease-in-out infinite;
}

.section-title {
  color: var(--green-deep);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
}

.path-grid {
  width: min(100% - 3rem, var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  perspective: 1200px;
}

.path-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 77, 38, 0.10);
  border-radius: 24px;
  padding: 2.4rem 2rem 2.2rem;
  box-shadow: 0 18px 40px -28px rgba(0, 40, 20, 0.35);
  transform-style: preserve-3d;
  transition: transform 0.25s var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  overflow: hidden;
}

.path-card:hover {
  box-shadow: var(--shadow-lift), var(--glow-neon-lg);
  border-color: rgba(155, 199, 61, 0.6);
}

.path-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--green-deep), #06381f);
  color: var(--green-neon);
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 24px -12px rgba(0, 77, 38, 0.6);
  transform: translateZ(40px);
}

.path-icon svg {
  width: 34px;
  height: 34px;
}

.path-card h3 {
  color: var(--green-deep);
  font-size: 1.32rem;
  margin-bottom: 0.6rem;
  transform: translateZ(28px);
}

.path-card p {
  color: #3a5246;
  font-size: 0.96rem;
  margin-bottom: 1.4rem;
  transform: translateZ(18px);
}

.path-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-deep);
  transition: color var(--dur) var(--ease), letter-spacing var(--dur) var(--ease);
  transform: translateZ(24px);
  display: inline-block;
}

.path-card:hover .path-link {
  color: #2f7a1f;
  letter-spacing: 0.02em;
}

.path-card:hover .card-glow {
  opacity: 1;
}

/* ---------- Breakout stats ---------- */
.breakout {
  position: relative;
  background: var(--green-deep);
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}

.breakout-orbs {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.breakout-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.breakout-orbs span:nth-child(1) {
  width: 340px;
  height: 340px;
  top: -80px;
  left: -60px;
  background: rgba(155, 199, 61, 0.30);
  animation: orb 14s ease-in-out infinite;
}

.breakout-orbs span:nth-child(2) {
  width: 260px;
  height: 260px;
  bottom: -60px;
  right: 8%;
  background: rgba(155, 199, 61, 0.20);
  animation: orb 18s ease-in-out infinite reverse;
}

.breakout-orbs span:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 30%;
  right: -40px;
  background: rgba(0, 170, 90, 0.25);
  animation: orb 20s ease-in-out infinite;
}

.breakout-inner {
  width: min(100% - 3rem, var(--maxw));
  margin: 0 auto;
}

.breakout-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.breakout-title {
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 700;
}

.breakout-sub {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 2.2rem 1rem;
  border-radius: 22px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow-neon-lg);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--green-neon);
  line-height: 1;
  text-shadow: 0 0 24px rgba(155, 199, 61, 0.45);
}

.stat-label {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

/* ---------- Home responsive ---------- */
@media (max-width: 980px) {
  .path-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .hero-card {
    padding: 2.2rem 1.5rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }
}


/* #####################################################################
   3. FLEET  —  fleet.html
   Fleet hero · power-unit specs · trailer capabilities · on-board tech
   ##################################################################### */

.fhero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.fhero-scene { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

.fhero-photo {
  top: -8%;
  height: 116%;
  background:
    url("assent/Pine_logistics_flatbad.webp") center 45% / cover no-repeat,
    radial-gradient(80% 60% at 70% 28%, #0c5a30, transparent 70%),
    linear-gradient(180deg, #0a4a28 0%, #00250f 100%);
}
.fhero-tint {
  background:
    radial-gradient(70% 55% at 50% 42%, rgba(155, 199, 61, 0.16), transparent 72%),
    linear-gradient(180deg, rgba(0, 77, 38, 0.30) 0%, rgba(0, 37, 15, 0.34) 55%, rgba(0, 37, 15, 0.62) 100%);
  mix-blend-mode: multiply;
}
.fhero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(58% 50% at 50% 46%, transparent 38%, rgba(0, 37, 15, 0.5) 100%);
  pointer-events: none;
}

.fhero-card {
  width: min(100% - 2.5rem, 660px);
  text-align: center;
  padding: 3rem 2.75rem;
  border-radius: 28px;
  background: rgba(6, 38, 22, 0.14);
  backdrop-filter: blur(10px) saturate(135%);
  -webkit-backdrop-filter: blur(10px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    var(--shadow-lift),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 80px rgba(155, 199, 61, 0.06);
  animation: heroFloat 7s var(--ease) infinite;
}
@media (min-width: 861px) {
  .fhero-card { justify-self: start; margin-left: clamp(2rem, 7vw, 7rem); }
}

.fhero-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.fhero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 42ch;
  margin: 0 auto 2rem;
}
.fhero-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Power units ---------- */
.specs {
  background: linear-gradient(135deg, var(--white) 0%, var(--green-soft) 100%);
  background-size: 200% 200%;
  animation: softShift 16s ease-in-out infinite;
  padding: 6.5rem 0;
}

.specs-grid {
  width: min(100% - 3rem, var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Visual side */
.specs-visual {
  position: relative;
  border-radius: 26px;
  min-height: 440px;
  overflow: visible;
}
.specs-photo {
  position: absolute; inset: 0;
  border-radius: 26px;
  background:
    url("assent/pine_logistics_Built-around-the-latest-equipment.webp") center / cover no-repeat,
    linear-gradient(160deg, #0a4a28 0%, #00250f 100%);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.specs-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 70% at 60% 30%, rgba(12, 90, 48, 0.45), transparent 70%),
    linear-gradient(160deg, rgba(0, 77, 38, 0.15), rgba(0, 37, 15, 0.55));
}
.specs-chip {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--green-neon);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--glow-neon);
  animation: chipFloat 5s var(--ease) infinite;
}
.chip-a { top: 1.2rem; left: 1.2rem; }
.chip-b { top: 4.4rem; left: 1.2rem; animation-delay: 0.8s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.specs-badge {
  position: absolute;
  text-align: center;
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  box-shadow: var(--glow-neon-lg), var(--shadow-soft);
}
.specs-badge-a { right: -0.8rem; top: -0.8rem; }
.specs-badge-b { left: -0.8rem; bottom: -0.8rem; }
.specs-badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--green-neon);
  line-height: 1;
}
.specs-badge-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Copy side */
.specs-intro { color: #3a5246; margin: 0.75rem 0 1.75rem; max-width: 46ch; }

.spec-list { list-style: none; display: grid; gap: 1.25rem; }
.spec-item { display: flex; gap: 1rem; align-items: flex-start; }
.spec-icon {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--green-deep), #06381f);
  color: var(--green-neon);
  box-shadow: 0 10px 22px -12px rgba(0, 77, 38, 0.6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.spec-icon svg { width: 26px; height: 26px; }
.spec-item:hover .spec-icon { transform: translateY(-3px); box-shadow: var(--glow-neon); }
.spec-item h3 { color: var(--green-deep); font-size: 1.08rem; margin-bottom: 0.2rem; }
.spec-item p { color: #43594d; font-size: 0.92rem; }

/* ---------- Trailer capabilities ---------- */
.trailers {
  padding: 6.5rem 0 7rem;
  background:
    radial-gradient(900px 460px at 80% 0%, rgba(155, 199, 61, 0.10), transparent 60%),
    var(--green-soft);
}
.trailer-grid {
  width: min(100% - 3rem, var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  perspective: 1200px;
}

/* Light glass for cards on a light background */
.glass-soft {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(0, 77, 38, 0.12);
}
.trailer-card {
  position: relative;
  border-radius: 24px;
  padding: 2.4rem 2rem;
  box-shadow: 0 18px 40px -28px rgba(0, 40, 20, 0.4);
  transform-style: preserve-3d;
  transition: transform 0.25s var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  overflow: hidden;
}
.trailer-card:hover {
  box-shadow: var(--shadow-lift), var(--glow-neon-lg);
  border-color: rgba(155, 199, 61, 0.6);
}
.trailer-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--green-deep), #06381f);
  color: var(--green-neon);
  margin-bottom: 1.4rem;
  box-shadow: 0 12px 24px -12px rgba(0, 77, 38, 0.6);
  transform: translateZ(40px);
}
.trailer-icon svg { width: 36px; height: 36px; }
.trailer-card h3 { color: var(--green-deep); font-size: 1.28rem; margin-bottom: 0.5rem; transform: translateZ(28px); }
.trailer-card p { color: #3a5246; font-size: 0.95rem; transform: translateZ(18px); }
.trailer-card:hover .card-glow { opacity: 1; }

/* ---------- On-board tech ---------- */
.tech {
  position: relative;
  background: var(--green-deep);
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}
.tech-orbs { position: absolute; inset: 0; z-index: -1; }
.tech-orbs span { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.tech-orbs span:nth-child(1) { width: 320px; height: 320px; top: -70px; left: -50px; background: rgba(155, 199, 61, 0.28); animation: orb 15s ease-in-out infinite; }
.tech-orbs span:nth-child(2) { width: 260px; height: 260px; bottom: -60px; right: 6%; background: rgba(155, 199, 61, 0.18); animation: orb 19s ease-in-out infinite reverse; }

.tech-inner { width: min(100% - 3rem, var(--maxw)); margin: 0 auto; }
.tech-head { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.tech-title { color: var(--white); font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 700; }
.tech-sub { color: rgba(255, 255, 255, 0.72); margin-top: 1rem; font-size: 1.05rem; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.tech-card {
  position: relative;
  padding: 2.2rem 1.8rem;
  border-radius: 20px;
  background: rgba(7, 40, 24, 0.5);
  border: 1px solid rgba(155, 199, 61, 0.35);
  box-shadow: inset 0 0 0 1px rgba(155, 199, 61, 0.05);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.tech-card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(155, 199, 61, 0.7), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.6;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.tech-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-neon);
  box-shadow: var(--glow-neon-lg);
}
.tech-card:hover::before { opacity: 1; }
.tech-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(155, 199, 61, 0.12);
  color: var(--green-neon);
  margin-bottom: 1.25rem;
  box-shadow: var(--glow-neon);
}
.tech-icon svg { width: 30px; height: 30px; }
.tech-card h3 { color: var(--white); font-size: 1.12rem; margin-bottom: 0.5rem; }
.tech-card p { color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }

/* ---------- Fleet responsive ---------- */
@media (max-width: 980px) {
  .specs-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .specs-visual { min-height: 340px; }
  .trailer-grid { grid-template-columns: 1fr; max-width: 460px; }
  .tech-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .fhero-card { padding: 2.2rem 1.5rem; }
  .specs-badge { right: 0.5rem; bottom: 0.5rem; }
}


/* #####################################################################
   4. OWNER-OPERATORS  —  owner.html
   Recruitment hero · advantages · back-office support · elite standard
   ##################################################################### */

.ohero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.ohero-scene { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.ohero-photo {
  top: -8%;
  height: 116%;
  background:
    url("assent/Pine_logistics_owner_driver.webp") center 35% / cover no-repeat,
    radial-gradient(75% 60% at 30% 25%, #0c5a30, transparent 70%),
    linear-gradient(180deg, #0a4a28 0%, #00250f 100%);
}
.ohero-tint {
  background:
    radial-gradient(70% 55% at 50% 42%, rgba(155, 199, 61, 0.16), transparent 72%),
    linear-gradient(180deg, rgba(0, 77, 38, 0.30) 0%, rgba(0, 37, 15, 0.34) 55%, rgba(0, 37, 15, 0.62) 100%);
  mix-blend-mode: multiply;
}
.ohero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(58% 50% at 50% 46%, transparent 38%, rgba(0, 37, 15, 0.5) 100%);
  pointer-events: none;
}

.ohero-card {
  width: min(100% - 2.5rem, 660px);
  text-align: center;
  padding: 3rem 2.75rem;
  border-radius: 28px;
  background: rgba(6, 38, 22, 0.14);
  backdrop-filter: blur(10px) saturate(135%);
  -webkit-backdrop-filter: blur(10px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    var(--shadow-lift),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 80px rgba(155, 199, 61, 0.06);
  animation: heroFloat 7s var(--ease) infinite;
}

.ohero-title {
  color: var(--white);
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.ohero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 44ch;
  margin: 0 auto 2rem;
}
.ohero-actions { display: flex; justify-content: center; }

/* ---------- Advantages ---------- */
.adv {
  padding: 6.5rem 0 7rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--green-soft) 100%);
  background-size: 200% 200%;
  animation: softShift 16s ease-in-out infinite;
}

.adv-grid {
  width: min(100% - 3rem, var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  perspective: 1200px;
}
.adv-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 77, 38, 0.10);
  border-radius: 24px;
  padding: 2.4rem 2rem;
  box-shadow: 0 18px 40px -28px rgba(0, 40, 20, 0.35);
  transform-style: preserve-3d;
  transition: transform 0.25s var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  overflow: hidden;
}
.adv-card:hover {
  box-shadow: var(--shadow-lift), var(--glow-neon-lg);
  border-color: rgba(155, 199, 61, 0.6);
}
.adv-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--green-deep), #06381f);
  color: var(--green-neon);
  margin-bottom: 1.4rem;
  box-shadow: 0 12px 24px -12px rgba(0, 77, 38, 0.6);
  transform: translateZ(40px);
}
.adv-icon svg { width: 34px; height: 34px; }
.adv-card h3 { color: var(--green-deep); font-size: 1.28rem; margin-bottom: 0.55rem; transform: translateZ(28px); }
.adv-card p { color: #3a5246; font-size: 0.96rem; transform: translateZ(18px); }
.adv-card:hover .card-glow { opacity: 1; }

/* ---------- Back-office support ---------- */
.support {
  position: relative;
  background: var(--green-deep);
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}
.support-orbs { position: absolute; inset: 0; z-index: -1; }
.support-orbs span { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.support-orbs span:nth-child(1) { width: 320px; height: 320px; top: -80px; right: -40px; background: rgba(155, 199, 61, 0.26); animation: orb 15s ease-in-out infinite; }
.support-orbs span:nth-child(2) { width: 240px; height: 240px; bottom: -60px; left: 8%; background: rgba(155, 199, 61, 0.16); animation: orb 19s ease-in-out infinite reverse; }

.support-grid {
  width: min(100% - 3rem, var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.support-title { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; }
.support-text { color: rgba(255, 255, 255, 0.74); margin: 1rem 0 1.75rem; max-width: 46ch; }

.support-list { list-style: none; display: grid; gap: 1.1rem; }
.support-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  border-radius: 18px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.support-item:hover { transform: translateX(6px); box-shadow: var(--glow-neon); border-color: var(--green-neon); }
.support-item h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 0.2rem; }
.support-item p { color: rgba(255, 255, 255, 0.68); font-size: 0.9rem; }

/* Neon glowing checkmark */
.check {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--green-neon);
  border: 2px solid var(--green-neon);
  box-shadow: var(--glow-neon), inset 0 0 10px rgba(155, 199, 61, 0.25);
}
.check svg { width: 20px; height: 20px; }

/* ---------- Elite standard ---------- */
.elite {
  background: linear-gradient(180deg, var(--green-soft) 0%, var(--white) 100%);
  padding: 6.5rem 0 7rem;
}
.elite-inner { width: min(100% - 3rem, 880px); margin: 0 auto; text-align: center; }
.elite-head { margin-bottom: 3rem; }
.elite-text { color: #3a5246; font-size: 1.1rem; margin-top: 1rem; max-width: 52ch; margin-inline: auto; }

.elite-checklist {
  list-style: none;
  display: grid;
  gap: 1rem;
  text-align: left;
  margin-bottom: 3rem;
}
.elite-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(0, 77, 38, 0.10);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 14px 32px -26px rgba(0, 40, 20, 0.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.elite-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(155, 199, 61, 0.5); }
.elite-item h3 { color: var(--green-deep); font-size: 1.1rem; margin-bottom: 0.15rem; }
.elite-item p { color: #43594d; font-size: 0.92rem; }

.elite-cta { display: grid; place-items: center; gap: 0.9rem; }
.elite-cta-note { color: #6a7d72; font-size: 0.85rem; }

/* ---------- Owner-operators responsive ---------- */
@media (max-width: 980px) {
  .adv-grid { grid-template-columns: 1fr; max-width: 460px; }
  .support-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 520px) {
  .ohero-card { padding: 2.2rem 1.5rem; }
  .support-item, .elite-item { padding: 1.1rem 1.2rem; }
}


/* #####################################################################
   5. COMPANY DRIVERS  —  drivers.html
   Hero · compensation & benefits · workspace · eligibility
   ##################################################################### */

.dhero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.dhero-scene { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.dhero-photo {
  top: -8%;
  height: 116%;
  background:
    url("assent/Pine_logistics_drive.webp") center 40% / cover no-repeat,
    radial-gradient(75% 60% at 60% 25%, #1b7d44, transparent 70%),
    linear-gradient(180deg, #0c5a30 0%, #00250f 100%);
}
.dhero-tint {
  background:
    radial-gradient(70% 55% at 50% 42%, rgba(155, 199, 61, 0.14), transparent 72%),
    linear-gradient(180deg, rgba(0, 77, 38, 0.26) 0%, rgba(0, 37, 15, 0.30) 55%, rgba(0, 37, 15, 0.58) 100%);
  mix-blend-mode: multiply;
}
.dhero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(58% 50% at 50% 46%, transparent 38%, rgba(0, 37, 15, 0.48) 100%);
  pointer-events: none;
}

.dhero-card {
  width: min(100% - 2.5rem, 680px);
  text-align: center;
  padding: 3rem 2.75rem;
  border-radius: 28px;
  background: rgba(6, 38, 22, 0.14);
  backdrop-filter: blur(10px) saturate(135%);
  -webkit-backdrop-filter: blur(10px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    var(--shadow-lift),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 80px rgba(155, 199, 61, 0.06);
  animation: heroFloat 7s var(--ease) infinite;
}

.dhero-title {
  color: var(--white);
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.dhero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 48ch;
  margin: 0 auto 2rem;
}
.dhero-actions { display: flex; justify-content: center; }

/* ---------- Compensation & benefits (4-col) ---------- */
.comp {
  padding: 6.5rem 0 7rem;
  background: linear-gradient(135deg, var(--white) 0%, #f4f8f5 100%);
}
.comp-grid {
  width: min(100% - 3rem, var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  perspective: 1200px;
}
.comp-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 77, 38, 0.10);
  border-radius: 22px;
  padding: 2.1rem 1.6rem;
  box-shadow: 0 18px 40px -28px rgba(0, 40, 20, 0.35);
  transform-style: preserve-3d;
  transition: transform 0.25s var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  overflow: hidden;
}
.comp-card:hover {
  box-shadow: var(--shadow-lift), var(--glow-neon-lg);
  border-color: rgba(155, 199, 61, 0.6);
}
.comp-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--green-deep), #06381f);
  color: var(--green-neon);
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 24px -12px rgba(0, 77, 38, 0.6);
  transform: translateZ(40px);
}
.comp-icon svg { width: 32px; height: 32px; }
.comp-card h3 { color: var(--green-deep); font-size: 1.14rem; margin-bottom: 0.5rem; transform: translateZ(28px); }
.comp-card p { color: #3a5246; font-size: 0.9rem; transform: translateZ(18px); }
.comp-card:hover .card-glow { opacity: 1; }

/* ---------- Workspace (dark) ---------- */
.workspace {
  position: relative;
  background: var(--green-deep);
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  isolation: isolate;
}
.workspace-orbs { position: absolute; inset: 0; z-index: -1; }
.workspace-orbs span { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.workspace-orbs span:nth-child(1) { width: 320px; height: 320px; top: -80px; left: -40px; background: rgba(155, 199, 61, 0.26); animation: orb 15s ease-in-out infinite; }
.workspace-orbs span:nth-child(2) { width: 240px; height: 240px; bottom: -60px; right: 8%; background: rgba(155, 199, 61, 0.16); animation: orb 19s ease-in-out infinite reverse; }

.workspace-grid {
  width: min(100% - 3rem, var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left visual */
.workspace-visual { position: relative; min-height: 420px; }
.workspace-photo {
  position: absolute; inset: 0;
  border-radius: 26px;
  background:
    url("assent/Pine_logistics_drives_as.webp") center / cover no-repeat,
    linear-gradient(155deg, #0a4a28 0%, #002a14 100%);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.workspace-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(65% 65% at 40% 30%, rgba(12, 90, 48, 0.4), transparent 70%),
    linear-gradient(160deg, rgba(0, 77, 38, 0.1), rgba(0, 37, 15, 0.5));
}
.ws-chip {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--green-neon);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--glow-neon);
  animation: chipFloat 5s var(--ease) infinite;
}
.chip-a { top: 1.2rem; left: 1.2rem; }
.chip-b { top: 4.4rem; left: 1.2rem; animation-delay: 0.8s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.ws-badge {
  position: absolute;
  right: -0.8rem; bottom: -0.8rem;
  text-align: center;
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  box-shadow: var(--glow-neon-lg), var(--shadow-soft);
}
.ws-badge-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--green-neon); line-height: 1; }
.ws-badge-label { display: block; margin-top: 0.25rem; font-size: 0.74rem; color: rgba(255, 255, 255, 0.82); }

/* Right list */
.workspace-title { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; }
.workspace-text { color: rgba(255, 255, 255, 0.74); margin: 1rem 0 1.75rem; max-width: 48ch; }
.ws-list { list-style: none; display: grid; gap: 1rem; }
.ws-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: rgba(7, 40, 24, 0.45);
  border: 1px solid rgba(155, 199, 61, 0.2);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.ws-item:hover { transform: translateX(6px); box-shadow: var(--glow-neon); border-color: var(--green-neon); }
.ws-item p { color: rgba(255, 255, 255, 0.88); font-size: 0.95rem; }

/* Neon glowing checkmark (dark context) */
.check {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--green-neon);
  border: 2px solid var(--green-neon);
  box-shadow: var(--glow-neon), inset 0 0 10px rgba(155, 199, 61, 0.25);
}
.check svg { width: 19px; height: 19px; }

/* ---------- Eligibility ---------- */
.elig {
  background: linear-gradient(180deg, var(--green-soft) 0%, var(--white) 100%);
  padding: 6.5rem 0 7rem;
}
.elig-inner { width: min(100% - 3rem, 880px); margin: 0 auto; text-align: center; }
.elig-head { margin-bottom: 3rem; }
.elig-text { color: #3a5246; font-size: 1.1rem; margin-top: 1rem; max-width: 54ch; margin-inline: auto; }

.elig-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin-bottom: 3rem;
}
.elig-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(0, 77, 38, 0.10);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 14px 32px -26px rgba(0, 40, 20, 0.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.elig-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(155, 199, 61, 0.5); }
.elig-item p { color: var(--green-deep); font-weight: 500; font-size: 0.96rem; }

.elig-cta { display: grid; place-items: center; gap: 0.9rem; }
.elig-cta-note { color: #6a7d72; font-size: 0.85rem; }

/* ---------- Company drivers responsive ---------- */
@media (max-width: 1080px) {
  .comp-grid { grid-template-columns: repeat(2, 1fr); max-width: 620px; }
}
@media (max-width: 980px) {
  .workspace-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .workspace-visual { min-height: 320px; }
}
@media (max-width: 620px) {
  .comp-grid { grid-template-columns: 1fr; max-width: 380px; }
  .elig-checklist { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .dhero-card { padding: 2.2rem 1.5rem; }
  .ws-badge { right: 0.5rem; bottom: 0.5rem; }
}


/* #####################################################################
   6. LEGAL  —  privacy.html · terms.html · compliance.html
   Shared reading-column layout for the text-heavy pages
   ##################################################################### */

/* Page background — soft green */
.legal-page {
  background:
    radial-gradient(900px 420px at 80% -5%, rgba(155, 199, 61, 0.10), transparent 60%),
    var(--green-soft);
  padding-bottom: 5rem;
}

/* ---------- Compact deep-green hero ---------- */
.legal-hero {
  position: relative;
  background:
    radial-gradient(700px 300px at 75% 0%, rgba(155, 199, 61, 0.16), transparent 65%),
    linear-gradient(150deg, var(--green-deep) 0%, var(--green-darker) 100%);
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  overflow: hidden;
  isolation: isolate;
}
.legal-hero::after {
  content: "";
  position: absolute; inset: auto 0 -1px 0;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--green-soft));
}
.legal-hero-inner {
  width: min(100% - 3rem, 800px);
  margin: 0 auto;
}
.legal-hero .eyebrow { color: var(--green-neon); }
.legal-h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.legal-breadcrumb {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.legal-breadcrumb a { color: rgba(255, 255, 255, 0.78); transition: color var(--dur) var(--ease); }
.legal-breadcrumb a:hover { color: var(--green-neon); }
.legal-breadcrumb span { margin: 0 0.45rem; opacity: 0.5; }

/* ---------- Reading container ---------- */
.legal-wrap {
  max-width: 800px;       /* legal text never spans full width */
  margin: -2.5rem auto 0; /* float the card up over the hero seam */
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* ---------- Glassmorphism card + legal typography ---------- */
.legal-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  color: #333333;
  line-height: 1.8;
}
.legal-meta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--green-soft);
  border: 1px solid rgba(0, 77, 38, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.legal-intro {
  font-size: 1.05rem;
  color: #2b2b2b;
}

.legal-card h2 {
  font-family: var(--font-body);   /* keep legal headings in the readable body face */
  color: var(--green-deep);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 77, 38, 0.10);
  /* Keep the heading clear of the fixed header when a TOC link jumps here. */
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}
.legal-card h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 2rem; }

.legal-card h3 {
  font-family: var(--font-body);
  color: var(--green-deep);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.4rem;
}
.legal-card p { margin-bottom: 1rem; }
.legal-card strong { color: #1a1a1a; font-weight: 600; }
.legal-card a { color: #2f7a1f; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-card a:hover { color: var(--green-deep); }

/* Lists */
.legal-card ul { list-style: none; margin: 0 0 1.25rem; display: grid; gap: 0.6rem; }
.legal-card ul li {
  position: relative;
  padding-left: 1.6rem;
}
.legal-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--green-neon);
  box-shadow: 0 0 8px rgba(155, 199, 61, 0.7);
}

/* Callout for the important consent / regulatory clauses */
.legal-callout {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--green-soft);
  border-left: 4px solid var(--green-neon);
  border-radius: 0 10px 10px 0;
  color: #2b2b2b;
}
.legal-callout strong { color: var(--green-deep); }

/* "Do not sell" emphasis line */
.legal-flag {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: rgba(0, 77, 38, 0.04);
  border: 1px solid rgba(0, 77, 38, 0.12);
  border-radius: 10px;
  font-weight: 600;
  color: var(--green-deep);
}
.legal-flag svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--green-deep); margin-top: 0.2rem; }

/* Footer note inside the card */
.legal-contact {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 77, 38, 0.03);
  border: 1px solid rgba(0, 77, 38, 0.10);
  border-radius: 10px;
  font-size: 0.95rem;
}
.legal-contact h3 { margin-top: 0; }
.legal-contact p:last-child { margin-bottom: 0; }

/* Effective-date / last-updated pills row */
.legal-meta-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.legal-meta-row .legal-meta { margin-bottom: 0; }

/* Sidebar + reading column, with a mirrored empty column on the right so
   the text column lands dead-center on screen — the sidebar rides in the
   left margin instead of pushing the reading column off-center. */
.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 210px;
  gap: 1.5rem;
  align-items: start;
}

/* Table of contents quick-jump — sticks in place while the article scrolls */
.legal-toc {
  margin: 0;
  padding: 1.5rem;
  background: var(--green-soft);
  border: 1px solid rgba(0, 77, 38, 0.10);
  border-radius: 14px;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  max-height: calc(100vh - var(--header-h) - 4rem);
  overflow-y: auto;
}
.legal-toc-title {
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.legal-toc ol {
  list-style: none;
  counter-reset: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.1rem;
}
.legal-toc a {
  display: block;
  padding: 0.4rem 0;
  color: #2b3a30;
  font-weight: 500;
  font-size: 0.87rem;
  line-height: 1.35;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .3s ease, border-color .3s ease;
}
.legal-toc a:hover { color: var(--green-deep); border-color: rgba(0, 77, 38, 0.25); }

/* Below tablet width there's no room for a side rail — the TOC drops back
   into the normal reading flow as a plain (non-sticky) two-column block. */
@media (max-width: 1024px) {
  .legal-layout { grid-template-columns: 1fr; gap: 0; }
  .legal-toc {
    position: static;
    max-height: none;
    overflow: visible;
    margin: 2rem 0 3rem;
  }
  .legal-toc ol { grid-template-columns: repeat(2, 1fr); gap: 0.3rem 2rem; }
}
@media (max-width: 700px) {
  .legal-toc ol { grid-template-columns: 1fr; }
}

/* Data table (categories of personal information) */
.legal-table-wrap { overflow-x: auto; margin: 1.5rem 0; -webkit-overflow-scrolling: touch; }
.legal-card table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 640px; }
.legal-card th, .legal-card td {
  text-align: left;
  vertical-align: top;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 77, 38, 0.12);
}
.legal-card th {
  background: var(--green-soft);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight: 700;
  white-space: nowrap;
}
.legal-card tbody tr:nth-child(even) { background: rgba(0, 77, 38, 0.025); }

.legal-copyright { margin-top: 2.5rem; font-size: 0.8rem; color: #8a978d; }

/* Pull-quote (About page closing line, etc.) */
.legal-quote {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--green-neon);
  color: #3a5246;
  font-size: 1.02rem;
}

/* Core-values grid (About page) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.value-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--green-soft);
  border: 1px solid rgba(0, 77, 38, 0.10);
  border-radius: 14px;
}
.value-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--green-neon);
  -webkit-text-stroke: 1px var(--green-deep);
  margin-bottom: 0.4rem;
}
.value-card h4 {
  font-family: var(--font-body);
  color: var(--green-deep);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.value-card p { margin-bottom: 0; font-size: 0.92rem; }

@media (max-width: 700px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* ---------- Legal responsive ---------- */
@media (max-width: 600px) {
  .legal-card { padding: 1.75rem 1.35rem; }
  .legal-wrap { padding: 0 1rem; }
}

/* #####################################################################
   7. MOBILE HERO CARDS
   Shared override for the home/fleet/owner/drivers hero cards — no
   glass box on phones/small tablets (a translucent bordered box over
   a busy photo read as a visual glitch at this size). A soft, edge-
   less dark vignette sits behind the text instead of a bordered card,
   and the white text itself carries a tight, high-contrast shadow so
   it stays readable at a glance no matter how bright the photo is.
   ##################################################################### */
@media (max-width: 860px) {
  .hero-card, .fhero-card, .ohero-card, .dhero-card {
    background: radial-gradient(120% 100% at 50% 40%, rgba(0, 10, 5, 0.6), rgba(0, 10, 5, 0.28) 55%, transparent 82%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    animation: none;
  }
  .hero-title, .fhero-title, .ohero-title, .dhero-title,
  .hero-sub, .fhero-sub, .ohero-sub, .dhero-sub {
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 1),
      0 0 3px rgba(0, 0, 0, 0.9),
      0 3px 10px rgba(0, 0, 0, 0.85),
      0 8px 30px rgba(0, 0, 0, 0.6);
  }
  /* The gradient accent word blends into busy photos at this size —
     drop the fill-clip gradient and read it as plain white instead. */
  .hero-title .grad-text, .fhero-title .grad-text,
  .ohero-title .grad-text, .dhero-title .grad-text {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--white);
  }
  .hero-card .eyebrow, .fhero-card .eyebrow, .ohero-card .eyebrow, .dhero-card .eyebrow {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 1), 0 0 3px rgba(0, 0, 0, 0.9), 0 3px 10px rgba(0, 0, 0, 0.75);
  }
}

/* #####################################################################
   8. LIGHT READING PAGE  —  shared by privacy.html and about.html
   Light, all-white page with two soft green gradient orbs drifting in
   the margins. The reading card stays a fully opaque mask so the
   moving color never reaches — let alone competes with — the text.
   Add class="legal-page reading-page" to any long-form article page
   to opt into this look.
   ##################################################################### */
.reading-page.legal-page {
  background: var(--white);
}

/* The header's white logo/nav assume a dark backdrop (hero photo or the
   green hero band); this page is light top-to-bottom, so keep the header's
   dark glass backing on at all times instead of only after scrolling. */
.reading-page .pg-header {
  background: rgba(0, 37, 15, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(155, 199, 61, 0.18);
}

.reading-orb {
  position: fixed;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
  animation: readingOrbDrift 20s var(--ease) infinite;
}
.reading-orb-a {
  top: 6%;
  left: -200px;
  background: radial-gradient(circle, var(--green-neon), transparent 70%);
}
.reading-orb-b {
  bottom: 8%;
  right: -200px;
  background: radial-gradient(circle, #d6f08a, transparent 70%);
  animation-delay: -10s;
}
@keyframes readingOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 60px) scale(1.1); }
}

.reading-page .legal-hero {
  background: none;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
}
.reading-page .legal-hero::after { display: none; }
.reading-page .legal-hero .eyebrow { color: var(--green-deep); }
.reading-page .legal-h1 { color: var(--ink); }
.reading-page .legal-breadcrumb { color: #5a6a5f; }
.reading-page .legal-breadcrumb a { color: #3a5246; }
.reading-page .legal-breadcrumb a:hover { color: var(--green-deep); }

.reading-page .legal-hero-inner {
  width: 75%;
  max-width: none;
}
/* Push the title in by the same width as the sidebar + gap so it lines up
   with the article's centered text column, not the sidebar's edge. */
@media (min-width: 1025px) {
  .reading-page .legal-hero-inner { padding-left: calc(210px + 1.5rem); }
}

.reading-page .legal-wrap {
  width: 75%;
  max-width: none;
  margin: 2rem auto 0;
  padding: 0;
}

/* No boxed card anymore — text reads straight off the page background. */
.reading-page .legal-card {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

@media (max-width: 1024px) {
  .reading-page .legal-hero-inner,
  .reading-page .legal-wrap {
    width: 90%;
  }
}

@media (max-width: 720px) {
  .privacy-orb { width: 320px; height: 320px; filter: blur(60px); }
}
