/* ===================== TOKENS ===================== */
:root {
  --bg:        #0d0f12;
  --bg-2:      #12151a;
  --bg-3:      #171b22;
  --surface:   #1b2028;
  --line:      #2a2f39;
  --text:      #eef1f5;
  --muted:     #a3adba;
  --muted-2:   #7d8794;
  --gold:      #e07b1f;
  --gold-2:    #ff9e4d;
  --green:     #1f6f52;
  --wa:        #25d366;
  --wa-dark:   #1eb457;
  --radius:    16px;
  --radius-sm: 11px;
  --shadow:    0 18px 50px rgba(0,0,0,.45);
  --maxw:      1140px;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
}

/* ===================== RESET ===================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; margin: 0; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }
.btn-wa { background: var(--wa); color: #06331a; }
.btn-wa:hover { background: var(--wa-dark); box-shadow: 0 10px 26px rgba(37,211,102,.28); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--gold); }
.btn-primary { background: var(--gold); color: #241c05; border-color: var(--gold); font-weight: 700; }
.btn-primary:hover { background: var(--gold-2); box-shadow: 0 10px 26px rgba(224,123,31,.3); }
.btn-primary:disabled, .btn-primary.is-disabled { opacity: .45; pointer-events: none; }
.btn-outline { background: transparent; color: var(--gold-2); border-color: var(--gold); }
.btn-outline:hover { background: rgba(224,123,31,.12); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,15,18,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(13,15,18,.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark { border-radius: 8px; }
.brand-logo { height: 50px; width: auto; display: block; }
@media (max-width: 560px) { .brand-logo { height: 42px; } }
.brand-text { font-family: var(--font-head); font-size: 1.28rem; letter-spacing: .3px; }
.brand-sub { color: var(--gold); font-weight: 600; }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { color: var(--muted); font-weight: 500; font-size: .96rem; position: relative; transition: color .2s ease; }
.nav a:hover { color: var(--text); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .25s ease; }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  border-radius: 999px; padding: 7px 12px; font-weight: 700; font-size: .82rem; cursor: pointer;
  letter-spacing: .5px; transition: border-color .2s ease, color .2s ease;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--text); }
.lang-toggle .lang-sep { opacity: .4; margin: 0 2px; }
body[data-lang="en"] .lang-en, body[data-lang="es"] .lang-es { color: var(--gold-2); }
.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.menu-btn span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }

/* ===================== HERO ===================== */
.hero { position: relative; padding: clamp(70px, 12vw, 140px) 0 clamp(56px, 8vw, 96px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(90deg, rgba(13,15,18,.80) 0%, rgba(13,15,18,.50) 45%, rgba(13,15,18,.12) 100%),
    linear-gradient(180deg, rgba(13,15,18,.10) 0%, rgba(13,15,18,.32) 70%, var(--bg) 100%),
    url("assets/hero-arenal.jpg") center 40% / cover no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(700px 400px at 50% 20%, #000, transparent 75%);
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
/* Portada en 2 columnas en pantalla ancha: texto a la izquierda, buscador a la derecha.
   En celular se apila: título+descripción → buscador → botones/estrellas. */
@media (min-width: 900px) {
  .hero-inner { max-width: var(--maxw); display: grid; grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas: "head ." "desc finder" "actions finder"; column-gap: clamp(32px, 5vw, 60px); row-gap: 0; align-items: start; }
  .hero-copy-top { grid-area: head; max-width: 640px; }
  .hero-inner > .hero-sub { grid-area: desc; max-width: 640px; margin: 18px 0 0; }
  .hero-copy-bottom { grid-area: actions; max-width: 640px; margin-top: 24px; }
  .finder-hero { grid-area: finder; align-self: start; margin: 0; }
}
.eyebrow { text-transform: uppercase; letter-spacing: 2.4px; font-size: .76rem; font-weight: 700; color: var(--gold); margin: 0 0 16px; }
.hero-title { font-family: var(--font-head); font-weight: 600; font-size: clamp(2.5rem, 6.4vw, 4.4rem); letter-spacing: -.5px; }
.hero-title .accent { color: var(--gold-2); }
.hero-sub { color: var(--muted); font-size: clamp(1.02rem, 2.2vw, 1.2rem); margin: 22px 0 32px; max-width: 620px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.google-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px 9px 14px; transition: border-color .2s ease, background .2s ease;
}
.google-badge:hover { border-color: var(--gold); background: rgba(255,255,255,.1); }
.google-badge .g-logo { flex: 0 0 auto; }
.gb-stars { color: #fbbc05; letter-spacing: 1px; font-size: .95rem; }
.gb-text { color: var(--muted); font-size: .92rem; }
.gb-text strong { color: var(--text); font-weight: 700; }

.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 30px; margin: 40px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); }
.hero-trust li { color: var(--muted); font-size: .95rem; }
.hero-trust strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--text); }

