/* ========================================
   BEVEL INTERNATIONAL — REDESIGNED UI
   Color Palette:
   --dark:   #1a3a2a  (deep forest green)
   --amber:  #d4820a  (warm amber/orange)
   --cream:  #f5f0e8  (warm off-white)
   --mid:    #2d5c3e  (mid green)
   --text:   #2c2c2c  (near-black)
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #1a3a2a;
  --dark2:   #112a1e;
  --mid:     #2d5c3e;
  --amber:   #d4820a;
  --amber-l: #e8960f;
  --cream:   #f5f0e8;
  --cream2:  #ede7d8;
  --text:    #2c2c2c;
  --text-m:  #5a5a5a;
  --white:   #ffffff;
  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --trans:   cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.section-label.centered { display: flex; justify-content: center; width: fit-content; margin: 0 auto 18px; }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin-bottom: 18px;
}
.section-title.centered { text-align: center; }

.section-body {
  font-size: 17px;
  color: var(--text-m);
  max-width: 600px;
  margin-bottom: 48px;
}
.section-body.centered { text-align: center; margin-inline: auto; }

.accent { color: var(--amber); }

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--trans);
  white-space: nowrap;
}

.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--amber:hover { background: var(--amber-l); border-color: var(--amber-l); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,130,10,0.4); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover { background: var(--mid); border-color: var(--mid); transform: translateY(-2px); }

.btn--lg { padding: 15px 32px; font-size: 16px; }

/* ===== NAV ===== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s var(--trans), box-shadow 0.3s var(--trans), padding 0.3s;
}

.nav.scrolled {
  background: var(--dark2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 4px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.nav__name {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav__name em { font-style: normal; font-weight: 300; opacity: 0.8; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 16px; margin-left: 8px; }

.nav__phone {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
}
.nav__phone:hover { color: var(--amber); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img { object-position: center 60%; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(17, 42, 30, 0.88) 0%,
    rgba(17, 42, 30, 0.65) 50%,
    rgba(17, 42, 30, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 130, 10, 0.18);
  border: 1px solid rgba(212, 130, 10, 0.5);
  color: var(--amber);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s var(--trans) both;
}

.dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(38px, 6vw, 70px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeInUp 0.8s 0.1s var(--trans) both;
}

.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.2s var(--trans) both;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s 0.3s var(--trans) both;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s var(--trans) both;
}

.hero__trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  position: relative;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--amber);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* ===== STATS BAND ===== */

.stats-band {
  background: var(--dark);
  padding: 56px 0;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 16px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

/* ===== ABOUT ===== */

.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.img-stack {
  position: relative;
  height: 480px;
}

.img-stack__main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 78%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-stack__secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 50%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.img-stack__badge {
  position: absolute;
  top: 32px; right: 0;
  background: var(--amber);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.big-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.img-stack__badge span:last-child {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 500;
}

.check-list {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--amber);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  margin-top: 1px;
}

/* ===== FLEET ===== */

.fleet {
  background: var(--cream);
}

.fleet__stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fleet-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--cream2);
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 14px;
  box-shadow: var(--shadow);
}
.fleet-stat strong { font-weight: 700; color: var(--dark); }
.fleet-stat em { font-style: normal; color: var(--text-m); }

.fleet__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab {
  padding: 9px 22px;
  border-radius: 30px;
  border: 2px solid var(--cream2);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-m);
  cursor: pointer;
  transition: all 0.2s var(--trans);
}
.tab.active, .tab:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--trans), box-shadow 0.3s var(--trans);
  display: flex;
  flex-direction: column;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-card.hidden { display: none; }

.fleet-card__img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.fleet-card__img img { transition: transform 0.5s var(--trans); }
.fleet-card:hover .fleet-card__img img { transform: scale(1.06); }

.fleet-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.fleet-card__tag.trucks { background: rgba(26,58,42,0.85); color: #fff; }
.fleet-card__tag.cold { background: rgba(0,100,180,0.85); color: #fff; }
.fleet-card__tag.heavy { background: rgba(180,80,0,0.85); color: #fff; }
.fleet-card__tag.trailers { background: rgba(100,60,0,0.85); color: #fff; }

.fleet-card__avail {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(40,160,80,0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.fleet-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fleet-card__body h3 { font-size: 17px; color: var(--dark); margin-bottom: 10px; }
.fleet-card__body p { font-size: 14px; color: var(--text-m); flex: 1; }

.fleet-card__meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--cream2);
  font-size: 13px;
  color: var(--text-m);
  font-weight: 500;
}

.fleet__cta {
  text-align: center;
}
.fleet__cta p { color: var(--text-m); margin-bottom: 16px; font-size: 15px; }

/* ===== SERVICES ===== */

.services {
  background: var(--white);
}

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

.service-card {
  background: var(--cream);
  border: 1px solid var(--cream2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--trans);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: var(--white);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(212,130,10,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--amber);
}

.service-card h3 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-m);
  line-height: 1.65;
}

/* ===== WHY US ===== */

.why {
  background: var(--cream);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s var(--trans);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.why-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(26,58,42,0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--dark);
}

.why-card h3 { font-size: 16px; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-m); line-height: 1.65; }

/* ===== CONTACT ===== */

.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}

/* FORM */

.contact__form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--cream2);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--cream2);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,130,10,0.12);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-error {
  font-size: 12px;
  color: #e53e3e;
  font-weight: 500;
  min-height: 16px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-note {
  font-size: 13px;
  color: var(--text-m);
}

.form-success {
  text-align: center;
  padding: 32px 16px;
}
.success-icon {
  width: 56px;
  height: 56px;
  background: #22c55e;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { color: var(--dark); margin-bottom: 8px; }
.form-success p { color: var(--text-m); font-size: 15px; }

.form-error-msg p {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}
.form-error-msg a { color: var(--amber); font-weight: 600; }

/* CONTACT INFO */

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.info-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.info-item a:hover { color: var(--amber); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.map-wrap iframe { display: block; }

.map-link {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--dark);
  color: var(--amber);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.map-link:hover { background: var(--mid); }

/* ===== FOOTER ===== */

.footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand p {
  font-size: 14px;
  margin: 16px 0 20px;
  line-height: 1.65;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.2s;
}
.footer__social a:hover { background: var(--amber); }

.footer__col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--amber); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__tag {
  color: var(--amber);
  font-weight: 500;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--trans), transform 0.65s var(--trans);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .img-stack { height: 360px; max-width: 520px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__info { order: -1; }
  .info-card { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .info-item { flex: 1 1 200px; }
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav__links, .nav__phone { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--dark2);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
  }
  .nav__burger { display: flex; }
  .nav__inner { position: relative; }

  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(2n) { border-right: none; }

  .fleet__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px; }
  .form-footer { flex-direction: column; align-items: flex-start; }

  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__title { font-size: 38px; }
}

@media (max-width: 480px) {
  .stats-band__grid { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); border-right: none; }
  .fleet__stats { flex-direction: column; align-items: center; }
}
