/* ============================================================
   ABDİNOV KİRAYƏ — üslub faylı (style.css)
   Mövzu: taksi sarısı + tünd fon, tam responsive
   ============================================================ */

:root {
  --bg: #0a0e17;
  --bg-2: #0e1420;
  --surface: #121a29;
  --surface-2: #172136;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #eef1f7;
  --muted: #9aa5b8;
  --accent: #ffc61a;
  --accent-2: #ffd75e;
  --accent-soft: rgba(255, 198, 26, 0.12);
  --green: #25d366;
  --green-dark: #1eb857;
  --ok: #34d399;
  --danger: #f87171;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.55);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

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

/* ---------- Ümumi düymələr ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-lg { padding: 15px 28px; font-size: 1rem; border-radius: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #14161c;
  box-shadow: 0 10px 24px -10px rgba(255, 198, 26, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(255, 198, 26, 0.6); }

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-whatsapp {
  background: var(--green);
  color: #07130b;
}
.btn-whatsapp:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(37, 211, 102, 0.55); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 14, 23, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.header.scrolled {
  background: rgba(10, 14, 23, 0.94);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}
.logo em { font-style: normal; color: var(--accent); }
.logo-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 198, 26, 0.35);
  color: var(--accent);
}
.logo-icon svg { width: 24px; height: 24px; }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:not(.btn) { color: var(--muted); transition: color 0.2s ease; position: relative; }
.nav a:not(.btn):hover { color: var(--text); }
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav a:not(.btn):hover::after { width: 100%; }
.nav-wa { padding: 10px 18px; font-size: 0.9rem; }
.nav-wa svg { width: 16px; height: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 11px 12px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.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); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 70px;
  background:
    radial-gradient(55% 45% at 78% 12%, rgba(255, 198, 26, 0.14), transparent 70%),
    radial-gradient(40% 35% at 8% 90%, rgba(37, 211, 102, 0.06), transparent 70%),
    var(--bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 198, 26, 0.4);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.hero h1 {
  margin: 20px 0 16px;
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.hero h1 .accent {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.hero-sub { color: var(--muted); font-size: 1.06rem; max-width: 34rem; }
.hero-sub strong { color: var(--text); }

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 30px;
}
.hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.94rem;
}
.hero-checks svg { width: 17px; height: 17px; color: var(--ok); flex: none; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-media { position: relative; }
.hero-media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(18, 26, 41, 0.92);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  animation: floatY 5s ease-in-out infinite;
}
.float-chip .chip-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-size: 1.25rem;
  background: var(--accent-soft);
  border-radius: 10px;
}
.float-chip strong { display: block; font-size: 0.92rem; line-height: 1.2; }
.float-chip small { color: var(--muted); font-size: 0.78rem; }
.float-chip-1 { top: 22px; left: -26px; }
.float-chip-2 { bottom: 26px; right: -22px; animation-delay: 2.2s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Statistika */
.stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  padding: 26px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat + .stat { border-left: 1px solid var(--border); }
.stat-value { font-size: 1.85rem; font-weight: 900; color: var(--accent); letter-spacing: -0.02em; }
.stat-label { color: var(--muted); font-size: 0.88rem; font-weight: 500; }

/* ---------- Bölmələr (ümumi) ---------- */
.section { padding: 92px 0; position: relative; }
.section-alt { background: var(--bg-2); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 198, 26, 0.35);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-head p { color: var(--muted); margin-top: 12px; }

/* ---------- Filtrlər ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 22px;
}

.filter-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 240px;
  min-width: 220px;
  background: #0d1322;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 0.2s ease;
}
.filter-search:focus-within { border-color: var(--accent); }
.filter-search svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.filter-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  padding: 12px 0;
  font-size: 0.95rem;
}
.filter-search input::placeholder { color: var(--muted); }

.filter-group { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.filter-label { color: var(--muted); font-size: 0.86rem; font-weight: 600; margin-right: 2px; }

.chip {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #14161c;
  font-weight: 700;
}

.filters select {
  background: #0d1322;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
}
.filters select:focus { border-color: var(--accent); }

.fleet-count { color: var(--muted); font-size: 0.88rem; margin-bottom: 18px; }
.fleet-count b { color: var(--accent); }

/* ---------- Avtomobil şəbəkəsi ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.car-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  animation: cardIn 0.45s ease both;
}
.car-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 198, 26, 0.45);
  box-shadow: var(--shadow);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.car-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #0d1322; }
.car-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.car-card:hover .car-media img { transform: scale(1.05); }

.engine-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
}
.engine-Benzin   { background: rgba(251, 191, 36, 0.16); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.45); }
.engine-Hibrid   { background: rgba(52, 211, 153, 0.14); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.45); }
.engine-Elektrik { background: rgba(34, 211, 238, 0.14); color: #22d3ee; border: 1px solid rgba(34, 211, 238, 0.45); }

.car-tag {
  position: absolute;
  top: 12px; right: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #14161c;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.car-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.car-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.car-body h3 { font-size: 1.16rem; font-weight: 800; letter-spacing: -0.01em; }

.car-price { text-align: right; flex: none; }
.car-price b { font-size: 1.45rem; font-weight: 900; color: var(--accent); letter-spacing: -0.02em; }
.car-price span { display: block; color: var(--muted); font-size: 0.76rem; margin-top: -2px; }

.car-specs { display: flex; flex-direction: column; gap: 9px; }
.car-specs li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}
.car-specs svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.car-specs .ok { color: var(--ok); font-weight: 700; }
.car-specs .no { color: var(--muted); font-weight: 600; }

.car-actions { display: flex; gap: 10px; margin-top: auto; }
.car-actions .btn { flex: 1; padding: 12px 10px; font-size: 0.9rem; }

.fleet-empty {
  text-align: center;
  padding: 54px 20px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  color: var(--muted);
}
.fleet-empty p { margin-bottom: 18px; font-size: 1.05rem; }

.fleet-note {
  margin-top: 26px;
  padding: 16px 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 198, 26, 0.28);
  border-radius: var(--radius);
  color: #d8dbe2;
  font-size: 0.9rem;
}
.fleet-note strong { color: var(--accent); }

/* ---------- Üstünlüklər ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.benefit-card:hover { transform: translateY(-5px); border-color: rgba(255, 198, 26, 0.4); }
.benefit-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 198, 26, 0.35);
  color: var(--accent);
  margin-bottom: 18px;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 9px; }
.benefit-card p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Şərtlər ---------- */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.panel h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 18px; }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  color: #cfd5e1;
  font-size: 0.95rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 198, 26, 0.4);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.steps-head { margin: 56px 0 26px; }