/* ===================== SECTIONS ===================== */
.section { padding: clamp(42px, 6vw, 76px) 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.section-title { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.9rem, 4.4vw, 2.9rem); letter-spacing: -.3px; }
.section-lead { color: var(--muted); margin: 16px 0 0; font-size: 1.05rem; }

/* ===================== ROUTES ===================== */

/* ---- Route finder ---- */
.finder {
  background: linear-gradient(180deg, var(--bg-3), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(15px, 2.2vw, 20px); margin-bottom: 40px;
  box-shadow: var(--shadow);
}
/* Buscador dentro del hero (lo primero que ve el cliente) */
.finder-hero { margin: 20px 0 4px; }
.finder-title { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; margin: 0 0 12px; color: var(--text); }
.finder-go { width: 100%; margin-top: 12px; padding: 14px 16px; border: none; border-radius: var(--radius-sm); background: var(--gold); color: #241c05; font-family: var(--font-body); font-weight: 800; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background .2s ease, transform .2s ease; }
.finder-go:hover { background: var(--gold-2); transform: translateY(-1px); }
.finder-trust { text-align: center; margin: 12px 0 0; font-size: .82rem; color: var(--muted); line-height: 1.4; }
.finder-trust .ts-stars { color: #f5b301; letter-spacing: 1px; font-size: .78rem; }
.finder-trust strong { color: var(--text); }
.finder-guar { text-align: center; margin: 6px 0 0; font-size: .8rem; color: var(--muted-2); line-height: 1.4; }

/* Trust strip (señales de confianza, justo bajo el hero) */
.trust-strip { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.trust-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 28px; padding: 15px 0; }
.trust-item { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; color: var(--muted); white-space: nowrap; }
.trust-item strong { color: var(--text); font-weight: 700; }
.trust-item svg { color: var(--gold-2); flex-shrink: 0; }
.trust-link { transition: color .2s ease; }
.trust-link:hover { color: var(--gold-2); }
.ts-stars { color: #f5b301; letter-spacing: 1px; font-size: .8rem; }
.ts-flag { font-size: 1rem; }
@media (max-width: 600px) { .trust-strip-inner { gap: 8px 16px; padding: 13px 0; } .trust-item { font-size: .82rem; } }

/* Franja "Todo incluye" (puntos de venta) */
.included { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(22px, 3.5vw, 34px) 0; }
.included-title { text-align: center; text-transform: uppercase; letter-spacing: 1.6px; font-size: .8rem; font-weight: 700; color: var(--gold); margin: 0 0 20px; }
.included-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 28px; max-width: 900px; margin: 0 auto; padding: 0; }
.included-grid li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: .97rem; font-weight: 500; }
.included-grid svg { color: var(--gold-2); flex-shrink: 0; }
@media (max-width: 720px) { .included-grid { grid-template-columns: 1fr; max-width: 360px; gap: 13px; } }

/* Cómo funciona (4 pasos) */
.how-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 0; margin: 0; }
.how-step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 22px 24px; }
.how-num { position: absolute; top: -16px; left: 22px; width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #241c05; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; display: grid; place-items: center; }
.how-step h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; margin: 0 0 8px; }
.how-step p { color: var(--muted); font-size: .95rem; margin: 0; line-height: 1.55; }
@media (max-width: 860px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .how-grid { grid-template-columns: 1fr; } }

/* Paradas gratis en el camino */
.stops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stop-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; color: inherit; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
a.stop-card:hover { transform: translateY(-4px); border-color: rgba(224,123,31,.5); box-shadow: var(--shadow); }
.stop-emoji { font-size: 1.9rem; display: block; margin-bottom: 10px; }
.stop-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; margin: 0 0 8px; }
.stop-card p { color: var(--muted); font-size: .95rem; margin: 0; line-height: 1.55; }
.stops-note { text-align: center; color: var(--muted-2); font-size: .92rem; margin: 22px auto 0; max-width: 660px; }
@media (max-width: 760px) { .stops-grid { grid-template-columns: 1fr; } }

