/* ============================================================
   RONALD RENT A CAR — Light / clean theme
   ============================================================ */
:root {
  --bg: #F5F2EC;
  --bg-soft: #EEEAE1;
  --surface: #FFFFFF;
  --line: rgba(20, 26, 34, .10);
  --line-strong: rgba(20, 26, 34, .18);

  --ink: #16202A;
  --text: #1B2530;
  --muted: #5B6672;
  /* 5.05:1 sobre --bg y 4.70:1 sobre --bg-soft (WCAG AA para texto pequeño) */
  --muted-2: #5F6874;

  --green: #16A34A;
  --green-2: #12833C;
  --wa: #16A34A;
  --red: #E23A2E;
  --gold: #F2A900;
  --star: #F5B301;
  --navy: #141B24;

  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(20, 26, 34, .07);
  --shadow: 0 18px 44px rgba(20, 26, 34, .12);
  --shadow-wa: 0 12px 30px rgba(22, 163, 74, .28);

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

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --nav-h: 78px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* , *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* evita que la barra fija tape el título de la sección al usar anclas */
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--font-body); background: var(--bg); color: var(--text);
  line-height: 1.65; font-size: 16px; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img, video, svg, iframe { max-width: 100%; display: block; }
/* el atributo hidden debe ganarle a los display: flex/grid de los componentes */
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; line-height: 1.06; letter-spacing: -.02em; color: var(--ink); }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }
.section { padding-block: clamp(72px, 10vw, 130px); }
.section--soft { background: var(--bg-soft); }

