:root {
  --navy-deep: #0D2A52;
  --navy-dark: #071c3a;
  --navy-black: #000107;
  --orange: #F39C12;
  --white: #FFFFFF;
  --surface-light: #F3F5F8;
  --text: #1b1c1c;
  --text-muted: #44474e;
  --outline: #c5c6ce;
  --radius: 0.75rem;
  --shadow-sm: 0 1px 2px rgba(7, 28, 58, 0.06);
  --shadow-md: 0 6px 20px rgba(7, 28, 58, 0.08);
  --shadow-lg: 0 20px 50px rgba(7, 28, 58, 0.16);
  --container-max: 1200px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text-muted);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--navy-deep);
}
h1 { font-size: clamp(2.1rem, 5vw, 3rem); line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2rem); line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { line-height: 1.7; margin: 0 0 16px; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 10px;
}
.motion-streak {
  position: relative;
  padding-bottom: 16px;
  display: inline-block;
}
.motion-streak::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: rgba(7, 28, 58, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-header .brand img { height: 40px; display: block; }
.site-nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.site-nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-nav a:hover, .site-nav a.active {
  border-bottom-color: var(--orange);
  color: var(--orange);
}
.site-header .btn { padding: 10px 22px; font-size: 0.88rem; }
@media (max-width: 760px) {
  .site-header { flex-wrap: wrap; row-gap: 14px; }
  .site-nav { order: 3; flex-basis: 100%; justify-content: center; gap: 18px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--orange);
  border-radius: 8px;
  color: var(--navy-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(243, 156, 18, 0.25);
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(243, 156, 18, 0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: none;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-dark {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: none;
}
.btn-dark:hover { background: var(--navy-dark); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-image:
    linear-gradient(100deg, rgba(0,1,7,0.93) 15%, rgba(7,28,58,0.82) 45%, rgba(13,42,82,0.45) 100%),
    url('/asset/generated/hero-truck.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: clamp(64px, 12vh, 130px) 24px 90px;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; max-width: var(--container-max); margin: 0 auto; }
.hero .chip {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); max-width: 640px; }
.hero h1 .accent { color: var(--orange); }
.hero p.lead { color: rgba(243,245,248,0.85); max-width: 560px; font-size: 1.1rem; margin: 0 0 32px; }
.hero .btn-row { margin-top: 8px; }

/* ---------- Page hero (non-home pages) ---------- */
.page-hero {
  background: linear-gradient(125deg, var(--navy-black) 0%, var(--navy-dark) 55%, var(--navy-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: 68px 24px 66px;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(243,245,248,0.85); max-width: 640px; margin: 0 auto; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--surface-light);
  border-bottom: 1px solid rgba(7,28,58,0.06);
  padding: 40px 24px;
}
.stats-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--orange);
  margin: 0 0 6px;
}
.stat-number.dark { color: var(--navy-deep); }
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Sections ---------- */
.section { padding: 80px 24px; max-width: var(--container-max); margin: 0 auto; }
.section-alt { background: var(--surface-light); }
.section-alt > .section { background: transparent; }
.section-dark { background: var(--navy-deep); color: rgba(255,255,255,0.85); }
.section-dark h2 { color: var(--white); }
.section-darker { background: var(--navy-dark); color: rgba(255,255,255,0.85); }
.section-darker h2 { color: var(--white); }
.section-center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head.align-left { margin: 0 0 48px; text-align: left; }

/* ---------- Split layout (image/graphic + content) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split.reverse .split-graphic { order: 2; }
.split.reverse .split-content { order: 1; }
@media (max-width: 860px) { .split.reverse .split-graphic, .split.reverse .split-content { order: initial; } }

.photo-panel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-panel img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Bento / feature cards ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; text-align: left; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } }

.card {
  background: var(--white);
  border: 1px solid rgba(7,28,58,0.08);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(243, 156, 18, 0.12);
  color: var(--orange);
  margin-bottom: 18px;
}
.card .icon-badge .material-symbols-outlined { font-size: 26px; }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy-deep); }
.card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Dark translucent cards (services) ---------- */
.card-dark {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 36px;
  overflow: hidden;
  transition: background 0.25s ease;
}
.card-dark:hover { background: rgba(255,255,255,0.09); }
.card-dark .icon-badge {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(243,156,18,0.15);
  color: var(--orange);
  margin-bottom: 22px;
}
.card-dark .icon-badge .material-symbols-outlined { font-size: 28px; }
.card-dark h3 { color: var(--white); margin-bottom: 10px; }
.card-dark p { color: rgba(255,255,255,0.65); margin: 0; font-size: 0.95rem; }

/* ---------- Highlight rows (fleet) ---------- */
.highlight-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--surface-light);
  border-left: 4px solid var(--orange);
  margin-bottom: 14px;
}
.highlight-row .material-symbols-outlined { color: var(--orange); }
.highlight-row p { margin: 0; font-weight: 600; color: var(--navy-deep); }
.highlight-row.alt { border-left-color: var(--navy-deep); }
.highlight-row.alt .material-symbols-outlined { color: var(--navy-deep); }

/* ---------- Tag / industries grid ---------- */
.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.tag {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-light);
  border-radius: 12px;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--navy-deep);
  transition: background 0.25s ease, color 0.25s ease;
}
.tag .material-symbols-outlined { color: var(--orange); transition: color 0.25s ease; }
.tag:hover { background: var(--navy-deep); color: var(--white); }
.tag:hover .material-symbols-outlined { color: var(--white); }

