/* Doble A Rent Car — sistema visual */
:root {
  --primary: #d60000;
  --primary-dark: #a80000;
  --primary-soft: #ffe5e1;
  --black: #111111;
  --gray-900: #1a1c1c;
  --gray-700: #3a3c3c;
  --gray-600: #5f5e5e;
  --gray-500: #7a7a7a;
  --gray-400: #b5b5b5;
  --gray-300: #e2e2e2;
  --gray-200: #eeeeee;
  --gray-100: #f3f3f4;
  --gray-50: #f9f9f9;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 4px 20px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.1);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1280px;
  --header-h: 80px;
}

/* Reserve space for JS-injected shell to avoid first-paint layout shifts. */
#header-slot {
  display: block;
  min-height: 116px;
}

#footer-slot {
  display: block;
  min-height: 360px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11" on, "ss01" on, "ss03" on, "kern" on, "calt" on, "liga" on;
  font-optical-sizing: auto;
}
body {
  margin: 0;
  font-family: 'Inter', 'Inter var', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background:
    radial-gradient(circle at top left, rgba(214,0,0,.045), transparent 24%),
    radial-gradient(circle at top right, rgba(0,0,0,.035), transparent 22%),
    var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11" on, "ss01" on, "ss03" on, "kern" on, "calt" on, "liga" on;
  font-optical-sizing: auto;
}
img { max-width: 100%; height: auto; display: block; image-rendering: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; -webkit-font-smoothing: antialiased; }
input, textarea, select {
  font-family: inherit; font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  line-height: 1.2; margin: 0 0 .6em;
  letter-spacing: -0.018em;
  color: var(--gray-900);
  font-feature-settings: "ss01" on, "cv11" on, "kern" on;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3rem); font-weight: 800; letter-spacing: -0.028em; }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.1rem); font-weight: 700; letter-spacing: -0.022em; }
h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.014em; }
h4 { font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; text-wrap: pretty; }
strong, b { font-weight: 700; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
  isolation: isolate;
}
.section::before,
.section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.section::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(214,0,0,.055) 0%, rgba(214,0,0,0) 70%);
}
.section::after {
  width: 260px;
  height: 260px;
  bottom: -140px;
  left: -100px;
  background: radial-gradient(circle, rgba(17,17,17,.05) 0%, rgba(17,17,17,0) 72%);
}
.section > .container { position: relative; z-index: 1; }
.section-tight { padding: 48px 0; }
.muted { color: var(--gray-600); }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; letter-spacing: .02em;
  border: 1px solid transparent; transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--gray-900); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--gray-900); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.22); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: #1ebe5b; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 14px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 17px; }

/* Header */
.top-flight-strip {
  background: linear-gradient(90deg, #8a0000 0%, #d60000 50%, #8a0000 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.top-flight-strip .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.top-flight-strip strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.top-flight-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  animation: flight-strip-plane 2.6s ease-in-out infinite;
}
.top-flight-strip__icon svg {
  width: 18px;
  height: 18px;
}
@keyframes flight-strip-plane {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  50% { transform: translateX(5px) translateY(-1px) rotate(4deg); }
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 50px; width: auto; }
.brand-name { font-weight: 800; letter-spacing: -0.01em; font-size: 17px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 500; font-size: 14px; color: var(--gray-700); text-transform: uppercase; letter-spacing: .06em; }
.nav a:hover, .nav a.active { color: var(--primary); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 46px;
  padding: 6px;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 24px rgba(17,17,17,.06);
}
.lang-switcher__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(214,0,0,.08);
  border-radius: 50%;
  flex: 0 0 auto;
}
.lang-switcher__icon svg {
  width: 16px;
  height: 16px;
}
.lang-switcher__option {
  min-width: 40px;
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.lang-switcher__option:hover {
  color: var(--gray-900);
  background: rgba(17,17,17,.05);
}
.lang-switcher__option.is-active {
  background: linear-gradient(135deg, var(--primary) 0%, #9f0000 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(214,0,0,.22);
}
.header-wa-btn {
  min-height: 46px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #29d467 0%, #17b956 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 211, 102, .22);
}
.header-wa-btn:hover {
  background: linear-gradient(135deg, #24c660 0%, #149f4b 100%);
  box-shadow: 0 12px 26px rgba(37, 211, 102, .28);
  transform: translateY(-1px);
}
.header-wa-btn__icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex: 0 0 auto;
}
.header-wa-btn__icon svg {
  width: 16px;
  height: 16px;
}
.header-wa-btn__text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
}
.menu-toggle {
  display: none; background: none; border: 0; padding: 8px; border-radius: var(--radius-sm);
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-900); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .top-flight-strip .container {
    min-height: 38px;
    gap: 8px;
  }

  .top-flight-strip strong {
    font-size: 12px;
    letter-spacing: .03em;
  }

  .nav, .header-cta .btn-text { display: none; }
  .site-header .container {
    gap: 12px;
  }
  .header-cta {
    margin-left: auto;
    gap: 10px;
  }
  .lang-switcher {
    min-height: 42px;
    padding: 5px;
  }
  .lang-switcher__icon {
    width: 28px;
    height: 28px;
  }
  .lang-switcher__option {
    min-width: 36px;
    height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }
  .menu-toggle { display: block; }
  .site-header.open .nav {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; padding: 20px; gap: 18px; border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }
  .site-header.open .nav a { padding: 8px 0; font-size: 15px; }
}