/* Recomendados en línea (Reddit / Facebook) */
.men-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 940px; margin: 0 auto; }
.men-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; color: inherit; transition: transform .2s ease, border-color .2s ease; }
a.men-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.men-src { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; margin-bottom: 14px; }
.men-reddit { color: #ff4500; background: rgba(255,69,0,.10); border: 1px solid rgba(255,69,0,.30); }
.men-fb { color: #6b8fd6; background: rgba(66,103,178,.14); border: 1px solid rgba(66,103,178,.35); }
.men-quote { font-size: 1.05rem; color: var(--text); line-height: 1.6; margin: 0 0 12px; font-style: italic; }
.men-read { color: var(--gold-2); font-weight: 600; font-size: .9rem; }
@media (max-width: 760px) { .men-grid { grid-template-columns: 1fr; } }

/* Viaja con tranquilidad */
.pm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pm-card { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 22px; }
.pm-card h3 { font-size: 1.03rem; font-weight: 700; margin: 0 0 8px; color: var(--text); }
.pm-card p { color: var(--muted); font-size: .95rem; margin: 0; line-height: 1.6; }
@media (max-width: 760px) { .pm-grid { grid-template-columns: 1fr; } }
.finder-controls { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 10px; }
.finder-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.finder-field label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; color: var(--gold); }
.finder-select {
  width: 100%; appearance: none; -webkit-appearance: none;
  background: var(--bg) 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='%23e07b1f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: var(--text); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 40px 14px 15px; font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  cursor: pointer; transition: border-color .2s ease;
}
.finder-select:focus { outline: none; border-color: var(--gold); }

/* Autocompletado (destinos + hoteles) */
.combo { position: relative; }
.finder-input {
  width: 100%; background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; font-family: var(--font-body); font-size: 1rem; font-weight: 500;
}
.finder-input:focus { outline: none; border-color: var(--gold); }
.finder-input::placeholder { color: var(--muted-2); font-weight: 400; }
.combo-list {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 6px);
  list-style: none; margin: 0; padding: 6px; max-height: 320px; overflow-y: auto;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); display: none;
}
.combo-list.open { display: block; }
.combo-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 9px 12px; border-radius: 8px; cursor: pointer;
}
.combo-item:hover { background: rgba(224,123,31,.14); }
.combo-label { font-weight: 500; }
.combo-zone {
  font-size: .74rem; color: var(--gold-2); background: rgba(224,123,31,.12);
  border: 1px solid rgba(224,123,31,.3); padding: 2px 8px; border-radius: 999px; white-space: nowrap;
}
.finder-swap {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(224,123,31,.12); border: 1px solid rgba(224,123,31,.3); color: var(--gold-2);
  display: grid; place-items: center; cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.finder-swap:hover { background: rgba(224,123,31,.22); transform: rotate(180deg); }

.finder-result { margin-top: 16px; }
.finder-assure { display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: center; margin: 14px 0 2px; }
.finder-assure span { font-size: .82rem; color: var(--muted); white-space: nowrap; padding-left: 18px; position: relative; }
.finder-assure span::before { content: "\2713"; position: absolute; left: 0; color: var(--gold-2); font-weight: 800; }
.finder-result.state-msg { text-align: center; padding: 22px 10px 6px; }
.finder-result.state-msg p { color: var(--muted); margin: 0 0 16px; font-size: 1rem; }

.finder-route {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 600;
  padding-bottom: 16px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
}
.finder-route .arrow { color: var(--gold); }
.finder-dur { display: inline-flex; align-items: center; gap: 5px; margin-left: auto; font-family: var(--font-body); font-size: .86rem; font-weight: 500; color: var(--muted); }
.finder-dur svg { color: var(--gold-2); }

.veh-list { display: flex; flex-direction: column; }
.veh-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 2px; border-bottom: 1px solid rgba(42,47,57,.6); }
.veh-row:last-child { border-bottom: none; }
.veh-row.veh-na { opacity: .55; }
.veh-info { display: flex; flex-direction: column; gap: 2px; }
.veh-name { font-weight: 600; font-size: 1rem; }
.veh-pax { color: var(--muted-2); font-size: .82rem; }
.veh-buy { display: flex; align-items: center; gap: 16px; }
.veh-price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--text); white-space: nowrap; }
.veh-price em { font-size: .95rem; font-style: normal; color: var(--muted); font-family: var(--font-body); margin-right: 1px; }
.veh-book {
  background: var(--wa); color: #06331a; font-weight: 700; font-size: .86rem;
  padding: 9px 18px; border-radius: 999px; transition: background .2s ease;
}
.veh-book:hover { background: var(--wa-dark); }
.veh-na .veh-book { background: transparent; color: var(--gold-2); border: 1px solid var(--gold); }
.finder-note { text-align: center; color: var(--muted-2); font-size: .82rem; margin: 16px 0 0; }

