/* ============================================================
   ARVEN KURUMSAL FİLO ARAÇ KİRALAMA — TASARIM SİSTEMİ v3
   Siyah-beyaz monokrom tasarım:
   tam ekran fotoğraflı hero, şeffaf header, beyaz kartlar, siyah butonlar.
   Fontlar: Archivo (başlık) · Inter (metin) · JetBrains Mono (rakam)
   ============================================================ */

:root {
  --bg:        #F7F7F8;
  --surface:   #FFFFFF;
  --surface-2: #F1F1F3;
  --ink:       #111114;
  --ink-2:     #3A3A40;
  --muted:     #74747E;
  --line:      #E5E5E9;

  --green:     #1FB874;
  --red:       #E5484D;

  --font-head: "Archivo", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-full: 999px;

  --shadow-sm: 0 1px 2px rgba(17,17,20,.05), 0 2px 8px rgba(17,17,20,.04);
  --shadow-md: 0 4px 14px rgba(17,17,20,.06), 0 14px 40px rgba(17,17,20,.08);

  --wrap: 1200px;
}

/* ---------------- RESET / BASE ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html, body { overflow-x: hidden; }   /* mobilde yatay taşma kilidi */
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 800;
}
p { margin: 0 0 1em; }
.mono { font-family: var(--font-mono); font-size: .92em; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 72px; }
.section-sm { padding-block: 40px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------------- BUTONLAR ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: var(--r-md);
  border: 1px solid transparent; cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .15s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg, .btn i { width: 18px; height: 18px; }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #26262C; box-shadow: 0 8px 22px rgba(17,17,20,.28); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #ECECEF; }

.btn-ghost-light {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.18); border-color: #fff; }

.btn-muted { background: var(--surface-2); color: var(--muted); cursor: not-allowed; }

.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 11px; }
.btn-block { width: 100%; }

/* ---------------- HEADER (hero fotoğrafı üzerine şeffaf) ---------------- */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 90;
  background: transparent; color: #fff;
}
.hdr-inner {
  padding: 26px clamp(24px, 4vw, 48px);
  display: flex; align-items: center; gap: 24px;
}
.hdr-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hdr-brand .brand-ico { color: #fff; display: grid; place-items: center; }
.hdr-brand .brand-ico svg { width: 25px; height: 25px; }
.hdr-brand .hb-text { display: flex; flex-direction: column; line-height: 1.15; }
.hdr-brand .hb-name { font-family: var(--font-head); font-weight: 800; font-size: 18px; letter-spacing: -.01em; color: #fff; }
.hdr-brand .hb-sub { display: none; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 13px; border-radius: var(--r-full);
  font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.78);
  transition: color .15s ease, background .15s ease;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav a.active { color: #fff; font-weight: 700; }

.hdr-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; margin-left: auto; }
.hdr-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: #fff; opacity: .92; transition: opacity .15s ease;
  white-space: nowrap;
}
.hdr-phone:hover { opacity: 1; }
.hdr-phone svg { width: 16px; height: 16px; }
.btn-signup {
  background: #fff; color: var(--ink);
  font-size: 14px; font-weight: 700;
  padding: 11px 21px; border-radius: 12px;
  transition: transform .15s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn-signup:hover { box-shadow: 0 8px 22px rgba(0,0,0,.3); transform: translateY(-1px); }

.menu-toggle {
  display: none; width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.35); border-radius: 12px;
  background: rgba(255,255,255,.1); color: #fff; cursor: pointer;
  place-items: center;
}
.menu-toggle svg { width: 20px; height: 20px; }

/* Mobil menü */
.mobile-nav {
  position: fixed; inset: 0; z-index: 120;
  background: var(--surface);
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px; gap: 6px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav > a {
  font-family: var(--font-head); font-size: 30px; font-weight: 800;
  padding: 10px 4px; color: var(--ink);
  opacity: 0; transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
}
.mobile-nav.open > a { opacity: 1; transform: none; }
.mobile-nav > a.active { text-decoration: underline; text-underline-offset: 8px; }
.mn-close {
  position: absolute; top: 22px; right: 24px;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--ink); cursor: pointer; display: grid; place-items: center;
}
.mn-foot {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  font-size: 15px; color: var(--ink-2);
}
.mn-foot a { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; overflow-wrap: anywhere; word-break: break-all; }
.mn-foot svg { width: 17px; height: 17px; color: var(--ink); }
.mn-foot span { color: var(--muted); font-size: 13.5px; }

/* ---------------- HERO (tam ekran fotoğraf) ---------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: min(92vh, 860px);
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--ink);
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.05) 34%, rgba(10,10,12,.62) 100%),
    linear-gradient(90deg, rgba(10,10,12,.5) 0%, rgba(10,10,12,0) 60%);
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding: 140px 24px 72px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-full); padding: 7px 15px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .07em;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.55); }
  70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  margin-bottom: 18px; color: #fff;
  max-width: 18ch;
}
.hero h1 em { font-style: normal; }
.hero .lead {
  font-size: clamp(15.5px, 1.5vw, 17.5px);
  color: rgba(255,255,255,.85);
  max-width: 56ch; margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

/* ---------------- FİLO BANDI ---------------- */
.fleet-strip { padding-block: 72px; }
.fleet-inner {
  max-width: var(--wrap); margin-inline: auto; padding-inline: 24px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 10px;
}
.fleet-title { font-size: clamp(26px, 3.2vw, 38px); }
.fleet-sub { color: var(--muted); font-size: 16px; margin: 0; }
.fleet-car {
  width: 100%; height: clamp(300px, 28vw, 400px);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); object-fit: cover;
  background: var(--surface);
}

