@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --bg:        #363636;
  --bg-dark:   #282828;
  --bg-card:   #303030;
  --orange:    #E05A1A;
  --orange-dk: #c44d14;
  --text:      #E8E6E0;
  --muted:     #9e9891;
  --border:    rgba(232, 230, 224, 0.1);
  --nav-h:     78px;
  --r:         8px;
  --r-sm:      4px;
  --ease:      0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Barlow', sans-serif;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }

.overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(232,230,224,0.35); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(40, 40, 40, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 2px; }
.logo-img { height: 64px; width: auto; display: block; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-wordmark {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}
.logo-accent { color: var(--orange); }
.logo-tagline {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-menu a {
  padding: 6px 9px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--r-sm);
  transition: color var(--ease);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--text); }
.nav-cta {
  margin-left: 8px;
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: var(--r-sm) !important;
}
.nav-cta:hover { background: var(--orange-dk) !important; }
.nav-login {
  margin-left: 4px;
  background: transparent !important;
  color: var(--orange) !important;
  font-weight: 600 !important;
  padding: 7px 16px !important;
  border-radius: var(--r-sm) !important;
  border: 1.5px solid var(--orange) !important;
}
.nav-login:hover { background: var(--orange) !important; color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(18,18,18,0.92) 40%, rgba(18,18,18,0.5) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 24px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 580px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(40,40,40,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-size: 0.8rem;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* ============================================================
   HOME — CLIENTS
   ============================================================ */
.clients {
  padding: 28px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.clients-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.clients-sep {
  width: 1px; height: 20px;
  background: var(--border);
  flex-shrink: 0;
}
.clients-list { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; }
.client-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(232,230,224,0.38);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color var(--ease);
}
.client-name:hover { color: var(--muted); }
.client-logo {
  height: 28px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1) brightness(4);
  transition: opacity var(--ease);
  display: block;
}
.client-logo.invert {
  filter: grayscale(1) invert(1) brightness(1.8);
}
.client-logo:hover { opacity: 0.85; }

/* ============================================================
   HOME — VALUE PROPS
   ============================================================ */
.value-props { background: var(--bg); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.value-item { background: var(--bg); padding: 36px 28px; }
.value-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: rgba(224,90,26,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-item h3 { margin-bottom: 10px; font-size: 1.05rem; }
.value-item p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

/* ============================================================
   HOME — FLEET PREVIEW
   ============================================================ */
.fleet-preview { background: var(--bg-dark); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.fleet-card:hover { border-color: rgba(224,90,26,0.4); transform: translateY(-3px); }
.fleet-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg);
}
.fleet-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }
.fleet-card-body { padding: 20px; }
.fleet-card-body h3 { font-size: 0.95rem; margin-bottom: 14px; }
.fleet-specs { display: flex; gap: 20px; margin-bottom: 14px; }
.fleet-spec { display: flex; flex-direction: column; gap: 2px; }
.spec-val { font-size: 0.95rem; font-weight: 600; }
.spec-lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.fleet-card-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   HOME — PARTNERS
   ============================================================ */
.partners { background: var(--bg); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.badge-green { background: rgba(74,222,128,0.1); color: #4ade80; }
.badge-orange { background: rgba(224,90,26,0.12); color: var(--orange); }
.partner-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.partner-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   HOME — CTA SECTION
   ============================================================ */
.cta-section { text-align: center; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 56px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin: 10px 0 16px; }
.page-hero p { color: var(--muted); max-width: 540px; line-height: 1.75; }

/* ============================================================
   FLOTTA — VEHICLE DETAIL
   ============================================================ */
.vehicle-section { padding: 0 0 72px; }
.vehicle-section.dark  { background: var(--bg-dark); }
.vehicle-section.light { background: var(--bg); border-top: 1px solid var(--border); }

.vehicle-img-wrap {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3/1;
  background: var(--bg-card);
  margin-bottom: 48px;
}
.vehicle-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

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

.config-tag {
  display: inline-block;
  background: rgba(224,90,26,0.12);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.config-tag.muted {
  background: rgba(232,230,224,0.06);
  color: var(--muted);
}

.vehicle-desc {
  color: var(--muted);
  margin: 12px 0 24px;
  line-height: 1.75;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.spec-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px;
  text-align: center;
}
.spec-box .val {
  font-family: 'Barlow', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}
.spec-box .lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}

/* MonkeyPack */
.monkeypack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.mp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
}
.mp-card h3 { font-size: 1rem; margin-bottom: 8px; }
.mp-price {
  font-family: 'Barlow', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  margin: 10px 0 12px;
  line-height: 1;
}
.mp-price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}
.mp-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* G6 future */
.future-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  max-width: 380px;
}

/* ============================================================
   SERVIZI
   ============================================================ */
.services-list { margin-top: 56px; }
.service-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-num {
  font-family: 'Barlow', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(232,230,224,0.08);
  line-height: 1;
  padding-top: 4px;
  user-select: none;
}
.service-item h3 { margin-bottom: 10px; }
.service-item p { color: var(--muted); max-width: 600px; line-height: 1.7; font-size: 0.9rem; }

.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.zone-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}
.zone-card .zone-range { font-size: 0.85rem; margin-bottom: 12px; }
.zone-card .zone-price {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}
.zone-card .zone-price span { font-size: 0.85rem; font-family: 'Inter', sans-serif; font-weight: 400; color: var(--muted); }
.zone-card.included .zone-price { color: var(--orange); }

/* ============================================================
   TARIFFE
   ============================================================ */
.pricing-wrap {
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-dark);
}
.pricing-table th:last-child, .pricing-table td:last-child { text-align: right; }
.pricing-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover td { background: rgba(232,230,224,0.02); }
.price-main {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}
.discount-badge {
  display: inline-block;
  background: rgba(74,222,128,0.1);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}
.pricing-note {
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(224,90,26,0.06);
  border: 1px solid rgba(224,90,26,0.15);
  border-radius: var(--r-sm);
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   CHI SIAMO
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
}
.team-exp {
  font-family: 'Barlow', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.team-exp-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 20px; }
.team-card h3 { margin-bottom: 4px; }
.team-role { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange); font-weight: 600; margin-bottom: 16px; display: block; }
.team-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

.mission-block {
  background: var(--bg);
  padding: 88px 0;
}
.mission-text {
  max-width: 700px;
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text);
}
.mission-text strong { color: var(--orange); font-weight: 600; }

.clients-credits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.credit-pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: border-color var(--ease), color var(--ease);
}
.credit-pill:hover { border-color: rgba(232,230,224,0.35); color: var(--text); }

/* ============================================================
   CONTATTI
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--ease);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: var(--bg-dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-item:first-child { border-top: 1px solid var(--border); }
.contact-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(224,90,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item p { font-size: 0.875rem; line-height: 1.5; }
.contact-item a { color: var(--text); transition: color var(--ease); }
.contact-item a:hover { color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #1e1e1e;
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-word { font-size: 1.4rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; color: var(--muted); transition: color var(--ease); }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-overlay { background: linear-gradient(to bottom, rgba(18,18,18,0.75) 0%, rgba(18,18,18,0.88) 100%); }
  .hero-content { max-width: 100%; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .vehicle-grid,
  .vehicle-grid.alt { grid-template-columns: 1fr; }
  .vehicle-grid.alt .vehicle-img-wrap { order: -1; }
  .monkeypack-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .zone-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  h1 { font-size: 2.1rem; }
  section { padding: 64px 0; }
  .fleet-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .clients-sep { display: none; }
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #1e1e1e;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 14px; }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; text-align: center; justify-content: center; }
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
  .future-specs { max-width: 100%; }
}
