:root {
  --carbon: #07090d;
  --graphite: #121720;
  --panel: #191f2a;
  --steel: #2a303a;
  --line: #dce3ec;
  --silver: #c8d0da;
  --cold: #f7f9fc;
  --white: #ffffff;
  --blue: #2f80ff;
  --violet: #7c5cff;
  --green: #31c48d;
  --amber: #f59e0b;
  --red: #ef4444;
  --text: #10141b;
  --muted: #657080;
  --shadow: 0 14px 34px rgba(7, 9, 13, .10);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  color: var(--text);
  background: var(--cold);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 9, 13, .92);
  border-bottom: 1px solid rgba(200, 208, 218, .16);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: var(--white);
  background: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 750;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: none;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}

.btn-light {
  color: var(--carbon);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,9,13,.94) 0%, rgba(7,9,13,.78) 50%, rgba(7,9,13,.34) 100%),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/2020%20Renault%20Clio.jpg?width=2200") center right / cover;
}

.hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 42px;
  padding: 60px 0 42px;
}

.eyebrow {
  color: var(--silver);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.lead {
  max-width: 650px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.quick-search,
.surface {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(220,227,236,.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-search { padding: 14px; }

.field { display: grid; gap: 7px; margin-bottom: 12px; }
.field label { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
}

.section { padding: 70px 0; }
.section.dark { color: var(--white); background: var(--carbon); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.section-head p { max-width: 640px; color: var(--muted); }
.dark .section-head p { color: rgba(255,255,255,.64); }

.category-grid,
.vehicle-grid,
.kpi-grid,
.advantages,
.contact-grid {
  display: grid;
  gap: 18px;
}

.category-grid { grid-template-columns: repeat(5, 1fr); }
.vehicle-grid { grid-template-columns: repeat(3, 1fr); }
.kpi-grid { grid-template-columns: repeat(4, 1fr); }
.advantages { grid-template-columns: repeat(4, 1fr); }
.contact-grid { grid-template-columns: .9fr 1.1fr; }

.category-card,
.vehicle-card,
.dash-card,
.info-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.category-card { min-height: 128px; padding: 18px; display: flex; flex-direction: column; justify-content: end; background: var(--white); }
.category-card strong { font-size: 18px; }
.category-card span, .vehicle-meta, .muted { color: var(--muted); }

.vehicle-card { box-shadow: 0 8px 22px rgba(7,9,13,.06); }
.vehicle-media { aspect-ratio: 16 / 10; background: #d9e1ec; overflow: hidden; }
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-body { padding: 18px; }
.card-topline { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; }
.vehicle-category {
  color: #263244;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.vehicle-title { display: flex; align-items: start; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.vehicle-title h3 { margin-bottom: 2px; font-size: 20px; }
.price { color: var(--blue); font-weight: 900; font-size: 22px; white-space: nowrap; }
.price small { color: var(--muted); font-size: 12px; font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 14px 0 16px;
  color: #394557;
  font-size: 13px;
}
.card-specs span {
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfe;
}
.chip, .badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eef3fa;
  color: #314052;
  font-size: 12px;
  font-weight: 800;
}
.badge.available { color: #0f6b4c; background: rgba(49,196,141,.14); }
.badge.warning { color: #8a5600; background: rgba(245,158,11,.17); }
.badge.offline { color: #8f1d1d; background: rgba(239,68,68,.13); }

.filter-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 12px;
  padding: 16px;
  margin-bottom: 24px;
}
.filter-bar select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,9,13,.94), rgba(18,23,32,.82)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/2023%20Renault%20Trafic%201.jpg?width=2200") center / cover;
  padding: 86px 0;
}

.page-hero.compact { padding: 62px 0; }
.page-hero p { max-width: 670px; color: rgba(255,255,255,.72); }

.gallery-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.gallery-main {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--steel);
}
.gallery-main img, .thumbs img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.thumbs button { aspect-ratio: 16 / 10; padding: 0; border: 2px solid transparent; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.thumbs button.active { border-color: var(--blue); }

.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 18px 0; }
.spec { padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.spec span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.spec strong { font-size: 18px; }
.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 8px 0 18px;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 22px;
  color: #263244;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.practical-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 18px;
}
.practical-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.practical-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.practical-list strong { color: #263244; font-size: 14px; }

.booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 24px; align-items: start; }
.steps { display: flex; gap: 8px; margin-bottom: 18px; }
.step-pill { flex: 1; min-height: 8px; border-radius: 99px; background: var(--line); }
.step-pill.active { background: var(--blue); }
.booking-step { display: none; padding: 22px; }
.booking-step.active { display: block; }
.summary { position: sticky; top: 94px; padding: 20px; }
.summary-row { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); }

.dashboard {
  background: var(--carbon);
  color: var(--white);
}
.dash-card {
  padding: 18px;
  color: var(--white);
  background: linear-gradient(145deg, #171d27, #0e1219);
  border-color: rgba(200,208,218,.14);
}
.dash-card span { color: rgba(255,255,255,.58); font-size: 13px; }
.dash-card strong { display: block; margin-top: 8px; font-size: 32px; }
.dash-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; margin-top: 18px; }
.table-like { padding: 8px; }
.row {
  display: grid;
  grid-template-columns: 1.2fr .8fr .7fr;
  gap: 12px;
  align-items: center;
  padding: 13px 10px;
  border-bottom: 1px solid rgba(200,208,218,.12);
}

.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq-question { width: 100%; padding: 18px; display: flex; justify-content: space-between; border: 0; background: var(--white); font-weight: 850; text-align: left; cursor: pointer; }
.faq-answer { display: none; padding: 0 18px 18px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.map-block {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7,9,13,.50), rgba(47,128,255,.22)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255,255,255,.68);
  background: var(--carbon);
  border-top: 1px solid rgba(200,208,218,.14);
}
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* Direction artistique refondue */
body {
  background:
    linear-gradient(180deg, #f4f7fb 0%, #eef2f7 46%, #f7f9fc 100%);
}

.hero-magazine {
  min-height: calc(100vh - 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 72% 20%, rgba(47,128,255,.18), transparent 34%),
    linear-gradient(135deg, #07090d 0%, #111821 60%, #1b2130 100%);
  overflow: hidden;
}

.hero-magazine .hero-grid {
  min-height: calc(100vh - 72px);
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(24px, 5vw, 72px);
  padding: 54px 0 64px;
}

.hero-copy {
  align-self: center;
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 520px;
  font-size: clamp(42px, 5.4vw, 74px);
  letter-spacing: 0;
}

.hero-copy .lead {
  max-width: 430px;
  color: rgba(255,255,255,.72);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  margin-right: -7vw;
  align-self: stretch;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
  filter: saturate(.94) contrast(1.04);
  box-shadow: -28px 36px 90px rgba(0,0,0,.38);
}

.float-card {
  position: absolute;
  min-width: 118px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7,9,13,.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
  font-weight: 850;
}

.float-card strong { display: block; font-size: 30px; line-height: 1; }
.float-card span { color: rgba(255,255,255,.68); font-size: 13px; }
.price-float { left: -44px; top: 16%; }
.status-float { right: 16%; top: 10%; color: #bff2d8; }
.mileage-float { left: 7%; bottom: 18%; }
.seats-float { right: 22%; bottom: 10%; }

.fleet-section {
  padding-top: 96px;
  background: #f4f7fb;
}

.editorial-head {
  align-items: center;
  margin-bottom: 36px;
}

.fleet-mosaic {
  display: grid;
  grid-template-columns: 1.1fr .8fr .7fr;
  grid-auto-rows: 210px;
  gap: 18px;
}

.fleet-mosaic .category-card {
  position: relative;
  min-height: 0;
  padding: 24px;
  justify-content: space-between;
  border: 0;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16,20,27,.08);
}

.fleet-mosaic .feature-card { grid-row: span 2; background: #101722; color: var(--white); }
.fleet-mosaic .wide-card { grid-column: span 2; }
.fleet-mosaic .dark-card { background: #171f2b; color: var(--white); }
.fleet-mosaic .violet-card { background: #20253a; color: var(--white); }
.fleet-mosaic .category-card span { color: rgba(47,128,255,.78); }
.fleet-mosaic .category-card strong { position: relative; z-index: 1; font-size: clamp(22px, 3vw, 42px); }
.fleet-mosaic .category-card small { position: relative; z-index: 1; max-width: 270px; color: rgba(255,255,255,.68); font-size: 14px; }
.fleet-mosaic .image-card { color: var(--white); overflow: hidden; }
.fleet-mosaic .image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.fleet-mosaic .image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7,9,13,.72));
}
.fleet-mosaic .image-card:hover img { transform: scale(1.035); }

.selection-band {
  position: relative;
  margin-top: 24px;
  background:
    linear-gradient(180deg, #07090d, #111721);
}

.selection-band .vehicle-grid {
  grid-template-columns: 1.08fr .92fr 1fr;
  align-items: start;
}

.selection-band .vehicle-card:nth-child(2) { margin-top: 42px; }
.selection-band .vehicle-card:nth-child(3) { margin-top: -18px; }

.assurance-strip {
  background: #eef2f7;
}

.assurance-strip .advantages {
  grid-template-columns: 1.2fr .8fr 1fr .9fr;
}

.assurance-strip .info-card {
  background: transparent;
  border-color: rgba(16,20,27,.12);
}

.catalogue-section {
  background: #edf2f7;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.catalogue-sidebar {
  position: sticky;
  top: 96px;
  display: block;
  padding: 20px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
}

.filter-title {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.filter-title strong { font-size: 20px; }
.mobile-filter summary { display: none; }
.filter-fields { display: grid; gap: 14px; }
.filter-fields label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.catalogue-head {
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(16,20,27,.12);
}

.catalogue-masonry {
  display: block;
  columns: 3 250px;
  column-gap: 18px;
}

.catalogue-masonry .vehicle-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
}

.catalogue-masonry .vehicle-card:nth-child(3n+1) .vehicle-media { aspect-ratio: 4 / 5; }
.catalogue-masonry .vehicle-card:nth-child(3n+2) .vehicle-media { aspect-ratio: 16 / 11; }
.catalogue-masonry .vehicle-card:nth-child(3n) .vehicle-media { aspect-ratio: 1 / 1; }

.vehicle-card {
  border: 0;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 42px rgba(16,20,27,.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16,20,27,.16);
}

.vehicle-media {
  position: relative;
  border-radius: 8px;
}

.vehicle-card .vehicle-media img {
  transition: transform .35s ease, filter .35s ease;
}

.vehicle-card:hover .vehicle-media img {
  transform: scale(1.035);
  filter: saturate(.94);
}

.media-price,
.media-status {
  position: absolute;
  z-index: 2;
}

.media-price {
  left: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(7,9,13,.72);
  backdrop-filter: blur(12px);
  font-weight: 900;
  font-size: 20px;
}

.media-price small { display: block; color: rgba(255,255,255,.68); font-size: 11px; }
.media-status { top: 12px; right: 12px; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.card-topline span:last-child { color: var(--muted); font-size: 12px; font-weight: 800; }
.vehicle-card .btn { width: 100%; }

.vehicle-hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  color: var(--white);
  background: var(--carbon);
}

.vehicle-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05);
}

.vehicle-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,9,13,.84), rgba(7,9,13,.34) 58%, rgba(7,9,13,.68));
}

.vehicle-hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 72vh;
  display: flex;
  align-items: end;
  padding: 0 0 70px;
}