/* ---------------- ARAÇLAR ---------------- */
.car-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 16px 16px 20px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.car-card.is-unavailable { opacity: .62; }
.car-card.is-unavailable:hover { transform: none; box-shadow: var(--shadow-sm); }

.car-figure {
  position: relative; border-radius: var(--r-md);
  background: var(--surface-2); overflow: hidden;
  margin-bottom: 16px;
  height: 0; padding-bottom: 62.5%;   /* 16:10 sabit oran */
}
.car-figure img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: contain;
  padding: 12px; mix-blend-mode: multiply;
  transition: transform .3s ease;
}
.car-card:hover .car-figure img { transform: scale(1.04); }

.car-avail {
  position: absolute; top: 10px; right: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border-radius: var(--r-full);
  padding: 5px 11px; font-size: 11.5px; font-weight: 700;
  color: var(--ink); box-shadow: var(--shadow-sm);
}
.car-avail .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.car-avail.car-unavail .dot { background: var(--red); }

.car-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-full); padding: 5px 11px;
  font-size: 11.5px; font-weight: 700;
}

.car-head { display: flex; justify-content: space-between; gap: 14px; padding-inline: 4px; }
.car-name { font-size: 17.5px; margin: 0; display: flex; flex-direction: column; }
.car-name .yr { font-family: var(--font-body); font-size: 12.5px; font-weight: 500; color: var(--muted); margin-top: 3px; }
.car-price { text-align: right; flex-shrink: 0; }
.car-price .amt {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 20px; color: var(--ink); letter-spacing: -.01em;
}
.car-price .per { font-size: 12px; color: var(--muted); }

.car-specs {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  margin-top: 14px; padding: 12px 4px 0;
  border-top: 1px solid var(--line);
}
.car-specs .spec {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.8px; color: var(--muted); font-weight: 500;
}
.car-specs .spec svg { width: 15px; height: 15px; }

.car-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 12px; padding: 12px 4px;
  border-top: 1px solid var(--line);
}
.car-meta .k { font-size: 11.5px; color: var(--muted); letter-spacing: .02em; }
.car-meta .v { font-family: var(--font-mono); font-size: 13.5px; font-weight: 700; }

.car-foot { margin-top: auto; padding-top: 4px; }

