:root {
  --blue-900: #061a33;
  --blue-800: #082f5e;
  --blue-700: #0b4f9c;
  --blue-600: #0f63c4;
  --blue-500: #1e78d2;
  --blue-050: #eaf2fc;
  --green-600: #1fa05a;
  --green-500: #2bae66;
  --teal-500: #15b3c4;
  --ink: #0e1b2a;
  --muted: #5b6b7b;
  --line: #e3e9f0;
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(8, 47, 94, 0.12);
  --shadow-lg: 0 24px 60px rgba(6, 26, 51, 0.28);
  --maxw: 1160px;
  --peacock: linear-gradient(90deg, var(--blue-700), var(--teal-500), var(--green-500));
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-head: "Saira", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-500); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
img { max-width: 100%; height: auto; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.01em; }

/* Peacock accent line */
.accent-line { height: 3px; background: var(--peacock); }

/* Header — deep blue, flows straight into the hero */
.site-header { position: sticky; top: 0; z-index: 50; background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%); border-bottom: 1px solid rgba(255,255,255,0.08); box-shadow: 0 6px 24px rgba(6, 26, 51, 0.28); }
.header-inner { display: flex; align-items: center; gap: 16px; min-height: 64px; }
.logo { display: flex; align-items: center; }
.logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: 0.96; transition: opacity .15s ease; }
.logo:hover img { opacity: 1; }
.nav { display: flex; align-items: center; gap: 3px; margin-left: auto; font-family: var(--font-head); }
.nav a { color: rgba(255,255,255,0.82); padding: 8px 15px; border-radius: 999px; font-weight: 600; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.04em; transition: background .15s ease, color .15s ease; }
.nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav a.active { color: #fff; background: rgba(255,255,255,0.14); }
.lang-toggle { display: inline-flex; align-items: center; gap: 7px; margin-left: 8px; padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); }
.lang-toggle .globe { width: 15px; height: 15px; flex: none; }
.lang-toggle:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); color: #fff; }

.btn { display: inline-block; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 13px 26px; border-radius: 10px; border: 0; cursor: pointer; font-size: 0.92rem; transition: transform .08s ease, box-shadow .25s ease, background .2s ease; }
.btn-quote { background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); color: #fff; box-shadow: 0 8px 22px rgba(15, 99, 196, 0.4); }
.btn-quote:hover { color: #fff; box-shadow: 0 12px 30px rgba(15, 99, 196, 0.55); transform: translateY(-2px); }
.btn-quote:active { transform: translateY(0); }
.btn-green { background: linear-gradient(135deg, var(--green-500), var(--green-600)); color: #fff; box-shadow: 0 8px 22px rgba(31, 160, 90, 0.4); }
.btn-green:hover { color: #fff; transform: translateY(-2px); }
.btn-outline { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.6); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,0.18); color: #fff; border-color: #fff; }
.btn-outline-blue { background: #fff; color: var(--blue-700); border: 1.5px solid var(--blue-700); }
.btn-outline-blue:hover { background: var(--blue-050); }

.nav-toggle { display: none; margin-left: auto; background: none; border: 0; font-size: 1.7rem; color: #fff; cursor: pointer; }

/* HERO — full-bleed truck on highway */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6,26,51,0.78) 0%, rgba(8,47,94,0.62) 45%, rgba(6,26,51,0.92) 100%),
    url("/truck-hero.jpg") center 35% / cover no-repeat;
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--peacock); }
.hero .container { position: relative; z-index: 2; max-width: 880px; animation: rise .7s ease both; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.02;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.55), 0 0 1px rgba(255,255,255,0.4);
}
.hero h1 .accent { background: var(--peacock); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { font-family: var(--font-head); font-size: clamp(1.1rem, 2.4vw, 1.45rem); font-weight: 500; color: rgba(255,255,255,0.92); max-width: 680px; margin: 0 auto 32px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-sub { min-height: auto !important; }

@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* Inner page hero (no truck) */
.subhero { position: relative; text-align: center; color: #fff; padding: 86px 0 70px; background: linear-gradient(135deg, var(--blue-800), var(--blue-700) 60%, var(--teal-500)); }
.subhero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--peacock); }
.subhero h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 12px; text-transform: uppercase; text-shadow: 0 3px 18px rgba(0,0,0,0.35); }
.subhero p.sub { font-family: var(--font-head); font-size: 1.15rem; color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto; }
.subhero .crumb { margin: 0 0 14px; }
.subhero .crumb a { color: rgba(255,255,255,0.85); font-family: var(--font-head); }
.subhero .crumb a:hover { color: #fff; }

/* Sections */
section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
h2.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 0 0 16px; text-transform: uppercase; display: inline-block; position: relative; }
h2.section-title::after { content: ""; display: block; width: 64px; height: 4px; margin: 14px auto 0; background: var(--peacock); border-radius: 4px; }
.section-lead { color: var(--muted); font-size: 1.1rem; margin: 0 auto; max-width: 680px; }

