/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #111111;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TOKENS ────────────────────────────────────────────────── */
:root {
  --white:   #ffffff;
  --black:   #111111;
  --grey-50: #f9f9f9;
  --grey-100:#f2f2f2;
  --grey-200:#eaeaea;
  --grey-300:#dddddd;
  --grey-400:#aaaaaa;
  --grey-600:#555555;
  --grey-700:#333333;
  --stone:   #f5f3ef;
  --green:   #25D366;
  --green-dark: #1da851;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 100px;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--grey-200); border-radius: 99px; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.t-display {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--black);
}
.t-headline {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.t-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.t-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--grey-600);
}
.t-small {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.t-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-600);
  line-height: 1.5;
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 120px 0; }
.section--tight { padding: 80px 0; }
.section--stone { background: var(--stone); }
.section--dark { background: var(--black); color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-premium);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--grey-200);
}
.btn-secondary:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: var(--radius-pill);
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ─── CHIP / BADGE ──────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--grey-100);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--grey-600);
  letter-spacing: -0.01em;
}
.chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ─── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}
nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-200);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon { width: 34px; height: auto; flex-shrink: 0; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-main {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-600);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--green);
  color: white;
  transition: all 0.3s var(--ease-premium);
}
.nav-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.nav-btn svg { width: 16px; height: 16px; }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--black);
}

/* ─── HERO SCROLL CONTAINER ──────────────────────────────────── */
#hero-scroll {
  position: relative;
  height: 500vh;
}
.hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #ffffff;
  display: flex;
}

/* ── Columna izquierda: canvas ────────────────────────────────── */
.hero-canvas-col {
  position: relative;
  flex: 0 0 58%;
  height: 100%;
}
#hero-canvas {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

/* Loading dots */
.hero-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.hero-loading.hidden { opacity: 0; }
.hero-loading-dots { display: flex; gap: 6px; }
.hero-loading-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #cccccc;
  animation: dotPulse 1.4s ease-in-out infinite;
}
.hero-loading-dot:nth-child(2) { animation-delay: 0.22s; }
.hero-loading-dot:nth-child(3) { animation-delay: 0.44s; }
@keyframes dotPulse {
  0%, 80%, 100% { transform: scale(0.55); opacity: 0.25; }
  40%           { transform: scale(1.1);  opacity: 1; }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px; right: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey-400);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  animation: fadeInUp 1s 2s both;
  will-change: opacity;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--grey-300));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Thin progress line */
.hero-progress-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--black);
  z-index: 10;
}

/* ── Columna derecha: texto ───────────────────────────────────── */
.hero-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 56px 56px 52px;
  background: #ffffff;
  border-left: 1px solid var(--grey-200);
  overflow-y: auto;
}
.hero-eyebrow {
  margin-bottom: 20px;
  display: flex;
}
.hero-headline {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 18px;
}
.hero-headline span { color: var(--grey-400); font-weight: 400; }
.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--grey-600);
  line-height: 1.65;
  margin: 0 0 32px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-perks {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
}
.hero-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--grey-700);
  font-weight: 500;
}
.hero-perk svg {
  flex-shrink: 0;
  width: 15px; height: 15px;
  color: var(--black);
}

/* ─── TRUST STRIP ───────────────────────────────────────────── */
#trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--grey-600);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.trust-item svg { color: var(--grey-400); width: 16px; height: 16px; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── WHY SECTION ───────────────────────────────────────────── */
#why  { }
#why .section-header { text-align: center; margin-bottom: 72px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-card {
  background: var(--white);
  padding: 44px 36px;
  transition: background 0.3s;
}
.why-card:hover { background: var(--grey-50); }
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--black);
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--black);
}
.why-card p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.65;
}

/* ─── FLEET ──────────────────────────────────────────────────── */
#fleet { background: var(--stone); }
#fleet .section-header { text-align: center; margin-bottom: 60px; }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.fleet-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fleet-img svg {
  width: 70%;
  height: 70%;
  color: var(--grey-400);
  opacity: 0.4;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-body { padding: 28px; }