/* ---------------- CTA BANDI ---------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 52px);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.04) 0 3px, transparent 3px 18px),
    radial-gradient(700px 380px at 90% -20%, rgba(255,255,255,.09), transparent 60%);
}
.cta-band .row {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; color: #fff; }
.cta-band p { margin: 0; color: rgba(255,255,255,.8); max-width: 52ch; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------------- ALT SAYFA HERO (fotoğraflı bant) ---------------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
}
.page-hero .hero-bg,
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/hero.jpg") center 62% / cover no-repeat;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.6) 0%, rgba(10,10,12,.72) 100%);
}
.page-hero .inner {
  position: relative; z-index: 1;
  max-width: var(--wrap); margin-inline: auto;
  padding: 150px 24px 58px;
}
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,.66);
  margin-bottom: 18px; font-weight: 500;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin-inline: 7px; opacity: .5; }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); color: #fff; }
.page-hero .page-sub {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255,255,255,.85); max-width: 76ch;
  font-size: 15.5px;
}
.page-hero p:last-child { margin-bottom: 0; }

/* ---------------- DOKÜMAN SAYFALARI ---------------- */
.doc-layout {
  max-width: var(--wrap); margin-inline: auto; padding-inline: 24px;
  display: grid; grid-template-columns: 260px 1fr;
  gap: 32px; align-items: start;
}
.doc-toc {
  position: sticky; top: 24px;
  background: var(--surface); border-radius: var(--r-lg);
  padding: 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 2px;
  max-height: calc(100vh - 48px); overflow: auto;
}
.doc-toc .h {
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  margin-bottom: 10px;
}
.doc-toc a {
  font-size: 13.5px; color: var(--muted); padding: 7px 11px;
  border-radius: 9px;
  transition: color .15s ease, background .15s ease;
}
.doc-toc a:hover { color: var(--ink); background: var(--surface-2); }
.doc-toc a.active { color: #fff; background: var(--ink); font-weight: 600; }

.doc {
  background: var(--surface); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-sm);
  max-width: 860px;
  overflow-wrap: break-word;
}
.doc .meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--muted);
  background: var(--surface-2); border-radius: var(--r-full);
  padding: 7px 14px; margin-bottom: 22px;
}
.doc .meta svg { width: 14px; height: 14px; }
.doc h2 {
  font-size: 21px; margin-top: 36px; margin-bottom: 12px;
  padding-top: 8px; scroll-margin-top: 24px;
}
.doc h2:first-of-type { margin-top: 12px; }
.doc p, .doc li { font-size: 15px; color: var(--ink-2); }
.doc ul { padding-left: 22px; margin: 0 0 1em; }
.doc li { margin-bottom: 6px; }
.doc a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.doc strong { color: var(--ink); }
.doc .sig {
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  color: var(--ink); margin-top: 4px;
}
.doc table {
  width: 100%; border-collapse: collapse; margin: 14px 0 22px;
  font-size: 14.5px;
  table-layout: fixed;   /* uzun e-posta/adresler hücre içinde kırılsın */
}
.doc th, .doc td {
  text-align: left; padding: 11px 14px;
  border-bottom: 1px solid var(--line);
}
.doc th { width: 130px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.doc td { color: var(--ink-2); overflow-wrap: anywhere; }
.doc tr:last-child th, .doc tr:last-child td { border-bottom: 0; }

.callout {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px 20px;
  font-size: 14px; color: var(--ink-2);
  margin-bottom: 24px;
}
.callout.center { text-align: center; font-size: 15px; }

/* ---------------- İLETİŞİM KARTLARI ---------------- */
.contact-grid {
  max-width: var(--wrap); margin-inline: auto; padding-inline: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.contact-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 30px 26px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .ico {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; margin-bottom: 8px;
}
.contact-card .ico svg { width: 23px; height: 23px; }
.contact-card .lbl {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.contact-card .val {
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
  line-height: 1.35; word-break: break-word;
}
.contact-card .note { font-size: 13px; color: var(--muted); }

/* ---------------- FOOTER ---------------- */
.site-footer {
  margin-top: 72px;
  background: var(--ink); color: #B9B9C2;
}
.footer-inner { max-width: var(--wrap); margin-inline: auto; padding: 60px 24px 28px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 36px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: #fff; color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 15px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: #fff; }
.brand-sub { font-size: 12px; color: #8B8B96; }
.footer-brand p { font-size: 14px; color: #8B8B96; max-width: 30ch; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,.08); color: #C9C9D2;
  display: grid; place-items: center;
  transition: background .16s ease, color .16s ease;
}
.footer-social a:hover { background: #fff; color: var(--ink); }

.footer-col .h {
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  color: #fff; margin-bottom: 16px; letter-spacing: .02em;
}
.footer-col .links { display: flex; flex-direction: column; gap: 10px; }
.footer-col .links a { font-size: 14px; color: #8B8B96; transition: color .15s ease; }
.footer-col .links a:hover { color: #fff; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact .it {
  display: flex; gap: 11px; font-size: 13.5px; color: #8B8B96; align-items: flex-start;
  min-width: 0; overflow-wrap: anywhere;
}
.footer-contact a.it:hover { color: #fff; }
.footer-contact .ico {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px;
  background: rgba(255,255,255,.08); color: #fff;
  display: grid; place-items: center; margin-top: -2px;
}
.footer-contact .ico svg { width: 14px; height: 14px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; padding-top: 24px;
  font-size: 13px; color: #8B8B96;
}
.legal-links { display: flex; gap: 20px; }
.legal-links a:hover { color: #fff; }

/* ---------------- FAB + SCROLL ---------------- */
.fab-call {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(17,17,20,.35);
  transition: transform .18s ease, background .18s ease;
}
.fab-call:hover { transform: scale(1.07); background: #26262C; }
.fab-call svg { width: 22px; height: 22px; }

.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 3px; background: var(--ink);
  transform-origin: left; transform: scaleX(0);
}

/* ---------------- REVEAL ---------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1280px) {
  .hdr-phone { display: none; }
}
@media (max-width: 1080px) {
  .car-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .fleet-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .doc-layout { grid-template-columns: 1fr; }
  .doc-toc { position: static; max-height: none; flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .doc-toc .h { width: 100%; }
}
@media (max-width: 640px) {
  .section { padding-block: 52px; }
  .car-grid { grid-template-columns: 1fr; }
  .doc th { white-space: normal; width: 92px; }
  .hero { min-height: min(86vh, 720px); }
  .hero-inner { padding-top: 120px; padding-bottom: 52px; }
  .cta-band .row { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
  .hdr-inner { padding: 18px 20px; }
  .btn-signup { display: none; }
  .page-hero .inner { padding-top: 120px; }
}