@media (max-width: 520px) {
  .brand img {
    height: 42px;
  }
  .lang-switcher__icon {
    display: none;
  }
  .lang-switcher__option {
    min-width: 34px;
    padding: 0 9px;
  }
}

/* Hero */
.hero {
  position: relative; color: #fff; overflow: hidden;
  min-height: 560px; display: flex; align-items: center;
  background: linear-gradient(135deg, #1a1c1c 0%, #3a0000 100%);
}
.hero-home {
  min-height: 620px;
  background-image: url("../../Banners/Portada Home.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 46%, rgba(0,0,0,.2) 100%),
    linear-gradient(0deg, rgba(0,0,0,.34) 0%, transparent 34%);
}
.hero .container { position: relative; z-index: 2; padding: 90px 20px; }
.hero h1 { color: #fff; max-width: 720px; }
.hero p { font-size: 1.1rem; max-width: 640px; color: rgba(255,255,255,.9); margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-home .container {
  max-width: 1280px;
  padding-top: 108px;
  padding-bottom: 112px;
  margin: 0 auto;
}
.hero-home-eyebrow {
  color: #ffb4a8;
}
.hero-home h1 {
  max-width: 780px;
}
.hero-home p {
  max-width: 700px;
  margin-bottom: 22px;
}
.hero-home-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-home-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(17,17,17,.34);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(10px);
}

.hero-sm { min-height: 280px; }
.hero-sm .container { padding: 60px 20px; }

/* Page header (less tall) */
.page-head {
  background: linear-gradient(135deg, #1a1c1c 0%, #2b0303 100%);
  color: #fff; padding: 70px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-head-banner {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.58) 46%, rgba(0,0,0,.34) 100%),
    url("../../Banners/Paginas.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.08), transparent 18%),
    radial-gradient(circle at 85% 30%, rgba(214,0,0,.18), transparent 22%);
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { color: #fff; }
.page-head p { color: rgba(255,255,255,.85); max-width: 640px; }
.page-head .breadcrumb,
.page-head .breadcrumb a,
.page-head .breadcrumb span {
  color: rgba(255,255,255,.72);
}
.page-head .breadcrumb a:hover {
  color: #fff;
}
.not-found-hero {
  padding: 84px 0 68px;
}
.not-found-hero h1 {
  max-width: 860px;
}
.not-found-hero p {
  max-width: 720px;
}
.not-found-catalog {
  padding-top: 56px;
}
.landing-hero {
  min-height: 460px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
  isolation: isolate;
}
.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.08), transparent 18%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,.04), transparent 20%);
  pointer-events: none;
  z-index: 0;
}
.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 46%, rgba(0,0,0,.2) 100%),
    linear-gradient(0deg, rgba(0,0,0,.34) 0%, transparent 34%);
  pointer-events: none;
}
.landing-hero h1 {
  max-width: 820px;
  color: #fff;
}
.landing-hero p {
  max-width: 700px;
  color: rgba(255,255,255,.92);
}
.landing-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 18px;
  padding-bottom: 18px;
}
.landing-hero .hero-actions {
  position: relative;
  z-index: 1;
}
.landing-hero-santo-domingo {
  background-image: url("../../Banners/Rent Car.webp");
}
.landing-hero-airport {
  background-image: url("../../Banners/Aeropuerto.webp");
}
.landing-hero-la-caleta {
  background-image: url("../../Banners/Rent Car.webp");
}
.landing-hero-family {
  background-image: url("../../Banners/Familiar2.webp");
}
.landing-hero-premium {
  background-image: url("../../Banners/Portada Home.webp");
}
.landing-hero-suv {
  background-image: url("../../Banners/Rent Car.webp");
}
.landing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.landing-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(17,17,17,.34);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}
.landing-card {
  position: relative;
  overflow: hidden;
}
.landing-card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Benefits */
.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: #fff; padding: 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); margin-top: -40px; position: relative; z-index: 3;
}
.benefit { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon {
  width: 46px; height: 46px; flex: 0 0 auto;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.benefit h4 { font-size: 14px; margin: 2px 0; text-transform: uppercase; letter-spacing: .04em; }
.benefit p { font-size: 13px; color: var(--gray-600); margin: 0; }
@media (max-width: 800px) { .benefits { grid-template-columns: repeat(2, 1fr); margin-top: -20px; } }
@media (max-width: 480px) { .benefits { grid-template-columns: 1fr; } }

.airport-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 20px;
  padding: 40px 28px;
  border: 1px solid rgba(214,0,0,.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(214,0,0,.06) 0%, rgba(255,255,255,.96) 38%, rgba(17,17,17,.03) 100%);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.airport-cta > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.airport-cta h2 {
  margin: 0;
  font-size: clamp(1.35rem, 1vw + 1rem, 1.9rem);
}
.airport-cta p {
  margin: 8px 0 0;
  max-width: 700px;
  color: var(--gray-600);
}
.airport-cta__btn {
  gap: 10px;
  min-width: 230px;
  padding-inline: 24px;
  align-self: center;
}
.airport-cta__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  animation: airport-cta-plane 3.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes airport-cta-plane {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  25% { transform: translateX(.5px) translateY(-.5px) rotate(1.5deg); }
  50% { transform: translateX(2px) translateY(-1px) rotate(3deg); }
  75% { transform: translateX(1px) translateY(0) rotate(1deg); }
}
@media (max-width: 800px) {
  .airport-cta {
    margin: 32px 0 12px;
    padding: 30px 20px;
  }

  .airport-cta > div {
    align-items: center;
    text-align: center;
  }

  .airport-cta .btn {
    width: auto;
    min-width: min(100%, 230px);
    margin: 0 auto;
  }
}

/* Cards / Vehicle grid */
.section-head { margin-bottom: 36px; display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.section-head p { margin: 6px 0 0; color: var(--gray-600); }

.btn-fleet-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: var(--gray-900);
  box-shadow: 0 10px 22px rgba(17,17,17,.04);
}
.btn-fleet-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(214,0,0,0), rgba(214,0,0,.96), rgba(214,0,0,0)) no-repeat,
    linear-gradient(180deg, rgba(214,0,0,0), rgba(214,0,0,.96), rgba(214,0,0,0)) no-repeat,
    linear-gradient(90deg, rgba(214,0,0,0), rgba(214,0,0,.96), rgba(214,0,0,0)) no-repeat,
    linear-gradient(180deg, rgba(214,0,0,0), rgba(214,0,0,.96), rgba(214,0,0,0)) no-repeat;
  background-size: 86px 2px, 2px 42px, 86px 2px, 2px 42px;
  background-position: -110px 0, calc(100% - 1px) -46px, calc(100% + 110px) calc(100% - 1px), 0 calc(100% + 46px);
  animation: fleet-cta-border 4.2s linear infinite;
  pointer-events: none;
  z-index: -1;
}
.btn-fleet-cta::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: #fff;
  border: 1px solid rgba(214,0,0,.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7), 0 12px 24px rgba(214,0,0,.04);
  pointer-events: none;
  z-index: -2;
}
.btn-fleet-cta:hover {
  color: var(--primary);
  box-shadow: 0 14px 28px rgba(214,0,0,.08), 0 8px 18px rgba(17,17,17,.04);
}

