/* ============================================================
   RONALD RENT A CAR — Car Rental El Salvador
   Premium dark-cinematic design system
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0B0E14;
  --bg-2: #0E121B;
  --surface: #12161F;
  --surface-2: #1A2029;
  --surface-3: #222A36;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .16);

  --gold: #F5B301;
  --gold-2: #FFC72C;
  --gold-soft: rgba(245, 179, 1, .14);
  --blue: #1466C0;
  --blue-2: #2E86E0;
  --blue-soft: rgba(20, 102, 192, .16);
  --wa: #25D366;
  --wa-2: #1EBE5A;

  --text: #F4F6FB;
  --muted: #9AA4B2;
  --muted-2: #6B7688;

  --star: #FFC72C;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 18px rgba(0, 0, 0, .35);
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
  --shadow-gold: 0 14px 44px rgba(245, 179, 1, .28);
  --shadow-wa: 0 14px 40px rgba(37, 211, 102, .34);

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

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@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.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg { max-width: 100%; display: block; }
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: 700; line-height: 1.05; letter-spacing: -.02em; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(72px, 11vw, 148px); }
.section--tight { padding-block: clamp(52px, 8vw, 96px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .8; }

.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  max-width: 16ch;
}
.section-title .accent { color: var(--gold); }
.section-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  max-width: 54ch;
  margin-top: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn--wa { background: var(--wa); color: #05230F; box-shadow: var(--shadow-wa); }
.btn--wa:hover { background: var(--wa-2); transform: translateY(-3px); }
.btn--gold { background: var(--gold); color: #241800; box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: var(--gold-2); transform: translateY(-3px); }
.btn--ghost { background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--line-strong); }
.btn--ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.btn--lg { --pad-y: 18px; --pad-x: 34px; font-size: 1.05rem; }
.btn--sm { --pad-y: 11px; --pad-x: 18px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 14, 20, .82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  height: 66px;
}
.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 { display: flex; align-items: center; gap: 14px; }
.brand__logo { height: 44px; width: auto; transition: height .4s var(--ease); }
.nav.scrolled .brand__logo { height: 38px; }
.brand__tag { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; padding-left: 14px; border-left: 1px solid var(--line-strong); white-space: nowrap; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: .94rem; color: var(--muted); font-weight: 500;
  position: relative; transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.lang {
  display: inline-flex; align-items: center; border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill); overflow: hidden; font-family: var(--font-mono);
}
.lang button { padding: 7px 12px; font-size: .74rem; font-weight: 600; letter-spacing: .06em; color: var(--muted); transition: all .25s var(--ease); }
.lang button.active { background: var(--gold); color: #241800; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.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 */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(11,14,20,.97); backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gutter);
  transform: translateX(100%); transition: transform .45s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu > a:not(.btn) { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 24px; }
.lang--mobile { align-self: flex-start; margin-top: 22px; }
.lang--mobile button { padding: 10px 18px; font-size: .82rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 30px); padding-bottom: 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 90% at 78% 18%, rgba(20,102,192,.28), transparent 55%),
              radial-gradient(90% 80% at 10% 100%, rgba(245,179,1,.12), transparent 60%),
              linear-gradient(180deg, #0B0E14 0%, #0B0E14 55%, #0E121B 100%);
}
.hero__img {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center center;
  opacity: .92;
  will-change: transform;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(11,14,20,.35) 0%, transparent 22%, transparent 55%, var(--bg) 99%),
    linear-gradient(90deg, rgba(11,14,20,.96) 0%, rgba(11,14,20,.8) 26%, rgba(11,14,20,.32) 52%, rgba(11,14,20,.5) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 3; width: 100%; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-strong);
  padding: 8px 15px; border-radius: var(--radius-pill);
  font-size: .82rem; color: var(--text); margin-bottom: 26px;
}
.hero__badge .stars { color: var(--star); letter-spacing: 1px; }
.hero__badge b { font-weight: 700; }
.hero__badge span { color: var(--muted); }

.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  line-height: .98; letter-spacing: -.03em;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .accent { color: var(--gold); }
.hero__lead { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.28rem); max-width: 46ch; margin-top: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__stats { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
.hero__stat b { font-family: var(--font-display); font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 800; display: block; line-height: 1; }
.hero__stat span { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }
.hero__stat .accent { color: var(--gold); }

/* ---------- Booking widget ---------- */
.booking {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.booking::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(245,179,1,.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.booking__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.booking__head h3 { font-size: 1.24rem; }
.booking__head .tag { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--wa); border: 1px solid rgba(37,211,102,.4); padding: 5px 10px; border-radius: var(--radius-pill); }

.field { margin-bottom: 15px; }
.field label { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 7px; font-weight: 600; }
.field .control {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); padding: 13px 15px; color: var(--text);
  font-size: .96rem; font-family: inherit; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  appearance: none;
}
.field .control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); outline: none; }
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='%239AA4B2' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking .btn { margin-top: 8px; }
.booking__note { text-align: center; font-size: .78rem; color: var(--muted-2); margin-top: 14px; }