.steps-head h3 { font-size: 1.4rem; font-weight: 850; letter-spacing: -0.01em; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.step:hover { border-color: rgba(255, 198, 26, 0.4); transform: translateY(-4px); }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #14161c;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.step h4 { font-size: 1rem; font-weight: 800; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 0.89rem; }

/* ---------- Əlaqə ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.form-panel.flash { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 198, 26, 0.18); }
.form-panel h3 { margin-bottom: 22px; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #cfd5e1;
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: #0d1322;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 13px 14px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #6b7688; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 198, 26, 0.15);
}
.field select { cursor: pointer; }

.form-error { color: var(--danger); font-size: 0.88rem; font-weight: 600; min-height: 1.2em; margin: 4px 0 12px; }
.form-success { margin-top: 14px; color: var(--ok); font-weight: 600; font-size: 0.92rem; }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: border-color 0.25s ease;
}
.info-card:hover { border-color: rgba(255, 198, 26, 0.4); }
.info-icon {
  width: 48px; height: 48px;
  flex: none;
  display: grid; place-items: center;
  font-size: 1.35rem;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 198, 26, 0.3);
  border-radius: 13px;
}
.info-card small { display: block; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; margin-bottom: 3px; }
.info-card a, .info-card p { font-weight: 700; font-size: 1rem; line-height: 1.45; }
.info-card a:hover { color: var(--accent); }
.info-card .muted { color: var(--muted); font-weight: 500; font-size: 0.84rem; }

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(1.05); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 40px;
  padding: 56px 0 40px;
}
.footer-about { color: var(--muted); font-size: 0.92rem; margin-top: 16px; max-width: 26rem; }
.footer h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 0.93rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom { border-top: 1px solid var(--border); padding: 18px 0; }
.footer-bottom p { color: var(--muted); font-size: 0.85rem; text-align: center; }

/* ---------- Üzən WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #07130b;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.65);
  transition: transform 0.25s ease, background 0.25s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.1); background: var(--green-dark); }

/* ---------- Reveal animasiyası ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-sub { max-width: none; }
  .hero-media { max-width: 640px; }
  .float-chip-1 { left: 12px; }
  .float-chip-2 { right: 12px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav {
    position: fixed;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(10, 14, 23, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 18px 5vw 24px;
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    z-index: -1;
  }
  .nav.open { transform: translateY(0); }
  .nav a:not(.btn) { padding: 12px 0; font-size: 1.05rem; width: 100%; }
  .nav a:not(.btn)::after { display: none; }
  .nav-wa { margin-top: 12px; width: 100%; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding: 132px 0 56px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--border); }
  .terms-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .filters { padding: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .car-actions { flex-direction: column; }
}