@keyframes fleet-cta-border {
  0% {
    background-position: -110px 0, calc(100% - 1px) -46px, calc(100% + 110px) calc(100% - 1px), 0 calc(100% + 46px);
  }
  24% {
    background-position: calc(100% + 24px) 0, calc(100% - 1px) -46px, calc(100% + 110px) calc(100% - 1px), 0 calc(100% + 46px);
  }
  25% {
    background-position: calc(100% + 110px) 0, calc(100% - 1px) -46px, calc(100% + 110px) calc(100% - 1px), 0 calc(100% + 46px);
  }
  49% {
    background-position: calc(100% + 110px) 0, calc(100% - 1px) calc(100% + 22px), calc(100% + 110px) calc(100% - 1px), 0 calc(100% + 46px);
  }
  50% {
    background-position: calc(100% + 110px) 0, calc(100% - 1px) calc(100% + 46px), calc(100% + 110px) calc(100% - 1px), 0 calc(100% + 46px);
  }
  74% {
    background-position: calc(100% + 110px) 0, calc(100% - 1px) calc(100% + 46px), -24px calc(100% - 1px), 0 calc(100% + 46px);
  }
  75% {
    background-position: calc(100% + 110px) 0, calc(100% - 1px) calc(100% + 46px), -110px calc(100% - 1px), 0 calc(100% + 46px);
  }
  99% {
    background-position: calc(100% + 110px) 0, calc(100% - 1px) calc(100% + 46px), -110px calc(100% - 1px), 0 -22px;
  }
  100% {
    background-position: calc(100% + 110px) 0, calc(100% - 1px) calc(100% + 46px), -110px calc(100% - 1px), 0 -46px;
  }
}

.grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.not-found-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .catalog-grid,
  .not-found-grid {
    grid-template-columns: 1fr;
  }
}
.card-vehicle {
  background: rgba(255,255,255,.92); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
}
.card-vehicle:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-vehicle .img-wrap {
  aspect-ratio: 16 / 10; background: var(--gray-100); overflow: hidden;
}
.card-vehicle .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card-vehicle:hover .img-wrap img { transform: scale(1.04); }
.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: 11px; font-weight: 700; letter-spacing: .15em; color: var(--primary); text-transform: uppercase; }
.card-title { font-size: 1.15rem; font-weight: 700; margin: 4px 0 12px; }
.card-specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 14px;
  font-size: 13px; color: var(--gray-700); margin-bottom: 16px;
}
.card-specs span { display: inline-flex; align-items: center; gap: 6px; }
.card-specs svg { flex: 0 0 auto; color: var(--gray-500); }
.card-price {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(214,0,0,.14);
  background: linear-gradient(180deg, rgba(214,0,0,.06) 0%, rgba(255,255,255,.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.card-price__value {
  color: var(--primary);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.card-price__hint {
  margin-top: 4px;
  font-size: 12px;
  color: var(--gray-600);
}
.card-price.is-unavailable {
  border-color: var(--gray-200);
  background: rgba(255,255,255,.92);
}
.card-price.is-unavailable .card-price__value {
  color: var(--gray-900);
}
.card-actions { margin-top: auto; display: flex; gap: 8px; }
.card-actions .btn { flex: 1; padding: 11px 12px; font-size: 14px; }
.btn-card-wa {
  background: linear-gradient(180deg, #e11a1a 0%, #c40808 100%);
  color: #fff;
  border: 1px solid rgba(168,0,0,.18);
  box-shadow: 0 8px 18px rgba(214,0,0,.14), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-card-wa:hover {
  background: linear-gradient(180deg, #cf1010 0%, #a80000 100%);
  box-shadow: 0 12px 24px rgba(214,0,0,.18), inset 0 1px 0 rgba(255,255,255,.18);
  transform: translateY(-1px);
}

/* Filters */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 0; flex: 1 1 auto; }
.catalog-section {
  padding-top: 72px;
  scroll-margin-top: calc(var(--header-h) + 18px);
}
.catalog-price-note {
  display: inline-flex;
  align-items: center;
  max-width: 560px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(214,0,0,.14);
  border-left: 4px solid rgba(214,0,0,.72);
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 24px rgba(17,17,17,.04);
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.5;
}
.chip {
  background: var(--gray-200); color: var(--gray-900);
  padding: 9px 16px; border-radius: 999px; border: 0;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: background .15s ease, color .15s ease;
}
.chip:hover { background: var(--gray-300); }
.chip.active { background: var(--primary); color: #fff; }
.search-box {
  display: flex; align-items: center; gap: 10px; padding: 11px 16px;
  background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius);
  margin-bottom: 0; max-width: 420px; width: 100%; flex: 0 0 min(420px, 100%);
}
.search-box input {
  border: 0;
  outline: 0;
  flex: 1;
  background: transparent;
  font-size: 16px;
}

.empty { text-align: center; padding: 60px 20px; color: var(--gray-600); }
.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.catalog-pagination.is-hidden {
  display: none;
}
.page-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: #fff;
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 600;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.page-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}
.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.page-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* Detail page */
.breadcrumb { font-size: 13px; color: var(--gray-600); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; color: var(--gray-400); }

.detail-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px;
}
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; gap: 28px; } }

.vehicle-detail-section {
  padding-top: 28px;
}
.detail-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
}
.detail-heading__title {
  margin: 0;
}
.detail-heading__meta {
  margin-bottom: 28px;
}
.detail-price {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: right;
}
.detail-price__value {
  color: var(--primary);
  font-size: clamp(1.35rem, 1.05rem + .7vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.detail-price__note {
  margin: 0;
  color: var(--gray-600);
  font-size: 13px;
}
.detail-price.is-unavailable {
  background: transparent;
}
.detail-price.is-unavailable .detail-price__value {
  color: var(--gray-900);
}
@media (max-width: 900px) {
  .detail-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .detail-price {
    align-items: flex-start;
    text-align: left;
  }
}

.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery-main {
  aspect-ratio: 16 / 10; background: var(--gray-100); border-radius: var(--radius-lg); overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.thumb {
  aspect-ratio: 1; background: var(--gray-100); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; border: 2px solid transparent;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--primary); }

.detail-side { display: flex; flex-direction: column; gap: 24px; }
.specs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  background: #fff; padding: 20px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
}
.spec { display: flex; gap: 10px; align-items: flex-start; }
.spec-icon { width: 36px; height: 36px; background: var(--gray-100); color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.spec-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-600); }
.spec-value { font-size: 14px; font-weight: 600; }

.card-block {
  background: rgba(255,255,255,.94); padding: 24px; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.card-block h3 { margin-top: 0; }
.detail-form-card {
  border: 1px solid rgba(214,0,0,.12);
  box-shadow:
    0 14px 34px rgba(17,17,17,.05),
    0 0 0 1px rgba(214,0,0,.04),
    0 0 24px rgba(214,0,0,.06);
  background:
    radial-gradient(circle at top right, rgba(214,0,0,.06), transparent 22%),
    rgba(255,255,255,.96);
}
.detail-highlights {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}
.detail-highlights h4 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-700);
}
.highlights-list {
  margin: 0;
  padding-left: 18px;
  color: var(--gray-700);
}
.highlights-list li {
  margin: 0 0 8px;
  line-height: 1.5;
}
.highlights-list li:last-child { margin-bottom: 0; }
.detail-airport-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(214,0,0,.12);
  background:
    radial-gradient(circle at top right, rgba(214,0,0,.08), transparent 26%),
    rgba(255,255,255,.96);
}
.detail-airport-cta__icon {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: linear-gradient(180deg, rgba(214,0,0,.12), rgba(214,0,0,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  animation: detail-airport-plane 2.8s ease-in-out infinite;
}
.detail-airport-cta__icon svg {
  width: 26px;
  height: 26px;
}
.detail-airport-cta__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.detail-airport-cta .eyebrow {
  margin-bottom: 10px;
}
.detail-airport-cta h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}
.detail-airport-cta p {
  margin: 0 0 16px;
  max-width: 52ch;
}
@keyframes detail-airport-plane {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
  50% { transform: translateX(5px) translateY(-2px) rotate(5deg); }
}

/* Form */
.form-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.field input, .field textarea, .field select {
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  padding: 12px 14px; background: #fff; font-size: 16px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--gray-900); box-shadow: 0 0 0 3px rgba(0,0,0,.05);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-status {
  min-height: 1.25em;
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--gray-600);
  text-align: center;
  opacity: 0;
  transition: opacity .18s ease;
}
.form-status.is-visible {
  opacity: 1;
}
.btn[disabled] {
  opacity: .82;
  cursor: wait;
}