/* ---------- Process timeline ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
  text-align: center;
  position: relative;
}
@media (max-width: 860px) { .process-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
.process-step {
  background: var(--white);
  border: 1px solid rgba(7,28,58,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
}
.process-step .step-number {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
}
.process-step:nth-child(even) .step-number { background: var(--orange); color: var(--navy-dark); }
.process-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: 0.9rem; margin: 0; }

/* ---------- Core values (circular icons) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px;
  text-align: center;
}
.value-item .value-circle {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.25s ease;
}
.value-item .value-circle .material-symbols-outlined { color: var(--orange); font-size: 26px; transition: color 0.25s ease; }
.value-item:hover .value-circle { background: var(--orange); }
.value-item:hover .value-circle .material-symbols-outlined { color: var(--navy-deep); }
.value-item p { margin: 0; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em; color: var(--white); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(243,245,248,0.85); max-width: 600px; margin: 0 auto 28px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Contact split card ---------- */
.contact-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 860px) { .contact-card { grid-template-columns: 1fr; } }
.contact-form-panel { background: var(--white); padding: clamp(32px, 5vw, 56px); }
.contact-info-panel {
  background: var(--navy-deep);
  color: var(--white);
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(243,156,18,0.15);
  border-radius: 999px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.contact-info-item .material-symbols-outlined { color: var(--orange); margin-top: 2px; }
.contact-info-item .label {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.9);
}
.contact-info-item .value { color: rgba(255,255,255,0.75); margin: 0; }

.contact-form label { display: block; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.03em; margin: 0 0 6px; color: var(--navy-deep); }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--surface-light);
  border: 1px solid rgba(7,28,58,0.12);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 18px;
  transition: border-color 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--orange); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-notice { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-weight: 600; }
.form-notice-ok { background: #e7f6ec; color: #1e7a3c; }
.form-notice-error { background: #fdeaea; color: #b3261e; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(243,245,248,0.7); }
.footer-main {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 780px) { .footer-main { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand img { height: 44px; border-radius: 8px; }
.footer-brand span { font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--white); font-size: 1.1rem; }
.footer-motto {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.footer-col-title { color: var(--white); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(243,245,248,0.7); text-decoration: none; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  background: var(--navy-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 24px;
}
.footer-bottom-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(243,245,248,0.55);
}