/* Why — centered, dynamic cards */
.why-bullets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.why-bullets .why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .25s ease; }
.why-bullets .why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-bullets .ico { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 14px; background: var(--peacock); display: flex; align-items: center; justify-content: center; }
.why-bullets .ico svg { width: 26px; height: 26px; stroke: #fff; }
.why-bullets h3 { font-family: var(--font-head); font-size: 1.12rem; margin: 0; text-transform: uppercase; letter-spacing: 0.02em; }

/* Cards grid */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: box-shadow .25s ease, transform .15s ease, border-color .2s ease; position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--peacock); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card h3 { font-family: var(--font-head); margin: 0 0 8px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.02em; }
.card p { margin: 0; color: var(--muted); }

/* Industries chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip { font-family: var(--font-head); background: var(--blue-050); color: var(--blue-700); font-weight: 600; padding: 11px 20px; border-radius: 999px; border: 1px solid #d7e6f8; text-transform: uppercase; letter-spacing: 0.02em; font-size: 0.9rem; transition: transform .12s ease, box-shadow .2s ease; }
.chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.chips-note { margin-top: 22px; color: var(--muted); text-align: center; }

/* Meet the Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; text-align: center; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .25s ease, border-color .2s ease; position: relative; overflow: hidden; }
.team-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--peacock); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-card:hover::before { transform: scaleX(1); }
.team-avatar { width: 86px; height: 86px; margin: 0 auto 16px; border-radius: 50%; background: var(--peacock); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 2.3rem; line-height: 1; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(15, 99, 196, 0.35); }
.team-name { font-family: var(--font-head); font-size: 1.18rem; margin: 0 0 4px; text-transform: uppercase; letter-spacing: 0.02em; }
.team-role { font-family: var(--font-head); margin: 0 0 14px; color: var(--blue-700); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.team-bio { margin: 0; color: var(--muted); font-size: 0.96rem; line-height: 1.6; }

/* Tabs (Truckers) */
.tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn { font-family: var(--font-head); background: #fff; border: 1.5px solid var(--line); padding: 12px 24px; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); cursor: pointer; border-radius: 999px; transition: all .18s ease; }
.tab-btn:hover { border-color: var(--blue-500); color: var(--blue-700); }
.tab-btn.active { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); box-shadow: var(--shadow); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: rise .4s ease both; }
.link-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; list-style: none; padding: 0; margin: 0; max-width: 880px; margin-inline: auto; }
.link-list a, .link-list span { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; font-family: var(--font-head); font-weight: 600; color: var(--ink); transition: all .18s ease; }
.link-list a::before, .link-list span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); flex: 0 0 8px; }
.link-list a:hover { border-color: var(--blue-500); color: var(--blue-700); background: var(--blue-050); transform: translateX(4px); }

/* Article / prose */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 36px; font-size: 1.55rem; text-transform: none; }
.prose h3 { margin-top: 24px; font-size: 1.25rem; font-family: var(--font-head); }
.prose p { margin: 15px 0; }
.prose ul, .prose ol { margin: 15px 0; padding-left: 24px; }
.prose li { margin: 7px 0; }
.prose table { border-collapse: collapse; width: 100%; margin: 18px 0; }
.prose th, .prose td { border: 1px solid var(--line); padding: 9px 13px; text-align: left; }
.prose th { background: var(--blue-050); font-family: var(--font-head); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 26px 0; }
.article-title { text-align: center; }

/* Resources list */
.res-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.res-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: box-shadow .25s ease, transform .15s ease; background: #fff; position: relative; overflow: hidden; }
.res-item::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--peacock); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.res-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.res-item:hover::before { transform: scaleX(1); }
.res-item h3 { font-family: var(--font-head); margin: 0 0 8px; font-size: 1.15rem; text-transform: none; }
.res-item p { color: var(--muted); margin: 0 0 16px; font-size: 0.96rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 980px; margin: 0 auto; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.contact-card .row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-card .row:last-child { border-bottom: 0; }
.contact-card .label { font-family: var(--font-head); font-weight: 700; min-width: 96px; color: var(--blue-700); text-transform: uppercase; letter-spacing: 0.02em; font-size: 0.9rem; }
.map-embed { width: 100%; min-height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--blue-900), var(--blue-700)); color: #fff; border-radius: 20px; padding: 52px 40px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--peacock); }
.cta-band h2 { margin: 0 0 12px; color: #fff; text-transform: uppercase; }
.cta-band p { margin: 0 auto 24px; color: rgba(255,255,255,0.86); max-width: 620px; }

/* Footer */
.site-footer { background: var(--blue-900); color: #aebfd2; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.site-footer h4 { font-family: var(--font-head); color: #fff; margin: 0 0 16px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.site-footer a { color: #aebfd2; display: block; padding: 5px 0; }
.site-footer a:hover { color: #fff; }
.footer-partner { color: #aebfd2; display: block; padding: 5px 0; }
.footer-logo { height: 42px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 32px; padding-top: 20px; font-size: 0.85rem; color: #8499b3; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-family: var(--font-head); }

@media (max-width: 880px) {
  .nav { position: fixed; inset: 64px 0 auto 0; background: var(--blue-800); flex-direction: column; align-items: stretch; gap: 2px; padding: 12px 18px 22px; border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow); display: none; margin-left: 0; }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; }
  .nav .lang-toggle { margin-top: 10px; margin-left: 0; justify-content: center; }
  .nav-toggle { display: block; }
  .why-bullets, .grid-3, .grid-2, .res-list, .contact-grid, .link-list, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .hero { min-height: 78vh; }
}