/* WhatsApp lead modal */
body.modal-open {
  overflow: hidden;
}
.wa-modal[hidden] {
  display: none;
}
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}
.wa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .6);
  backdrop-filter: blur(10px);
}
.wa-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(214,0,0,.08), transparent 22%),
    rgba(255,255,255,.98);
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.wa-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(17,17,17,.06);
  color: var(--gray-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}
.wa-modal__close:hover {
  background: rgba(17,17,17,.1);
}
.wa-modal__head {
  margin-bottom: 18px;
}
.wa-modal__head h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 1rem + 1vw, 1.9rem);
}
.wa-modal__head p {
  margin: 0;
  color: var(--gray-600);
}
.wa-modal__booking-fields[hidden] {
  display: none;
}
.wa-modal__section--hidden {
  display: none !important;
}
.wa-modal__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wa-modal__dialog input[readonly] {
  background: var(--gray-100);
  color: var(--gray-700);
}
.wa-modal__form {
  display: grid;
  gap: 16px;
}
.wa-modal__form .btn {
  margin-top: 4px;
}

/* FAQ Accordion */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 18px 0;
  font-size: 16px; font-weight: 600; color: var(--gray-900);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.faq-q::after { content: "+"; color: var(--primary); font-size: 22px; transition: transform .2s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 0 18px; color: var(--gray-700); }