/* Add-to-cart button in vehicle rows */
.veh-add {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  background: rgba(224,123,31,.14); color: var(--gold-2); border: 1px solid rgba(224,123,31,.4);
  font-weight: 700; font-size: .84rem; padding: 8px 14px; border-radius: 999px;
  transition: background .2s ease, transform .1s ease;
}
.veh-add:hover { background: rgba(224,123,31,.26); }
.veh-add:active { transform: scale(.95); }

/* Continue-journey (chaining) button */
.finder-continue {
  width: 100%; margin-top: 18px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--gold-2); border: 1px dashed rgba(224,123,31,.5);
  border-radius: var(--radius-sm); padding: 12px 16px; font-weight: 600; font-size: .92rem;
  transition: background .2s ease, border-color .2s ease;
}
.finder-continue:hover { background: rgba(224,123,31,.1); border-color: var(--gold); }
.finder-continue svg { flex: 0 0 auto; }

/* ===================== CART ===================== */
.cart-btn {
  position: relative; background: transparent; border: 1px solid var(--line);
  color: var(--text); width: 42px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; cursor: pointer; transition: border-color .2s ease, color .2s ease;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold-2); }
.cart-badge {
  position: absolute; top: -7px; right: -7px; min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--wa); color: #06331a; font-size: .72rem; font-weight: 800; line-height: 19px;
  text-align: center; border-radius: 999px; opacity: 0; transform: scale(.5); transition: opacity .2s ease, transform .2s ease;
}
.cart-badge.has-items { opacity: 1; transform: scale(1); }
.cart-btn.pulse { animation: cartPulse .4s ease; }
@keyframes cartPulse { 0%,100% { transform: scale(1); } 40% { transform: scale(1.18); } }

.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; z-index: 60;
}
.cart-overlay.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(400px, 92vw);
  background: var(--bg-2); border-left: 1px solid var(--line); box-shadow: -20px 0 60px rgba(0,0,0,.5);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  z-index: 61; display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; }
