:root {
  --bg: #060606;
  --surface: #0d0d0d;
  --surface-soft: #121212;
  --surface-muted: #171717;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f5f5f5;
  --muted: #c7c7c7;
  --muted-soft: #9a9a9a;
  --accent: #ffffff;
  --glow: #f2a13d;
  --container: 1240px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, #090909 0%, #040404 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.88);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 92px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand-copy strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.84rem;
  max-width: 24ch;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.top-nav a:hover,
.top-nav a.active:not(.button) {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.65rem;
}

.mobile-nav a.active:not(.button) {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.7rem;
  cursor: pointer;
}

.menu-bar {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1rem 1.5rem;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0.9rem 1.6rem;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #050505;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.button:hover {
  border-color: #ffffff;
}

.button-outline {
  background: transparent;
  color: #ffffff;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: #ffffff;
  color: #050505;
}

.button-dark {
  background: #050505;
  color: #ffffff;
}

.button-full {
  width: 100%;
}

.hero,
.page-hero,
.cta-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.page-hero::before,
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.76) 32%, rgba(0, 0, 0, 0.22) 72%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 75% 28%, rgba(255, 190, 80, 0.18), transparent 18%),
    url("assets/truck-hero.png") center/cover no-repeat;
  z-index: -2;
}

.hero::after,
.page-hero::after,
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
  z-index: -1;
}

.hero {
  padding: 4.5rem 0 2.8rem;
}

.page-hero {
  padding: 3.8rem 0 2.5rem;
}

.hero-grid,
.feature-row,
.card-grid,
.split-grid,
.stats-grid,
.footer-grid,
.contact-grid,
.service-grid,
.quote-grid,
.authority-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  min-height: 580px;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3.7rem, 8vw, 7rem);
  max-width: 8ch;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

p {
  margin: 0;
}

.hero-copy p,
.lede,
.section-copy,
.card p,
.footer-note,
.feature p,
.stat p,
.list-card li,
.contact-card p,
.form-note,
.quote-panel li {
  color: var(--muted);
}

.lede,
.hero-copy .lede {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-size: 1.15rem;
}

.hero-actions,
.stack,
.check-list,
.badge-row,
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-panel {
  margin-left: auto;
  width: min(100%, 520px);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.76), rgba(6, 6, 6, 0.88));
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-caption {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.panel-caption strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
}

main section {
  padding: 4.5rem 0;
}

.feature-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.8rem 0;
}

.feature {
  display: grid;
  gap: 0.7rem;
  padding: 0 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.feature:first-child {
  border-left: 0;
  padding-left: 0;
}

.feature-icon {
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1rem;
  color: #fff;
}

.feature strong,
.card h3,
.stat h3,
.contact-card strong,
.quote-panel strong,
.detail-list strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading.centered {
  text-align: center;
  justify-items: center;
}

.rule {
  width: 8rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.list-card,
.contact-card,
.form-panel,
.quote-panel,
.authority-panel {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.9), rgba(5, 5, 5, 0.96));
  border: 1px solid var(--line);
}

.card,
.list-card,
.contact-card,
.quote-panel {
  padding: 1.6rem;
}

.card {
  min-height: 100%;
}

.card h3 {
  margin: 0.85rem 0 0.6rem;
}

.card .icon-line {
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.45rem;
}

.split-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.image-panel {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42)),
    url("assets/truck-hero.png") center/cover no-repeat;
  border: 1px solid var(--line);
}

.image-panel.logo-panel {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.9)),
    url("assets/logo.png") center/60% no-repeat;
}

.content-panel {
  padding: 2rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.9), rgba(5, 5, 5, 0.96));
}

.content-panel h2,
.contact-card h2,
.form-panel h2,
.quote-panel strong {
  margin-bottom: 0.85rem;
}

.check-list,
.detail-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.check-item,
.detail-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.check-mark {
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
  padding: 1.75rem 1rem;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat:first-child {
  border-left: 0;
}

.stat h3 {
  margin: 0.85rem 0 0.5rem;
}

.cta-banner {
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-banner .container {
  min-height: 260px;
  display: grid;
  align-items: center;
}

.cta-copy {
  max-width: 42rem;
  display: grid;
  gap: 1rem;
  padding: 3rem 0;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  padding: 2.5rem 0 1rem;
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 0.65rem;
}

.footer-column h4 {
  font-size: 1.4rem;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
}

.footer-meta {
  padding: 1.1rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-soft);
  font-size: 0.95rem;
  text-align: center;
}

.page-hero .container {
  display: grid;
  gap: 1rem;
  min-height: 420px;
  align-content: center;
}

.page-hero.compact .container {
  min-height: 360px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.96), rgba(5, 5, 5, 0.98));
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.contact-card {
  display: grid;
  gap: 1.2rem;
}

.contact-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.form-panel {
  padding: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.5rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.form-grid input[type="file"] {
  padding: 0.8rem 1rem;
  cursor: pointer;
}

.form-grid input:focus-visible,
.form-grid select:focus-visible,
.form-grid textarea:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.95rem;
}

.full-width {
  grid-column: 1 / -1;
}

.quote-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: start;
}

.quote-panel ul,
.list-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.authority-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.authority-panel {
  padding: 1.75rem;
}

.authority-list {
  display: grid;
  gap: 1rem;
}

.authority-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.muted-box {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.social-badge {
  width: 3.3rem;
  height: 3.3rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.5rem;
}

@media (max-width: 1120px) {
  .top-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .quote-grid,
  .authority-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-row,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature,
  .stat {
    border-left: 0;
    padding-left: 0;
  }

  .hero-panel {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 84px;
  }

  .brand img {
    width: 74px;
  }

  .brand-copy small {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 20vw, 4.5rem);
  }

  .hero,
  .page-hero {
    padding: 3rem 0 2rem;
  }

  main section {
    padding: 3.3rem 0;
  }

  .card-grid,
  .service-grid,
  .feature-row,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-copy {
    padding: 2.4rem 0;
  }

  .button,
  .button-outline,
  .button-dark {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