/* WhatsApp floating */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* Footer */
.site-footer {
  background: #111; color: #d8d8d8; padding: 56px 0 24px; margin-top: 64px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 36px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 14px; }
.site-footer a { display: block; padding: 5px 0; color: #d8d8d8; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 50px; }
.footer-brand p { color: #aaa; font-size: 14px; margin-top: 12px; max-width: 320px; }
.footer-bottom { border-top: 1px solid #2a2a2a; padding-top: 20px; font-size: 13px; color: #888; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-credit { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.footer-credit a { display: inline; padding: 0; }
.footer-code-anim {
  display: inline-block;
  margin-left: 4px;
  font-weight: 700;
  color: #b5b5b5;
  animation: footerCodeBlink 1.5s ease-in-out infinite;
}
.footer-code-anim::before { content: "</>"; }
@keyframes footerCodeBlink {
  0%, 100% { opacity: .45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-1px); }
}

/* Trust / steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: left; padding: 24px; background: rgba(255,255,255,.94); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.step-num { display: inline-flex; width: 36px; height: 36px; background: var(--primary); color: #fff; border-radius: 50%; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 12px; }
.step h3 { font-size: 1rem; margin: 0 0 6px; }
.step p { color: var(--gray-600); font-size: 14px; margin: 0; }

/* Trust strip */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card { background: rgba(255,255,255,.94); padding: 28px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.trust-card .icon { width: 46px; height: 46px; background: var(--primary-soft); color: var(--primary); border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.trust-card h3 { font-size: 1.1rem; margin: 0 0 6px; }
.trust-card p { color: var(--gray-600); font-size: 14px; margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 12px; }
.contact-info a { display: flex; gap: 12px; align-items: center; padding: 16px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); transition: border-color .15s ease; }
.contact-info a:hover { border-color: var(--primary); }
.contact-info .icon { width: 40px; height: 40px; background: var(--primary-soft); color: var(--primary); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.contact-info strong { display: block; font-size: 13px; color: var(--gray-600); font-weight: 600; }
.contact-info span { color: var(--gray-900); font-weight: 500; }

.map-wrap { aspect-ratio: 16/7; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; padding: 56px 28px; border-radius: var(--radius-lg);
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto 24px; }

.seo-banner-section::before,
.seo-banner-section::after {
  display: none;
}
.seo-banner {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 26%),
    linear-gradient(135deg, #161818 0%, #331111 52%, #920000 100%);
  color: #fff;
  box-shadow: 0 18px 46px rgba(17,17,17,.16);
}
.seo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(255,255,255,.12), transparent 16%);
  pointer-events: none;
}
.seo-banner > * {
  position: relative;
  z-index: 1;
}
.seo-banner__intro {
  max-width: 760px;
  margin-bottom: 24px;
}
.seo-banner__intro .eyebrow {
  color: rgba(255,255,255,.78);
}
.seo-banner__intro h2 {
  color: #fff;
  margin-bottom: 10px;
}
.seo-banner__intro p {
  color: rgba(255,255,255,.86);
  margin: 0;
}
.seo-banner__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.seo-banner__card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.seo-banner__card h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 8px;
}
.seo-banner__card p {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  margin: 0;
}
.seo-banner__actions {
  margin-top: 22px;
}
@media (max-width: 900px) {
  .seo-banner__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .seo-banner {
    padding: 26px 20px;
    border-radius: 22px;
  }
}

/* Utilities */
.flex { display: flex; }
.gap-8 { gap: 8px; }
.hide-mobile { display: initial; }
@media (max-width: 700px) { .hide-mobile { display: none; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Responsive refinement */
@media (max-width: 900px) {
  :root {
    --header-h: 74px;
  }

  #header-slot {
    min-height: 108px;
  }

  #footer-slot {
    min-height: 520px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-tight {
    padding: 36px 0;
  }

  .site-header .container {
    gap: 14px;
  }

  .brand img {
    height: 54px;
  }

  .hero {
    min-height: 500px;
  }

  .hero .container {
    padding: 72px 16px;
  }

  .hero-home {
    min-height: 560px;
    background-position: 66% center;
  }

  .hero-home .container {
    padding-top: 84px;
    padding-bottom: 88px;
  }

  .hero p {
    font-size: 1rem;
  }

  .page-head {
    padding: 52px 0 42px;
  }

  .landing-hero {
    min-height: 390px;
  }

  .landing-hero .hero-actions {
    margin-top: 18px !important;
  }

  /* Keep the look but reduce expensive backdrop compositing on mobile GPUs. */
  .hero-home-highlights span,
  .trust-card {
    backdrop-filter: none;
  }

  .benefits {
    padding: 22px 18px;
    gap: 16px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head .btn {
    width: 100%;
  }

  .card-actions {
    flex-direction: column;
  }

  .card-actions .btn {
    width: 100%;
  }

  .search-box {
    max-width: none;
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .chip {
    flex: 0 0 auto;
  }

  .detail-grid {
    gap: 24px;
  }

  .vehicle-detail-section {
    padding-top: 22px;
  }

  .detail-airport-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .detail-airport-cta__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .detail-airport-cta .btn {
    width: 100%;
  }

  .wa-modal__form-grid {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner {
    padding: 38px 22px;
  }

  .seo-banner__actions .btn {
    width: 100%;
  }

  .wa-modal {
    padding: 14px;
  }

  .wa-modal__dialog {
    width: min(100%, 100%);
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .wa-modal__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 700px) {
  .top-flight-strip .container {
    min-height: 36px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .top-flight-strip strong {
    font-size: 11px;
    line-height: 1.35;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .btn {
    white-space: normal;
  }

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

  .site-header .container {
    padding: 0 14px;
  }

  .brand img {
    height: 50px;
  }

  .menu-toggle {
    padding: 6px;
  }

  .site-header.open .nav {
    padding: 16px 14px 18px;
    gap: 12px;
  }

  .hero {
    min-height: 460px;
  }

  .hero .container {
    padding: 64px 14px 56px;
  }

  .hero-home {
    min-height: 500px;
    background-position: 72% center;
  }

  .hero-home .container {
    padding-top: 72px;
    padding-bottom: 68px;
  }

  .hero-home-highlights {
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-home-highlights span {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .page-head .breadcrumb {
    margin-bottom: 12px;
  }

  .landing-hero {
    min-height: auto;
    padding: 48px 0 42px;
    background-position: center;
  }

  .landing-badges {
    gap: 8px;
    margin-top: 16px;
  }

  .landing-badges span {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .landing-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-hero .hero-actions .btn {
    width: 100%;
  }

  .benefit {
    gap: 12px;
  }

  .benefit-icon {
    width: 42px;
    height: 42px;
  }

  .card-body {
    padding: 16px;
  }

  .card-title {
    font-size: 1.05rem;
  }

  .card-specs {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catalog-pagination {
    gap: 8px;
  }

  .page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
  }

  .breadcrumb {
    font-size: 12px;
    line-height: 1.5;
  }

  .gallery {
    gap: 10px;
  }

  .thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-side {
    gap: 18px;
  }

  .card-block {
    padding: 18px;
  }

  .faq-q {
    font-size: 15px;
    padding: 16px 0;
  }

  .contact-info a {
    align-items: flex-start;
    padding: 14px;
  }

  .map-wrap {
    aspect-ratio: 4 / 3;
  }

  .seo-banner {
    padding: 24px 18px;
  }

  .seo-banner__intro {
    margin-bottom: 18px;
  }

  .seo-banner__grid {
    gap: 12px;
  }

  .seo-banner__card {
    padding: 16px;
  }

  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ============== Global visual polish ============== */

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* Subtle text rendering on dark surfaces */
.hero, .page-head, .site-footer, .seo-banner, .cta-banner {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hero h1, .page-head h1, .cta-banner h2, .seo-banner__intro h2 {
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Page head decorative pattern */
.page-head::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  z-index: 1;
}

/* Buttons — sheen effect on hover */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  pointer-events: none; z-index: -1;
}
.btn:hover::after { transform: translateX(120%); }
.btn-primary, .btn-dark, .btn-wa {
  box-shadow: 0 10px 22px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(214,0,0,.28), inset 0 1px 0 rgba(255,255,255,.18); transform: translateY(-1px); }
.btn-dark:hover    { box-shadow: 0 14px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.16); transform: translateY(-1px); }
.btn-wa:hover      { box-shadow: 0 14px 30px rgba(37,211,102,.32), inset 0 1px 0 rgba(255,255,255,.18); transform: translateY(-1px); }
.btn-outline:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,.06); }

/* Header — subtle elevation on scroll */
.site-header {
  transition: box-shadow .3s ease, background .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  background: rgba(255,255,255,.92);
}

/* Header WhatsApp button — pulse */
.header-wa-btn {
  position: relative;
}
.header-wa-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: rgba(37,211,102,.35);
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* Cards — soft inner highlight + lift */
.card-vehicle, .trust-card, .step, .card-block {
  position: relative;
}
.card-vehicle::before, .trust-card::before, .step::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,0) 32%);
  pointer-events: none;
  opacity: .8;
}
.card-vehicle:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0,0,0,.12); }
.trust-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.trust-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,.08); }
.step { transition: transform .25s ease, box-shadow .25s ease; }
.step:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.07); }

/* Card image wrap — overlay */
.card-vehicle .img-wrap { position: relative; }
.card-vehicle .img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
  opacity: .6;
  transition: opacity .3s ease;
}
.card-vehicle:hover .img-wrap::after { opacity: .9; }

