* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1e293b;
  background: #f8fafc;
}

a {
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #020617;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  background: #f97316;
  padding: 12px;
  border-radius: 18px;
  font-size: 24px;
}

.brand h1 {
  margin: 0;
  font-size: 26px;
  letter-spacing: 1px;
}

.brand p {
  margin: 2px 0 0;
  color: #cbd5e1;
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.nav a:hover {
  color: #fb923c;
}

.menu-button {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, #020617, #0f172a 55%, #172554);
  color: white;
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(249,115,22,.16);
  border: 1px solid rgba(251,146,60,.35);
  color: #fdba74;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero h2 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 24px;
}

.hero p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 18px;
  font-weight: 700;
}

.btn-primary {
  background: #f97316;
  color: #fff;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

.btn-dark {
  background: #020617;
  color: white;
}

.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.truck-icon {
  font-size: 68px;
  margin-bottom: 18px;
}

.hero-card h3 {
  font-size: 31px;
  margin: 0 0 14px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.features-grid div {
  background: rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 18px;
  font-size: 22px;
}

.features-grid span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
}

.section {
  padding: 85px 0;
}

.white {
  background: white;
}

.grey {
  background: #f1f5f9;
}

.dark {
  background: #020617;
  color: white;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
  align-items: center;
}

.section-label {
  color: #f97316;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.section h2,
.section-title h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: #0f172a;
  margin: 0 0 20px;
}

.dark h2 {
  color: white;
}

.section p {
  color: #64748b;
  line-height: 1.7;
  font-size: 17px;
}

.dark p {
  color: #cbd5e1;
}

.value-card {
  background: #f1f5f9;
  border-radius: 34px;
  padding: 34px;
}

.value-card h3 {
  font-size: 26px;
  margin-top: 0;
}

.value-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.value-card li {
  background: white;
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
}

.value-card li::before {
  content: "✅ ";
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: white;
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(15,23,42,.12);
}

.service-icon {
  font-size: 42px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 24px;
  margin: 0 0 12px;
}

.location-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  padding: 34px;
}

.location-icon {
  font-size: 58px;
  margin-bottom: 18px;
}

.location-card span {
  display: block;
  background: rgba(255,255,255,.08);
  color: #cbd5e1;
  padding: 18px;
  border-radius: 18px;
  line-height: 1.6;
}

.cta {
  background: #f97316;
  color: white;
  padding: 70px 0;
}

.centered {
  text-align: center;
}

.cta h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 14px;
}

.cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-size: 18px;
}

.contact-info {
  margin-top: 28px;
}

.contact-info p {
  color: #334155;
  font-weight: 600;
}

.contact-form {
  background: #f1f5f9;
  border-radius: 34px;
  padding: 34px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 14px;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f97316;
}

.contact-form button {
  width: 100%;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 18px;
  padding: 16px;
  font-weight: 800;
  cursor: pointer;
  font-size: 16px;
}

.footer {
  background: #020617;
  color: white;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer h3 {
  margin: 0;
}

.footer p {
  color: #94a3b8;
  margin: 6px 0 0;
  font-size: 14px;
}

@media (max-width: 850px) {
  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #020617;
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .nav.active {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .hero-grid,
  .two-columns,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 65px 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