.fleet-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 10px;
}
.fleet-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 8px;
}
.fleet-desc {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.6;
  margin-bottom: 20px;
}
.fleet-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.fleet-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fleet-spec-val {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}
.fleet-spec-key {
  font-size: 0.75rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.fleet-divider { width: 1px; background: var(--grey-200); }
.fleet-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}
.fleet-price-num {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
}
.fleet-price-unit {
  font-size: 0.875rem;
  color: var(--grey-400);
  font-weight: 400;
}
.fleet-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius-md);
  background: var(--black);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.3s var(--ease-premium);
}
.fleet-cta:hover { background: var(--green); transform: translateY(-1px); }
.fleet-cta svg { width: 16px; height: 16px; }

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
#how { text-align: center; }
#how .section-header { margin-bottom: 72px; }
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--grey-200), var(--grey-200), transparent);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--black);
}
.step-desc {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ─── PRICING ───────────────────────────────────────────────── */
#pricing { background: var(--stone); }
#pricing .section-header { text-align: center; margin-bottom: 60px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.pricing-card.featured {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.pricing-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 20px;
}
.pricing-card.featured .pricing-label { color: rgba(255,255,255,0.4); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.pricing-price-num {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-price-unit {
  font-size: 0.9rem;
  color: var(--grey-400);
  font-weight: 400;
}
.pricing-card.featured .pricing-price-unit { color: rgba(255,255,255,0.4); }
.pricing-subtitle {
  font-size: 0.875rem;
  color: var(--grey-600);
  margin-bottom: 32px;
}
.pricing-card.featured .pricing-subtitle { color: rgba(255,255,255,0.55); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--grey-600);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.7); }
.pricing-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-card.featured .pricing-check { background: rgba(255,255,255,0.12); }
.pricing-check svg { width: 10px; height: 10px; color: var(--black); }
.pricing-card.featured .pricing-check svg { color: white; }
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease-premium);
  letter-spacing: -0.01em;
}
.pricing-cta-outline {
  border: 1.5px solid var(--grey-200);
  color: var(--black);
}
.pricing-cta-outline:hover {
  border-color: var(--black);
  background: var(--black);
  color: white;
}
.pricing-cta-fill {
  background: var(--green);
  color: white;
}
.pricing-cta-fill:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.pricing-cta-ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.15);
}
.pricing-cta-ghost:hover { background: rgba(255,255,255,0.18); }
.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--grey-400);
}

/* ─── FAQ ───────────────────────────────────────────────────── */
#faq .section-header { text-align: center; margin-bottom: 60px; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-200);
}
.faq-item {
  background: var(--white);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.015em;
  user-select: none;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.faq-icon svg { width: 14px; height: 14px; }
details[open] .faq-icon {
  background: var(--black);
  color: white;
  transform: rotate(45deg);
}
details[open] .faq-icon svg { color: white; }
.faq-a {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.7;
  border-top: 1px solid var(--grey-100);
  padding-top: 16px;
}

/* ─── WHATSAPP CTA ──────────────────────────────────────────── */
#whatsapp-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 120px 0;
}
.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(37,211,102,0.12);
  color: var(--green);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.wa-badge svg { width: 14px; height: 14px; }
#whatsapp-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: white;
}
#whatsapp-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.6;
}
.wa-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--green);
  color: white;
  letter-spacing: -0.01em;
  transition: all 0.3s var(--ease-premium);
}
.wa-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.4);
}
.wa-btn svg { width: 22px; height: 22px; }
.wa-note {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}

/* ─── REVIEWS ───────────────────────────────────────────────── */
#reviews { background: var(--stone); }
#reviews .section-header { text-align: center; margin-bottom: 60px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--grey-200);
  transition: transform 0.3s var(--ease-premium);
}
.review-card:hover { transform: translateY(-4px); }
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star { color: #f5a623; font-size: 0.9rem; }
.review-text {
  font-size: 0.9375rem;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--grey-600);
  flex-shrink: 0;
}
.review-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}
.review-role {
  font-size: 0.8rem;
  color: var(--grey-400);
}
.review-rating-summary {
  text-align: center;
  margin-top: 56px;
}
.rating-big {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}
.rating-label {
  font-size: 0.875rem;
  color: var(--grey-400);
  margin-top: 6px;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--grey-200);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--grey-600);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.footer-col a:hover { color: var(--black); }