/* Card category as chip */
.card-cat {
  display: block;
  padding: 0;
  background: none;
  border-radius: 0;
  margin-bottom: 8px;
}

/* Filters chips — refined */
.chip {
  position: relative;
  transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.chip:hover { transform: translateY(-1px); }
.chip.active { box-shadow: 0 8px 20px rgba(214,0,0,.28); }

/* Search box — focus ring */
.search-box {
  transition: border-color .2s ease, box-shadow .2s ease;
}
.search-box:focus-within {
  border-color: var(--gray-900);
  box-shadow: 0 0 0 4px rgba(0,0,0,.05), 0 6px 20px rgba(0,0,0,.05);
}

/* Inputs — refined focus */
.field input, .field textarea, .field select {
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.02);
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--gray-400); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(214,0,0,.12);
}

/* Gallery main — gentle zoom */
.gallery-main { box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.gallery-main img { transition: transform .6s ease; }
.gallery-main:hover img { transform: scale(1.02); }
.thumb { transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.thumb:hover { transform: translateY(-2px); }
.thumb.active { box-shadow: 0 8px 18px rgba(214,0,0,.18); }

/* Specs grid — divider-like card */
.specs-grid { box-shadow: 0 8px 24px rgba(0,0,0,.04); }
.spec-icon { transition: transform .2s ease, background .2s ease; }
.spec:hover .spec-icon { background: var(--primary-soft); transform: scale(1.05); }

/* CTA banner — radial glow */
.cta-banner {
  position: relative; overflow: hidden;
  box-shadow: 0 24px 60px rgba(214,0,0,.18);
}
.cta-banner::before {
  content: "";
  position: absolute; inset: -40%;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.2), transparent 35%),
              radial-gradient(circle at 20% 80%, rgba(255,255,255,.12), transparent 40%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }

/* WhatsApp floating — pulse + glow */
.wa-float {
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
}
.wa-float::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  z-index: -1;
  animation: wa-float-pulse 2.2s ease-out infinite;
}
@keyframes wa-float-pulse {
  0% { transform: scale(.85); opacity: .7; }
  80% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Contact info cards — hover lift */
.contact-info a {
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-info a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

/* Map */
.map-wrap { box-shadow: 0 14px 36px rgba(0,0,0,.08); }

/* Footer accents */
.site-footer { position: relative; isolation: isolate; }
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary) 50%, transparent);
  z-index: 1;
}