.head { margin-bottom: clamp(36px, 5vw, 56px); }
.head--between { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--green); border-radius: 2px; }
.section-title { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.note { margin-top: 26px; font-size: .85rem; color: var(--muted-2); text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --py: 14px; --px: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--py) var(--px); border-radius: var(--radius-pill);
  font-weight: 600; font-size: .96rem; letter-spacing: -.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  will-change: transform; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--wa { background: var(--wa); color: #fff; box-shadow: var(--shadow-wa); }
.btn--wa:hover { background: var(--green-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn--ghost:hover { background: rgba(20,26,34,.04); transform: translateY(-2px); }
.btn--lg { --py: 17px; --px: 30px; font-size: 1.02rem; }
.btn--sm { --py: 10px; --px: 17px; font-size: .88rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; transition: background .35s var(--ease), height .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled {
  background: #141b24; height: 66px; box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.nav__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand__logo { height: 44px; width: auto; transition: height .35s var(--ease); }
.nav.scrolled .brand__logo { height: 38px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: .94rem; color: rgba(255,255,255,.9); font-weight: 500; position: relative; transition: color .25s; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--green); transition: width .3s var(--ease); }
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.lang { display: inline-flex; border: 1px solid rgba(255,255,255,.4); border-radius: var(--radius-pill); overflow: hidden; font-family: var(--font-mono); }
.lang a { padding: 7px 12px; font-size: .74rem; font-weight: 600; color: rgba(255,255,255,.85); transition: all .25s; }
.lang a:hover { background: rgba(255,255,255,.15); color: #fff; }
.lang a[aria-current="true"] { background: #fff; color: var(--ink); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); box-shadow: 0 1px 4px rgba(0,0,0,.3); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(20,27,36,.98);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: var(--gutter);
  transform: translateX(100%);
  /* visibility evita que los enlaces sigan siendo tabulables estando fuera de pantalla */
  visibility: hidden;
  transition: transform .45s var(--ease), visibility 0s linear .45s;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; transition: transform .45s var(--ease), visibility 0s; }
.mobile-menu > a:not(.btn) { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: #fff; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu .btn { margin-top: 22px; }
.lang--mobile { align-self: flex-start; margin-top: 20px; border-color: rgba(255,255,255,.4); }
.lang--mobile a { padding: 10px 18px; font-size: .82rem; }
/* En desktop el menú móvil no debe existir en el árbol de accesibilidad */
@media (min-width: 1025px) { .mobile-menu { display: none; } }

/* ---------- Hero ----------
   Fondo oscuro tipo estudio, a juego con las tarjetas reales de la flota
   (sin fotos generadas). La tarjeta del cliente es la protagonista. */
.hero {
  position: relative; min-height: 92vh; min-height: 92svh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 46px); padding-bottom: 70px; overflow: hidden;
  background:
    radial-gradient(90rem 42rem at 72% -12%, rgba(70, 82, 100, .55), transparent 60%),
    radial-gradient(60rem 30rem at 18% 110%, rgba(22, 163, 74, .12), transparent 55%),
    linear-gradient(180deg, #141B24 0%, #10151C 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 5vw, 64px); align-items: center; margin-bottom: 36px; }
.hero__visual { position: relative; }
.hero__card {
  width: 100%; height: auto; border-radius: 18px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, .5), 0 6px 18px rgba(0, 0, 0, .35);
  transform: rotate(1.6deg);
  border: 1px solid rgba(255, 255, 255, .08);
}
.rating-pill { display: inline-flex; align-items: center; gap: 9px; background: rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.28); color: #fff; padding: 8px 15px; border-radius: var(--radius-pill); font-size: .84rem; margin-bottom: 22px; }
.rating-pill .stars { color: var(--star); }
.rating-pill b { font-weight: 700; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 4.2rem); line-height: .98; letter-spacing: -.03em; max-width: 15ch; }
.hero h1 .accent { color: var(--red); }
.hero__lead { color: rgba(255,255,255,.88); font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: 44ch; margin-top: 20px; }

/* Booking bar */
.bookbar { display: flex; gap: 16px; align-items: flex-end; background: #fff; border-radius: var(--radius-lg); padding: 22px; box-shadow: 0 24px 60px rgba(0,0,0,.4); flex-wrap: wrap; }
.bookbar__field { flex: 1 1 165px; display: flex; flex-direction: column; gap: 7px; }
.bookbar__field--wide { flex: 1.7 1 235px; }
.bookbar__field label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); font-weight: 600; }
.control { width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 15px 15px; color: var(--ink); font-size: 1rem; font-family: inherit; appearance: none; transition: border-color .2s, box-shadow .2s; }
.control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
select.control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235B6672' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.bookbar .btn { flex: 0 0 auto; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 24px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: .92rem; font-weight: 500; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.hero__trust li svg { width: 18px; height: 18px; color: #34D27B; flex: none; }

/* ---------- Fleet ---------- */
.fleet__filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; }
.chip { padding: 9px 18px; border-radius: var(--radius-pill); font-size: .88rem; font-weight: 500; border: 1px solid var(--line-strong); color: var(--muted); background: #fff; transition: all .25s; }
.chip:hover { color: var(--ink); border-color: var(--muted); }
.chip.active { background: var(--green); color: #fff; border-color: var(--green); font-weight: 600; }
.fleet__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.car { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.car:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
/* Las fotos reales comparten plantilla (760x375): fluyen a su altura natural */
.car__media { position: relative; overflow: hidden; background: #14161B; }
.car__media img { width: 100%; height: auto; transition: transform .6s var(--ease); }
.car:hover .car__media img { transform: scale(1.05); }
.badge { position: absolute; top: 13px; left: 13px; z-index: 2; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--radius-pill); font-weight: 600; color: #fff; }
.badge--pop { background: var(--green); }
.badge--4x4 { background: var(--red); }
.car__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.car__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.car__top h3 { font-size: 1.22rem; }
.car__rate { font-size: .84rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.car__rate::first-letter { color: var(--star); }
.car__specs { display: flex; flex-wrap: wrap; gap: 8px; }
.car__specs span { font-size: .78rem; color: var(--muted); background: var(--bg); border: 1px solid var(--line); padding: 5px 10px; border-radius: var(--radius-pill); }
.car__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.car__ask { font-size: .88rem; color: var(--ink); font-weight: 600; }

/* ---------- Benefits ---------- */
.benefits.section { padding-block: clamp(44px, 6vw, 72px); }
.benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit {
  display: grid; grid-template-columns: 52px 1fr; column-gap: 15px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px; text-align: left; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit__ico { grid-row: 1 / span 2; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(22,163,74,.12); color: var(--green); }
.benefit__ico svg { width: 26px; height: 26px; }
.benefit b { font-family: var(--font-display); font-size: 1rem; color: var(--ink); line-height: 1.25; align-self: end; }
.benefit span { font-size: .84rem; color: var(--muted); align-self: start; margin-top: 2px; }

/* ---------- Steps ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.how__line { position: absolute; top: 30px; left: 15%; right: 15%; z-index: 0; }
.how__line svg { width: 100%; height: 4px; overflow: visible; display: block; }
.step { position: relative; z-index: 1; text-align: center; }
.step__n { position: relative; display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: #fff; background: var(--green); margin-bottom: 18px; box-shadow: var(--shadow-wa); }
.step__n::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 2px solid rgba(22,163,74,.35); animation: step-ring 2.6s var(--ease) infinite; }
.step:nth-child(3) .step__n::after { animation-delay: .4s; }
.step:nth-child(4) .step__n::after { animation-delay: .8s; }
@keyframes step-ring { 0%, 100% { transform: scale(.92); opacity: .5; } 50% { transform: scale(1.06); opacity: 1; } }
.step b { display: block; font-family: var(--font-display); font-size: 1.14rem; color: var(--ink); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; max-width: 30ch; margin-inline: auto; }

/* ---------- Video ---------- */
.video-frame { position: relative; max-width: 940px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Reviews (muro oscuro, estilo Google) ---------- */
.section--dark {
  background:
    radial-gradient(70rem 34rem at 80% -10%, rgba(70, 82, 100, .4), transparent 60%),
    linear-gradient(180deg, #141B24 0%, #10151C 100%);
}
.section--dark .section-title { color: #fff; }
.gscore { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 14px 20px; }
.gscore b { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; line-height: 1; color: #fff; }
.gscore .stars { display: block; color: var(--star); font-size: .9rem; letter-spacing: 1px; }
.gscore small { color: rgba(255,255,255,.6); font-size: .8rem; }
.reviews-wall { columns: 3; column-gap: 22px; }
.review {
  break-inside: avoid; margin: 0 0 22px; padding: 24px 24px 20px;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); display: flex; flex-direction: column; gap: 12px;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.review:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); transform: translateY(-3px); }
.review .stars { color: var(--star); letter-spacing: 2px; font-size: .92rem; }
.review blockquote { margin: 0; color: rgba(255,255,255,.85); font-size: .96rem; line-height: 1.6; }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: 6px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.09); }
.review figcaption b { color: #fff; font-size: .92rem; font-weight: 600; display: block; line-height: 1.2; }
.review figcaption small { color: rgba(255,255,255,.5); font-size: .76rem; }
.review__avatar {
  flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: #fff;
}
.review:nth-child(4n+1) .review__avatar { background: #16A34A; }
.review:nth-child(4n+2) .review__avatar { background: #2563EB; }
.review:nth-child(4n+3) .review__avatar { background: #D97706; }
.review:nth-child(4n+4) .review__avatar { background: #DC2626; }

/* ---------- Contact + map ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 34px; align-items: stretch; }
.contact__info { display: flex; flex-direction: column; gap: 22px; }
.contact__card { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact__list { display: grid; gap: 14px; }
.contact__list li { display: flex; flex-direction: column; gap: 2px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.contact__list b { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact__list a, .contact__list span { color: var(--ink); font-weight: 500; font-size: 1rem; }
.contact__list a:hover { color: var(--green); }
.map__embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); min-height: 420px; box-shadow: var(--shadow-sm); }
.map__embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; }
.qa { border-bottom: 1px solid var(--line-strong); }
.qa__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.qa__q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; font-size: 1.1rem; transition: transform .35s var(--ease), background .35s, color .35s; }
.qa.open .qa__q .ic { transform: rotate(45deg); background: var(--green); color: #fff; border-color: var(--green); }
.qa__a { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.qa__a-inner { padding: 0 4px 22px; color: var(--muted); font-size: .98rem; max-width: 62ch; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; text-align: center; padding-block: clamp(60px, 8vw, 96px); }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.cta p { color: rgba(255,255,255,.9); margin-top: 14px; font-size: 1.08rem; }
.cta .btn--wa { background: #fff; color: var(--green-2); margin-top: 28px; box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.cta .btn--wa:hover { background: #F1FFF6; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.72); padding-top: 60px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer__brand .brand__logo { height: 50px; }
.footer__brand p { margin-top: 16px; font-size: .92rem; max-width: 34ch; }
.footer h4 { color: #fff; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__col span { display: block; color: rgba(255,255,255,.72); font-size: .92rem; padding: 5px 0; transition: color .25s; }
.footer__col a:hover { color: var(--green); }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: all .3s; }
.footer__social a:hover { background: var(--green); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ---------- FAB ---------- */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-wa); transition: transform .3s var(--ease); }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 29px; height: 29px; }
.fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: fab-pulse 2.4s infinite; }
@keyframes fab-pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Progress + reveal ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--green); z-index: 101; }
/* El contenido solo se oculta si el JS está vivo: la clase .js la escribe un script
   inline en <head>. Si main.js falla o el usuario tiene JS desactivado, todo es visible. */
.js .reveal { opacity: 0; transform: translateY(30px); }
.js .is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
  .hero__visual { max-width: 460px; }
  .hero__card { transform: none; }
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .reviews-wall { columns: 2; }
}
@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .bookbar { flex-direction: column; align-items: stretch; gap: 12px; padding: 18px; }
  .bookbar__field, .bookbar__field--wide { flex: 0 0 auto; }
  .bookbar .btn { width: 100%; margin-top: 4px; }
  .control { padding: 13px 14px; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .how__line { display: none; }
  .fleet__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .benefits__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .head--between { align-items: flex-start; }
  .nav__actions .lang { display: none; }
  .reviews-wall { columns: 1; }
}
@media (max-width: 420px) {
  .benefits__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .fab::after { animation: none; }
  * { animation-duration: .001ms !important; transition-duration: .12s !important; }
}