/* ---------- Trust bar ---------- */
.trustbar {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust {
  display: flex; align-items: center; gap: 14px; padding: 26px 0;
}
.trust__ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); }
.trust__ico svg { width: 22px; height: 22px; }
.trust b { display: block; font-family: var(--font-display); font-size: 1.02rem; }
.trust span { font-size: .82rem; color: var(--muted); }

/* ---------- Fleet ---------- */
.fleet__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 46px; flex-wrap: wrap; }
.fleet__filters { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 9px 17px; border-radius: var(--radius-pill); font-size: .86rem; font-weight: 500;
  border: 1px solid var(--line-strong); color: var(--muted); background: rgba(255,255,255,.02);
  transition: all .25s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--muted); }
.chip.active { background: var(--gold); color: #241800; border-color: var(--gold); font-weight: 600; }

.fleet__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.car {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.car:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.car__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--surface-2); }
.car__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.car:hover .car__media img { transform: scale(1.07); }
.car__cat { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; background: rgba(11,14,20,.72); backdrop-filter: blur(6px); border: 1px solid var(--line-strong); padding: 6px 11px; border-radius: var(--radius-pill); color: var(--gold); }
.car__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.car__title { font-size: 1.28rem; }
.car__desc { color: var(--muted); font-size: .9rem; margin-top: 8px; margin-bottom: 18px; }
.car__specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding-block: 16px; border-top: 1px solid var(--line); margin-top: auto; }
.spec { text-align: center; }
.spec b { display: block; font-family: var(--font-display); font-size: 1.16rem; font-weight: 700; }
.spec span { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.car__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; }
.car__price { font-family: var(--font-mono); }
.car__price b { font-size: 1.35rem; color: var(--text); }
.car__price span { font-size: .78rem; color: var(--muted); }
.car__price small { display: block; font-size: .68rem; color: var(--muted-2); letter-spacing: .04em; }

/* ---------- Why / features ---------- */
.why__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.feat-list { display: grid; gap: 14px; }
.feat {
  display: flex; gap: 18px; padding: 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.feat:hover { border-color: var(--line-strong); transform: translateX(6px); background: var(--surface-2); }
.feat__ico { flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); }
.feat__ico svg { width: 25px; height: 25px; }
.feat h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feat p { color: var(--muted); font-size: .92rem; }
.why__visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line); }
.why__visual img { width: 100%; height: 100%; object-fit: cover; }
.why__visual .quote {
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2;
  background: rgba(11,14,20,.78); backdrop-filter: blur(10px); border: 1px solid var(--line-strong);
  padding: 20px; border-radius: var(--radius);
}
.why__visual .quote p { font-size: .96rem; }
.why__visual .quote .stars { color: var(--star); font-size: .9rem; margin-bottom: 8px; }
.why__visual .quote cite { display: block; margin-top: 10px; font-style: normal; color: var(--muted); font-size: .82rem; }

/* ---------- How it works ---------- */
.how { background: var(--bg-2); }
.how__steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 56px; }
.how__line { position: absolute; top: 38px; left: 12%; right: 12%; height: 2px; z-index: 0; }
.how__line svg { width: 100%; height: 4px; overflow: visible; }
.step { position: relative; z-index: 1; text-align: center; }
.step__num {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.7rem;
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--gold);
  position: relative;
}
.step__num::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid var(--gold-soft); }
.step h3 { font-size: 1.24rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .94rem; max-width: 32ch; margin-inline: auto; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 26px; background: var(--bg); }
.marquee__track { display: flex; gap: 56px; width: max-content; will-change: transform; }
.marquee__item { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--muted-2); white-space: nowrap; }
.marquee__item svg { width: 22px; height: 22px; color: var(--gold); }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item.tall { grid-row: span 2; }
.gallery__item.wide { grid-column: span 2; }
.gallery__cap { position: absolute; inset: auto 0 0 0; padding: 30px 16px 14px; background: linear-gradient(transparent, rgba(11,14,20,.85)); font-size: .84rem; font-weight: 500; opacity: 0; transform: translateY(8px); transition: all .35s var(--ease); }
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-2); overflow: hidden; }
.reviews__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.gscore { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--line); padding: 16px 22px; border-radius: var(--radius); }
.gscore__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; line-height: 1; }
.gscore .stars { color: var(--star); font-size: 1.02rem; letter-spacing: 2px; }
.gscore small { color: var(--muted); font-size: .82rem; }
.gscore__g { width: 26px; height: 26px; }