/* Brand logo — anti-aliased upscale */
.brand img, .footer-brand img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Selection */
::selection { background: var(--primary); color: #fff; }

/* Smooth focus rings for accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }

/* Section subtle entrance gradient line */
.section + .section::before { opacity: .8; }

/* Hide blur effects on lower-perf */
@media (max-width: 600px) {
  .card-vehicle, .card-block, .trust-card, .step { backdrop-filter: none; }
}

@media (max-width: 480px) {
  .top-flight-strip strong {
    font-size: 10px;
  }

  :root {
    --header-h: 70px;
  }

  .container,
  .site-header .container {
    padding: 0 12px;
  }

  .section {
    padding: 40px 0;
  }

  .hero .container {
    padding: 58px 12px 48px;
  }

  .hero-home {
    min-height: 470px;
    background-position: 74% center;
  }

  .hero-home .container {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .page-head {
    padding: 42px 0 34px;
  }

  .landing-hero {
    padding: 42px 0 34px;
  }

  .landing-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefits {
    margin-top: -16px;
    padding: 18px 14px;
  }

  .section-head {
    gap: 14px;
  }

  .search-box {
    padding: 10px 12px;
  }

  .chip {
    padding: 8px 14px;
    font-size: 12px;
  }

  .card-vehicle {
    border-radius: 14px;
  }

  .card-body {
    padding: 14px;
  }

  .catalog-pagination {
    justify-content: flex-start;
  }

  .page-btn {
    min-width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .thumbs {
    gap: 6px;
  }

  .specs-grid {
    padding: 16px;
  }

  .spec-value {
    font-size: 13px;
  }

  .card-block {
    padding: 16px;
  }

  .step,
  .trust-card {
    padding: 20px;
  }

  .contact-info .icon {
    width: 36px;
    height: 36px;
  }

  .cta-banner {
    padding: 32px 18px;
  }

  .seo-banner {
    border-radius: 20px;
  }
}