.cart-close { background: none; border: none; color: var(--muted); font-size: 1.9rem; line-height: 1; cursor: pointer; transition: color .2s ease; }
.cart-close:hover { color: var(--text); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { color: var(--muted); font-size: .95rem; text-align: center; margin: 30px 8px; line-height: 1.6; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
}
.cart-item-main { flex: 1; min-width: 0; }
.cart-route { display: flex; align-items: center; gap: 7px; font-weight: 600; font-size: .95rem; flex-wrap: wrap; }
.cart-route .arrow { color: var(--gold); width: 16px; height: 16px; }
.cart-veh { color: var(--muted-2); font-size: .8rem; margin-top: 3px; }
.cart-item-price { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
.cart-remove { background: none; border: none; color: var(--muted-2); font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 0 2px; transition: color .2s ease; }
.cart-remove:hover { color: #e5715f; }

.cart-foot { border-top: 1px solid var(--line); padding: 18px 22px 22px; }
.cart-total-row { display: flex; align-items: baseline; justify-content: space-between; font-size: 1rem; }
.cart-total-row span { color: var(--muted); }
.cart-total-row strong { font-family: var(--font-head); font-size: 1.7rem; }
.cart-note { color: var(--muted-2); font-size: .78rem; margin: 4px 0 14px; }
.cart-checkout { width: 100%; }
.cart-checkout.is-disabled { pointer-events: none; opacity: .45; }
.cart-clear { display: block; margin: 12px auto 0; background: none; border: none; color: var(--muted-2); font-size: .84rem; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.cart-clear:hover { color: var(--text); }
.cart-wa { display: block; text-align: center; margin: 12px 0 0; color: var(--wa); font-size: .86rem; font-weight: 600; }
.cart-wa:hover { color: var(--wa-dark); }
body.no-scroll { overflow: hidden; }

/* ===================== CHECKOUT ===================== */
.checkout-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; z-index: 62;
}
.checkout-overlay.show { opacity: 1; visibility: visible; }
.checkout {
  position: fixed; top: 0; right: 0; height: 100%; width: min(460px, 96vw);
  background: var(--bg-2); border-left: 1px solid var(--line); box-shadow: -20px 0 60px rgba(0,0,0,.5);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  z-index: 63; display: flex; flex-direction: column;
}
.checkout.open { transform: translateX(0); }
.checkout-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.checkout-back { background: none; border: none; color: var(--muted); font-size: .92rem; cursor: pointer; }
.checkout-back:hover { color: var(--text); }
.checkout-close { background: none; border: none; color: var(--muted); font-size: 1.9rem; line-height: 1; cursor: pointer; }
.checkout-close:hover { color: var(--text); }
.checkout-body { flex: 1; overflow-y: auto; padding: 20px 22px 28px; }
.checkout-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; margin-bottom: 16px; }

.co-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 20px; }
.co-sum-head { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.co-sum-head strong { font-family: var(--font-head); font-size: 1.3rem; }
.co-sum-row { display: flex; justify-content: space-between; gap: 12px; font-size: .86rem; color: var(--muted); padding: 3px 0; }
.co-sum-leg { padding: 4px 0; border-bottom: 1px dashed var(--line); }
.co-sum-leg:last-child { border-bottom: none; }
.co-sum-vip { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); padding: 2px 0 4px; cursor: pointer; }
.co-sum-vip input { width: 16px; height: 16px; accent-color: var(--gold); flex: 0 0 auto; }
.co-sum-vip b { color: var(--gold-2); }

.co-form { display: flex; flex-direction: column; gap: 14px; }
.co-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-field { display: flex; flex-direction: column; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--muted); }
.co-field input, .co-field textarea {
  background: var(--bg); color: var(--text); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 13px; font-family: var(--font-body); font-size: .98rem; font-weight: 400; width: 100%;
}
.co-field input:focus, .co-field textarea:focus { outline: none; border-color: var(--gold); }
.co-field textarea { resize: vertical; }
.co-sum-addon span:first-child { color: var(--gold-2); }
.co-choose { display: flex; flex-direction: column; gap: 8px; }
.co-choose-label { font-size: .82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.co-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 7px; }
.co-tier { position: relative; display: block; cursor: pointer; background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px; padding: 14px; transition: border-color .2s ease, background .2s ease; }
.co-tier-vip { border-color: rgba(224,123,31,.4); }
.co-tier-badge { position: absolute; top: -9px; left: 12px; background: var(--gold); color: #241c05; font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 2px 8px; border-radius: 999px; }
.co-tier input { position: absolute; top: 13px; right: 13px; width: 17px; height: 17px; accent-color: var(--gold); }
.co-tier:has(input:checked) { border-color: var(--gold); background: rgba(224,123,31,.08); }
.co-tier-head { display: flex; flex-direction: column; gap: 2px; margin-bottom: 10px; padding-right: 22px; }
.co-tier-name { font-weight: 700; color: var(--text); font-size: 1rem; }
.co-tier-price { color: var(--gold-2); font-weight: 700; font-size: .85rem; }
.co-tier-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.co-tier-list li { color: var(--muted); font-size: .8rem; line-height: 1.35; padding-left: 16px; position: relative; }
.co-tier-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
@media (max-width: 480px) { .co-tiers { grid-template-columns: 1fr; } }
.co-pay { width: 100%; margin-top: 4px; }
.co-secure { display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--muted-2); font-size: .8rem; margin: 6px 0 0; }
.co-secure svg { color: var(--wa); }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px);
  background: var(--gold); color: #241c05; font-weight: 700; font-size: .9rem;
  padding: 12px 20px; border-radius: 999px; box-shadow: 0 12px 30px rgba(0,0,0,.4);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease, visibility .25s ease; z-index: 70;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.route-price em { font-size: .95rem; font-style: normal; color: var(--muted); font-family: var(--font-body); margin-right: 1px; }