.footer-bottom {
  border-top: 1px solid var(--grey-100);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p { font-size: 0.8125rem; color: var(--grey-400); }

/* ─── SECTION HEADER ────────────────────────────────────────── */
.section-header { max-width: 640px; }
.section-header.centered { margin-left: auto; margin-right: auto; }
.section-eyebrow { margin-bottom: 16px; }
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.65;
}

/* ─── FLOATING WA BUTTON ────────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: all 0.3s var(--ease-premium);
  animation: floatIn 0.6s 2s both;
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
.float-wa svg { width: 30px; height: 30px; }
@keyframes floatIn {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-1 { animation: fadeInUp 0.8s var(--ease-premium) 0.1s both; }
.fade-in-2 { animation: fadeInUp 0.8s var(--ease-premium) 0.25s both; }
.fade-in-3 { animation: fadeInUp 0.8s var(--ease-premium) 0.4s both; }
.fade-in-4 { animation: fadeInUp 0.8s var(--ease-premium) 0.55s both; }
.fade-in-5 { animation: fadeInUp 0.8s var(--ease-premium) 0.7s both; }

/* ─── DIVIDER ───────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--grey-200);
  margin: 0;
}

/* ─── MOBILE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--grey-200);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  }
  .nav-links.open a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-100);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open li:last-child a { border-bottom: none; }
  .nav-mobile-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .steps-container { grid-template-columns: 1fr; gap: 40px; }
  .steps-container::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 80px 0; }
}
@media (max-width: 600px) {
  .nav-logo-sub { display: none; }
  .nav-logo { gap: 8px; }
  .nav-logo-icon { width: 30px; height: auto; }
  .grid-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-sticky { flex-direction: column; }
  .hero-canvas-col { flex: 0 0 48vh; }
  .hero-panel { padding: 28px 24px 32px; border-left: none; border-top: 1px solid var(--grey-200); overflow-y: auto; }
  .hero-headline { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero-perks { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ─── LOGO SVG ──────────────────────────────────────────────── */
.logo-svg { height: 32px; }

/* ─── FLEET HEADER (título en una sola línea en pantallas medianas+) ── */
@media (min-width: 700px) {
  .fleet-header h2 { white-space: nowrap; }
}

/* ─── PAGE HERO (páginas interiores, sin vídeo) ──────────────── */
.page-hero { padding: 168px 0 72px; text-align: center; }
.page-hero .container { max-width: 720px; }
.page-hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--black);
  margin: 16px 0 18px;
}
.page-hero .t-body { font-size: 1.05rem; }

/* ─── FEATURE ILLUSTRATION (icono grande destacado) ──────────── */
.feature-illustration {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-md);
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin: 0 auto 28px;
}
.feature-illustration svg { width: 48px; height: 48px; }

/* ─── TIMELINE (proceso paso a paso) ──────────────────────────── */
.timeline { max-width: 560px; }
.timeline-item { position: relative; display: flex; gap: 20px; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: -36px;
  width: 1px;
  background: var(--grey-200);
}
.timeline-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.timeline-body { padding-top: 8px; }
.timeline-body h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--black);
  margin-bottom: 6px;
}
.timeline-body p { font-size: 0.9rem; color: var(--grey-600); line-height: 1.6; }

/* ─── LOCATION CARD ─────────────────────────────────────────────── */
.location-card { background: var(--white); border: 1.5px solid var(--grey-200); border-radius: var(--radius-lg); padding: 36px 32px; }

/* ─── PHOTO CARD (foto ilustrativa dentro de una sección) ────────── */
.photo-card { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 600px) {
  .page-hero { padding: 128px 0 56px; }
}