.reviews__track { display: flex; gap: 22px; }
.review {
  flex: 0 0 clamp(280px, 30vw, 380px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: var(--star); letter-spacing: 2px; font-size: .96rem; }
.review p { font-size: .98rem; color: #E4E8F0; line-height: 1.55; }
.review__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); background: var(--blue-soft); color: var(--blue-2); }
.review__by b { font-size: .92rem; display: block; }
.review__by span { font-size: .76rem; color: var(--muted); }

/* ---------- Map / coverage ---------- */
.map__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: stretch; }
.map__info { display: flex; flex-direction: column; gap: 18px; }
.locard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.locard h3 { font-size: 1.14rem; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.locard h3 svg { width: 20px; height: 20px; color: var(--gold); }
.locard p { color: var(--muted); font-size: .92rem; }
.locard .badge-24 { display: inline-block; margin-top: 12px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--wa); border: 1px solid rgba(37,211,102,.4); padding: 5px 11px; border-radius: var(--radius-pill); }
.map__embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); min-height: 420px; position: relative; }
.map__embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.3) invert(.9) hue-rotate(180deg) contrast(.9); }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.faq__list { display: flex; flex-direction: column; }
.qa { border-bottom: 1px solid var(--line); }
.qa__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; }
.qa__q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease); }
.qa.open .qa__q .ic { transform: rotate(45deg); background: var(--gold); color: #241800; border-color: var(--gold); }
.qa__a { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.qa__a-inner { padding: 0 4px 24px; color: var(--muted); font-size: .96rem; max-width: 60ch; }

/* ---------- CTA band ---------- */
.ctaband { position: relative; overflow: hidden; }
.ctaband__inner { position: relative; z-index: 2; background: linear-gradient(150deg, var(--blue), #0A3F86); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 76px); text-align: center; overflow: hidden; }
.ctaband__inner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% 10%, rgba(245,179,1,.25), transparent 60%); }
.ctaband h2 { position: relative; z-index: 2; font-size: clamp(1.9rem, 4.4vw, 3rem); }
.ctaband p { position: relative; z-index: 2; color: rgba(255,255,255,.85); margin-top: 16px; font-size: 1.08rem; }
.ctaband .btn { position: relative; z-index: 2; margin-top: 30px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer__brand p { color: var(--muted); font-size: .92rem; margin-top: 16px; max-width: 34ch; }
.footer h4 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; font-weight: 600; }
.footer__col a, .footer__col p { display: block; color: var(--muted); font-size: .92rem; padding: 6px 0; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); color: var(--muted); transition: all .3s var(--ease); }
.footer__social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bar { border-top: 1px solid var(--line); padding-block: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--muted-2); }
.footer__bar a { color: var(--muted-2); }
.footer__bar a:hover { color: var(--gold); }

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; 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: 30px; height: 30px; }
.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: .8; } 100% { transform: scale(1.6); opacity: 0; } }
.fab__label { position: absolute; right: 72px; background: var(--surface); border: 1px solid var(--line-strong); padding: 8px 14px; border-radius: var(--radius-pill); font-size: .84rem; white-space: nowrap; opacity: 0; transform: translateX(8px); pointer-events: none; transition: all .3s var(--ease); }
.fab:hover .fab__label { opacity: 1; transform: translateX(0); }

/* ---------- Reveal animations (base states) ---------- */
.reveal { opacity: 0; transform: translateY(34px); }
.reveal-x { opacity: 0; transform: translateX(-30px); }
.is-in { opacity: 1; transform: none; }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-2)); z-index: 101; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .booking { max-width: 520px; }
  .hero__img { background-position: center 30%; opacity: .8; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(11,14,20,.5) 0%, rgba(11,14,20,.72) 55%, var(--bg) 99%),
      linear-gradient(90deg, rgba(11,14,20,.7) 0%, rgba(11,14,20,.45) 60%, rgba(11,14,20,.6) 100%);
  }
  .why__grid { grid-template-columns: 1fr; }
  .why__visual { max-width: 460px; aspect-ratio: 16/12; }
  .map__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .trustbar__grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .trust { padding: 18px 0; }
  .fleet__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; gap: 40px; }
  .how__line { display: none; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery__item.wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .field-row { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .nav__actions .lang { display: none; }
}
@media (max-width: 560px) {
  .brand__tag { display: none; }
}
@media (max-width: 420px) {
  .gallery__grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-x { opacity: 1 !important; transform: none !important; }
  .fab::after { animation: none; }
  * { animation-duration: .001ms !important; transition-duration: .12s !important; }
}