.routes-subhead { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--muted); margin: 0 0 18px; text-transform: none; letter-spacing: normal; }

@media (max-width: 620px) {
  .finder-controls { grid-template-columns: 1fr; gap: 7px; }
  .finder-swap { justify-self: center; width: 40px; height: 40px; transform: rotate(90deg); }
  .finder-swap:hover { transform: rotate(270deg); }
  .veh-buy { gap: 10px; }
  .veh-price { font-size: 1.3rem; }
}

.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.route-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 16px; color: inherit; text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.route-card:hover { transform: translateY(-4px); border-color: rgba(224,123,31,.5); box-shadow: var(--shadow); }
.route-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.route-tag { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); background: rgba(224,123,31,.1); border: 1px solid rgba(224,123,31,.25); padding: 4px 10px; border-radius: 999px; }
.route-dur { display: inline-flex; align-items: center; gap: 4px; font-size: .78rem; font-weight: 600; color: var(--muted); }
.route-dur svg { color: var(--gold-2); flex: 0 0 auto; }
.route-path { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.22rem; font-weight: 600; }
.route-path .arrow { color: var(--gold); flex: 0 0 auto; }
.route-from, .route-to { flex: 1; }
.route-to { text-align: right; }
.route-meta { display: flex; align-items: baseline; justify-content: space-between; margin-top: auto; padding-top: 6px; }
.route-price { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--text); }
.route-price small { font-size: .78rem; color: var(--muted-2); font-family: var(--font-body); font-weight: 500; margin-left: 4px; }
.route-book { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .9rem; color: var(--wa); }
.route-book:hover { color: var(--wa-dark); }
.routes-foot { text-align: center; margin-top: 34px; }
/* Botones de texto largo: que se acomoden en varias líneas y nunca desborden la pantalla */
.routes-foot .btn { white-space: normal; max-width: 100%; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(224,123,31,.45); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 20px; font-weight: 600; font-size: 1.02rem; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-2); }
.faq-chevron { flex: 0 0 auto; color: var(--gold); transition: transform .25s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 20px; }
.faq-answer p { color: var(--muted); margin: 0; font-size: .98rem; line-height: 1.65; }

/* ===================== GALLERY ===================== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.gallery-item {
  position: relative; padding: 0; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; background: var(--bg-3); aspect-ratio: 4 / 3;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gallery-item:first-child { grid-column: span 2; }
.gallery-item:hover { transform: translateY(-3px); border-color: rgba(224,123,31,.5); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; text-align: left;
  color: #fff; font-size: .9rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
@media (max-width: 560px) { .gallery-item:first-child { grid-column: span 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(0,0,0,.9); backdrop-filter: blur(3px);
}
.lightbox.open { display: flex; }
.lightbox-fig { margin: 0; max-width: 1000px; max-height: 90vh; display: flex; flex-direction: column; gap: 10px; }
.lightbox-fig img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 10px; }
.lightbox-cap { color: #eee; text-align: center; font-size: .95rem; }
.lightbox-close {
  position: absolute; top: 16px; right: 20px; background: none; border: none; color: #fff;
  font-size: 2.4rem; line-height: 1; cursor: pointer; opacity: .85;
}
.lightbox-close:hover { opacity: 1; }

/* ===================== REVIEWS ===================== */
.rev-rating { display: inline-flex; align-items: center; gap: 6px; }
.rev-rating .stars, .review-stars { color: #fbbc05; letter-spacing: 2px; }
.rev-rating strong { color: var(--text); font-family: var(--font-head); }
.rev-link { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.review-card blockquote { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.6; font-style: italic; }
.review-card figcaption { display: flex; flex-direction: column; margin-top: auto; }
.review-card figcaption strong { color: var(--text); }
.review-card figcaption span { color: var(--muted-2); font-size: .82rem; }

/* ===================== TOURS ===================== */
.tour-card { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1.35fr); max-width: 900px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: inherit; text-decoration: none; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.tour-card:hover { border-color: rgba(224,123,31,.5); transform: translateY(-3px); box-shadow: var(--shadow); }
.tour-card-img { position: relative; min-height: 230px; }
.tour-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tour-card-body { padding: 26px 24px; }
.tour-card-body h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.tour-card-body p { color: var(--muted); font-size: .98rem; margin: 0 0 18px; }
.tour-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.tour-card-price { display: flex; flex-direction: column; }
.tour-card-price strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--text); }
.tour-card-price small { color: var(--muted-2); font-size: .82rem; }
.tour-card-cta { color: var(--gold-2); font-weight: 700; white-space: nowrap; }
@media (max-width: 640px) { .tour-card { grid-template-columns: 1fr; } .tour-card-img { min-height: 200px; } }