.vehicle-hero-content h1 {
  max-width: 660px;
  font-size: clamp(48px, 7vw, 96px);
}

.hero-booking-line {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-booking-line .price {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #fff;
  background: rgba(7,9,13,.48);
  backdrop-filter: blur(14px);
}

.vehicle-detail-section {
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.vehicle-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 26px;
  align-items: start;
}

.vehicle-detail-main {
  display: grid;
  gap: 18px;
}

.vertical-gallery {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px;
  direction: rtl;
}

.vertical-gallery > * { direction: ltr; }
.vertical-gallery .gallery-main { aspect-ratio: 16 / 11; }
.vertical-gallery .thumbs {
  margin-top: 0;
  grid-template-columns: 1fr;
  align-content: start;
}

.reserve-sticky {
  position: sticky;
  top: 96px;
  padding: 22px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
}

.reserve-sticky .btn { width: 100%; }
.detail-panel { background: #fff; }

.faq-section {
  background: #101722;
  color: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
  max-width: 420px;
}

.faq-intro p { color: rgba(255,255,255,.66); }
.faq-list { max-width: none; }
.faq-item {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
}
.faq-question {
  color: #fff;
  background: transparent;
}
.faq-answer {
  color: rgba(255,255,255,.68);
}

.contact-agency {
  background:
    linear-gradient(90deg, #eef2f7 0%, #eef2f7 50%, #101722 50%, #101722 100%);
}

.agency-layout {
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
}

.agency-card {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(16,20,27,.10);
}

.agency-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.agency-info div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.agency-info span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.agency-info strong { display: block; margin-top: 4px; }
.contact-form {
  margin-top: 56px;
  background: rgba(255,255,255,.94);
}

@media (max-width: 920px) {
  .mobile-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--graphite);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
  }
  .nav-links.open { display: flex; }
  .hero-grid, .gallery-layout, .booking-layout, .dash-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 58px 0; }
  .category-grid, .advantages, .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { grid-template-columns: repeat(2, 1fr); }
  .summary { position: static; }
  .hero-magazine .hero-grid,
  .catalogue-layout,
  .vehicle-detail-layout,
  .faq-layout,
  .agency-layout {
    grid-template-columns: 1fr;
  }
  .hero-magazine,
  .hero-magazine .hero-grid {
    min-height: auto;
  }
  .hero-visual {
    min-height: 420px;
    margin: 0;
  }
  .hero-visual img {
    min-height: 420px;
    border-radius: 8px;
  }
  .price-float { left: 14px; top: 16px; }
  .status-float { right: 14px; top: 16px; }
  .mileage-float { left: 14px; bottom: 16px; }
  .seats-float { right: 14px; bottom: 16px; }
  .fleet-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }
  .fleet-mosaic .feature-card,
  .fleet-mosaic .wide-card {
    grid-column: span 2;
    grid-row: span 1;
  }
  .selection-band .vehicle-grid,
  .assurance-strip .advantages {
    grid-template-columns: repeat(2, 1fr);
  }
  .selection-band .vehicle-card:nth-child(n) {
    margin-top: 0;
  }
  .catalogue-sidebar,
  .faq-intro,
  .reserve-sticky {
    position: static;
  }
  .filter-title { display: none; }
  .mobile-filter summary {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 850;
  }
  .catalogue-masonry {
    columns: 2 240px;
  }
  .vehicle-hero,
  .vehicle-hero-overlay {
    min-height: 58vh;
  }
  .vertical-gallery {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .vertical-gallery .thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-agency {
    background: #eef2f7;
  }
  .contact-form {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 54px 0; }
  .hero { background-position: center; }
  .hero-grid { gap: 26px; }
  .lead { font-size: 16px; }
  .category-grid, .vehicle-grid, .advantages, .kpi-grid, .filter-bar, .spec-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .row { grid-template-columns: 1fr; }
  .hero-actions .btn, .quick-search .btn, .filter-bar .btn { width: 100%; }
  h1 { font-size: 36px; line-height: 1.08; }
  .page-hero h1 { max-width: 10ch; font-size: 32px; }
  .page-hero p { max-width: 34ch; }
  .page-hero.compact { padding: 54px 0; }
  .card-specs { grid-template-columns: 1fr; }
  .practical-list div { grid-template-columns: 1fr; gap: 3px; }
  .hero-copy h1 {
    font-size: 38px;
    max-width: 12ch;
  }
  .hero-magazine .hero-grid {
    display: block;
  }
  .hero-copy,
  .hero-visual {
    width: 100%;
    max-width: 100%;
  }
  .hero-copy .lead {
    max-width: 28ch;
  }
  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }
  .float-card {
    min-width: auto;
    padding: 10px 11px;
    font-size: 13px;
  }
  .float-card strong { font-size: 22px; }
  .status-float,
  .seats-float {
    right: auto;
    left: 148px;
    transform: scale(.92);
    transform-origin: left center;
  }
  .seats-float { bottom: 16px; }
  .fleet-mosaic,
  .selection-band .vehicle-grid,
  .assurance-strip .advantages,
  .agency-info {
    grid-template-columns: 1fr;
  }
  .fleet-mosaic .feature-card,
  .fleet-mosaic .wide-card {
    grid-column: span 1;
  }
  .catalogue-masonry {
    columns: 1;
  }
  .catalogue-head {
    display: flex;
    align-items: center;
  }
  .catalogue-head .btn {
    width: auto;
  }
  .vehicle-hero-content h1 {
    max-width: 8ch;
    font-size: 44px;
  }
  .vehicle-hero-overlay {
    padding-bottom: 34px;
  }
  .hero-booking-line .btn {
    width: 100%;
  }
  .vertical-gallery .thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-form .btn {
    width: 100%;
  }
}