/* ===================== SERVICE LEVELS ===================== */
.svc-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; max-width: 820px; margin: 0 auto; }
.svc-tier { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.svc-tier-vip { border-color: rgba(224,123,31,.5); background: linear-gradient(180deg, rgba(224,123,31,.07), var(--surface)); }
.svc-badge { position: absolute; top: -11px; left: 24px; background: var(--gold); color: #241c05; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 4px 12px; border-radius: 999px; }
.svc-tier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.svc-name { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; }
.svc-price { color: var(--gold-2); font-weight: 700; font-family: var(--font-head); font-size: 1.2rem; white-space: nowrap; }
.svc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.svc-list li { color: var(--muted); font-size: .98rem; padding-left: 26px; position: relative; }
.svc-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.svc-tag { color: var(--gold-2); font-style: italic; font-size: .98rem; margin: -4px 0 16px; }
.svc-best { margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
.svc-best strong { color: var(--text); text-transform: uppercase; letter-spacing: .5px; font-size: .74rem; font-weight: 800; }

/* Conoce a Eddie (historia / confianza) */
/* Menos espacio vacío entre "Why Travesía" y "Conoce a Eddie" */
#why { padding-bottom: clamp(28px, 4vw, 48px); }
#about { padding-top: clamp(28px, 4vw, 48px); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.about-photo img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; object-position: center 35%; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.about-text .eyebrow, .about-text .section-title { text-align: left; }
.about-lead { font-size: 1.08rem; color: var(--text); margin: 14px 0 16px; }
.about-text p { color: var(--muted); margin: 0 0 16px; line-height: 1.65; }
.about-stats { display: flex; flex-wrap: wrap; gap: 26px; margin: 22px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-stat { display: flex; flex-direction: column; }
.about-stat strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold-2); line-height: 1.1; }
.about-stat span { font-size: .84rem; color: var(--muted); margin-top: 2px; }
.about-points { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.about-points li { color: var(--text); padding-left: 28px; position: relative; }
.about-points li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } .about-photo img { max-height: 300px; } .about-stats { gap: 18px; } }

/* ¿Por qué privado? (comparación) */
.wp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.wp-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.wp-card-best { border-color: rgba(224,123,31,.55); background: linear-gradient(180deg, rgba(224,123,31,.08), var(--surface)); box-shadow: var(--shadow); }
.wp-badge { position: absolute; top: -11px; left: 22px; background: var(--gold); color: #241c05; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 4px 12px; border-radius: 999px; }
.wp-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; margin: 0 0 16px; }
.wp-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.wp-list li { color: var(--muted); font-size: .96rem; padding-left: 28px; position: relative; line-height: 1.45; }
.wp-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--gold-2); font-weight: 800; }
.wp-list li.no { color: var(--muted-2); }
.wp-list li.no::before { content: "\2715"; color: #d9705a; }
.wp-yes li { color: var(--text); }
@media (max-width: 760px) { .wp-grid { grid-template-columns: 1fr; } }

/* Tabla comparativa "¿Por qué privado?" */
.wp-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.wp-table { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--surface); }
.wp-table th, .wp-table td { padding: 13px 14px; text-align: center; border-bottom: 1px solid var(--line); font-size: .95rem; }
.wp-table tr:last-child th, .wp-table tr:last-child td { border-bottom: none; }
.wp-table thead th { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--text); }
.wp-table tbody th { text-align: left; color: var(--text); font-weight: 500; }
.wp-table .wp-you { background: rgba(224,123,31,.10); }
.wp-table thead th.wp-you { color: var(--gold-2); }
.wp-table .yes { color: var(--gold-2); font-weight: 800; font-size: 1.05rem; }
.wp-table .no { color: #d9705a; font-weight: 700; }
.wp-table .mid { color: var(--muted-2); font-weight: 700; }
.wp-stress th, .wp-stress td { font-weight: 700; }
.wp-legend { text-align: center; color: var(--muted-2); font-size: .86rem; margin: 14px 0 0; }

/* Redes sociales + TripAdvisor */
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.soc { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: var(--muted); background: var(--surface); transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.soc:hover { color: var(--gold-2); border-color: var(--gold); transform: translateY(-2px); }
.ta-badge { display: inline-flex; align-items: center; gap: 10px; margin: 16px auto 0; padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); transition: border-color .2s ease, transform .2s ease; }
.ta-badge:hover { border-color: #00aa6c; transform: translateY(-2px); }
.ta-badge svg { color: #00aa6c; flex-shrink: 0; }
.ta-badge-txt { font-size: .98rem; }
.ta-badge-txt strong { font-size: 1.06rem; }
.ta-stars { color: #00aa6c; letter-spacing: 1px; font-size: .8rem; vertical-align: middle; }
/* Reseña destacada (texto fijo, carga al instante) */
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; max-width: 1100px; margin: 0 auto 24px; }
.rev-featured { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 24px 26px; text-align: center; }
.rev-featured-stars { color: #f5b301; letter-spacing: 2px; font-size: 1rem; }
.rev-featured blockquote { margin: 12px 0 10px; font-size: 1rem; line-height: 1.6; color: var(--text); font-style: italic; }
.rev-featured figcaption { color: var(--muted); font-size: .9rem; }

/* ===================== FLEET ===================== */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.fleet-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.fleet-card:hover { transform: translateY(-4px); border-color: rgba(224,123,31,.45); }
.fleet-visual { position: relative; height: 200px; display: grid; place-items: center; background: radial-gradient(400px 200px at 50% 0%, rgba(224,123,31,.14), transparent 70%), linear-gradient(180deg, #20252e, #161a21); border-bottom: 1px solid var(--line); overflow: hidden; }
.fleet-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.fleet-visual-icon { display: none; }
.fleet-visual.no-photo { place-items: center; }
.fleet-visual.no-photo .fleet-visual-icon { display: grid; }
.fleet-visual svg { color: var(--gold-2); opacity: .92; }
.fleet-body { padding: 20px 22px 24px; }
.fleet-name { font-family: var(--font-head); font-size: 1.34rem; font-weight: 600; }
.fleet-class { color: var(--gold); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.fleet-specs { display: flex; gap: 22px; margin-top: 16px; }
.fleet-spec { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .95rem; }
.fleet-spec svg { color: var(--gold-2); flex: 0 0 auto; }
.fleet-spec strong { color: var(--text); font-weight: 600; }

/* ===================== WHY ===================== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.why-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.why-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(224,123,31,.12); color: var(--gold-2); margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-head); font-size: 1.22rem; font-weight: 600; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ===================== CTA BAND ===================== */
.cta-band { background: linear-gradient(120deg, #14180f, #1a1d15 55%, #10130d); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(48px, 6vw, 72px) 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.cta-band p { color: var(--muted); margin: 10px 0 0; max-width: 520px; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--bg-2); padding: 60px 0 26px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 34px; }
.footer-logo { display: inline-block; }
.footer-logo img { width: 190px; height: auto; display: block; filter: drop-shadow(0 6px 16px rgba(0,0,0,.45)); }
.footer-brand p { color: var(--muted); margin: 18px 0 0; max-width: 340px; font-size: .96rem; }
.footer-col h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: 1.4px; color: var(--gold); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); padding: 5px 0; font-size: .96rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .88rem; }
.footer-bottom a { color: var(--gold-2); font-weight: 600; text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ===================== FLOATING WA ===================== */
.fab-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #06331a;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  transition: transform .2s ease;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ===================== MOBILE STICKY CTA ===================== */
.sticky-cta {
  position: fixed; left: 12px; right: 90px; bottom: 22px; z-index: 59;
  display: none; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1000; font-weight: 800; font-size: 16px; letter-spacing: .2px;
  text-align: center; text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.4);
}
.sticky-cta::before { content: "➜"; font-weight: 900; transform: rotate(90deg); }
@media (max-width: 820px) {
  .sticky-cta.show { display: flex; }
}

/* ===================== REVEAL ===================== */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 8px 22px 20px; margin: 0; transform: translateY(-120%);
    transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .menu-btn { display: flex; }
  .header-cta span { display: none; }
  .header-cta { padding: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .route-to { text-align: right; }
}
@media (max-width: 520px) {
  .hero-trust { gap: 20px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .fab-wa::before { animation: none; }
}
