@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;600;700;800&display=swap');

:root {
  --ink: #112525;
  --muted: #647475;
  --cream: #f4f1ea;
  --line: #d9ddd7;
  --accent: #d7ff55;
  --orange: #ff704b;
  --dark: #122928;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', Arial, sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1160px, calc(100% - 96px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

/* Header */
.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 max(48px, calc((100vw - 1160px)/2));
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(18,41,40,.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 11px/1.05 Manrope, sans-serif;
  letter-spacing: .12em;
  flex-shrink: 0;
}

.brand b {
  color: var(--accent);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
  letter-spacing: 0;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 27px;
  margin-left: auto;
  font-size: 13px;
}

.nav a {
  opacity: .78;
}

.nav a:hover {
  opacity: 1;
}

.nav .nav-cta {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 21px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13px;
  transition: transform .2s, background .2s;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.button:hover {
  transform: translateY(-2px);
}

.button:after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.22);
  transform: translateX(-105%);
  transition: transform .4s ease;
}

.button:hover:after {
  transform: translateX(105%);
}

.button span {
  font-size: 18px;
  line-height: 0;
}

.button-small {
  padding: 11px 16px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}

.button-accent {
  background: var(--accent);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-outline {
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Hero */
.hero {
  height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  width: 100%;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(7,25,26,.72),rgba(7,25,26,.08)),url('media/IMG_1839-scaled.jpg') center 38%/cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.025);
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.hero:hover .hero-video {
  transform: scale(1.055);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(6, 21, 22, 0.76) 0%, rgba(6, 21, 22, 0.52) 52%, rgba(6, 21, 22, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 21, 22, 0.78) 0%, transparent 65%);
  z-index: 2;
}

.hero-content {
  position: relative;
  padding-top: 75px;
  z-index: 3;
}

.hero-content > * {
  opacity: 0;
  animation: hero-rise .75s cubic-bezier(.2,.7,.2,1) forwards;
  transform: translateY(22px);
}

.hero-content .eyebrow { animation-delay: .1s; }
.hero-content h1 { animation-delay: .18s; }
.hero-content .hero-copy { animation-delay: .28s; }
.hero-content .hero-actions { animation-delay: .38s; }
.hero-content .hero-note { animation-delay: .48s; }

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 700;
  margin: 0 0 22px;
  color: #63807c;
}

.light {
  color: #fff;
}

.hero .eyebrow.light {
  display: inline-flex;
  align-items: center;
  background: rgba(7, 24, 25, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(215, 255, 85, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 18px;
  color: #d7ff55;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hero h1, h1, h2 {
  font-family: Manrope, Arial, sans-serif;
  letter-spacing: -.07em;
  margin: 0;
  font-size: clamp(48px, 4.4vw, 68px);
  line-height: .96;
  font-weight: 800;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero h1 em, h1 em, .dark-section h2 em, .final-cta h2 em {
  font-style: normal;
  color: var(--accent);
}

/* En secciones de fondo claro (blanco / arena), las frases destacadas van con fondo verde oscuro
   para que el verde fluorescente luzca con el contraste y elegancia que merece, evitando letras invisibles sobre blanco */
.intro h2 em,
.route-copy h2 em,
.pricing-head h2 em,
.faq-intro h2 em {
  display: inline-block;
  background: var(--dark);
  color: var(--accent);
  padding: 3px 14px 5px;
  border-radius: 8px;
  font-style: normal;
  box-shadow: 0 4px 16px rgba(6, 21, 22, 0.16);
  margin-top: 6px;
  letter-spacing: -0.04em;
}

.hero-copy {
  font-size: 17px;
  line-height: 1.55;
  max-width: 440px;
  margin: 29px 0 28px;
  color: #f1f7f5;
  background: rgba(8, 26, 27, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--accent);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
}

.text-link {
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  display: inline-flex;
  align-items: center;
}

.text-link span {
  margin-left: 10px;
}

.hero-note {
  margin-top: 65px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(7, 24, 25, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 7px 16px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 9px;
  box-shadow: 0 0 0 5px rgba(215,255,85,.15);
}

.hero-side-label {
  position: absolute;
  right: 32px;
  bottom: 40px;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.6);
  z-index: 3;
}

/* Typewriter & Crescendo Hero Title */
.typewriter-headline {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  min-height: 1.95em;
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  letter-spacing: -0.06em;
  font-size: clamp(48px, 4.4vw, 68px);
  line-height: 0.96;
  font-weight: 800;
  color: #fff;
  word-break: break-word;
  overflow-wrap: break-word;
}

.typewriter-phrase {
  display: inline-block;
  transform-origin: left center;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 0.3s ease,
              transform 0.3s ease,
              filter 0.3s ease,
              color 0.4s ease,
              text-shadow 0.4s ease;
}

.typewriter-phrase.is-grand {
  color: var(--accent);
  transform-origin: left center;
  animation: grand-grow 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             grand-pulse 3s ease-in-out 1.1s infinite alternate;
}

@keyframes grand-grow {
  0% {
    transform: scale(0.95);
    filter: brightness(0.9);
    letter-spacing: -0.06em;
  }
  60% {
    transform: scale(1.10);
    filter: brightness(1.2);
    letter-spacing: -0.04em;
    text-shadow: 0 0 35px rgba(215, 255, 85, 0.75), 0 0 70px rgba(215, 255, 85, 0.4);
  }
  100% {
    transform: scale(1.08);
    filter: brightness(1);
    letter-spacing: -0.05em;
    text-shadow: 0 0 25px rgba(215, 255, 85, 0.5), 0 0 55px rgba(215, 255, 85, 0.25);
  }
}

@keyframes grand-pulse {
  0% {
    transform: scale(1.08);
    text-shadow: 0 0 25px rgba(215, 255, 85, 0.5), 0 0 55px rgba(215, 255, 85, 0.25);
  }
  100% {
    transform: scale(1.12);
    text-shadow: 0 0 35px rgba(215, 255, 85, 0.75), 0 0 75px rgba(215, 255, 85, 0.4);
  }
}

.typewriter-phrase.fade-out {
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(5px);
}

.typewriter-cursor {
  display: inline-block;
  width: 5px;
  height: 0.78em;
  margin-left: 8px;
  background-color: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(215, 255, 85, 0.85);
  vertical-align: -0.02em;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.typewriter-cursor.is-typing {
  opacity: 1;
}

.typewriter-cursor.is-hidden {
  opacity: 0 !important;
}

/* Trust Strip */
.trust-strip {
  background: var(--accent);
  padding: 25px 0;
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.3fr;
  align-items: center;
}

.trust-grid div {
  display: flex;
  gap: 14px;
  align-items: center;
  border-right: 1px solid rgba(17,37,37,.22);
  min-width: 0;
}

.trust-grid strong {
  font: 800 35px Manrope;
  flex-shrink: 0;
}

.trust-grid span {
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.trust-grid p {
  margin: 0 0 0 38px;
  font: 500 14px/1.4 Manrope;
}

/* General Sections */
.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}

.intro h2, .route-copy h2, .pricing-head h2, .faq-intro h2 {
  font-size: clamp(38px, 3.8vw, 56px);
  overflow-wrap: break-word;
  word-break: break-word;
}

.intro-copy {
  max-width: 390px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.intro-copy p {
  margin: 0 0 30px;
}

/* Visual Experience */
.experience-visual {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 15px;
  padding-bottom: 120px;
}

.visual-main, .visual-side {
  position: relative;
  overflow: hidden;
  height: 600px;
  width: 100%;
}

.visual-side {
  background: #d4ddd5;
}

.visual-side img {
  object-position: center;
}

.experience-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.visual-side:hover .experience-video {
  transform: scale(1.06);
}

.image-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--accent);
  padding: 8px 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  z-index: 2;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(16,37,36,.9);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  align-items: start;
  z-index: 2;
}

.caption span {
  color: var(--accent);
  font-size: 11px;
}

.caption p {
  margin: 0;
  font: 600 17px/1.1 Manrope;
}

/* Dark / Safety Section */
.dark-section {
  background: var(--dark);
  color: #fff;
  padding: 125px 0;
  width: 100%;
}

.safety-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
}

.accent-text {
  color: var(--accent);
}

.safety-layout h2 {
  font-size: clamp(38px, 3.8vw, 56px);
  overflow-wrap: break-word;
  word-break: break-word;
}

.muted {
  color: #aab8b2;
  line-height: 1.6;
  max-width: 410px;
  margin: 28px 0 31px;
}

.safety-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.14);
}

.safety-cards article {
  padding: 26px;
  background: var(--dark);
  min-height: 185px;
  box-sizing: border-box;
}

.card-number {
  color: var(--accent);
  font-size: 11px;
}

.safety-cards h3 {
  font: 600 18px Manrope;
  margin: 28px 0 11px;
}

.safety-cards p {
  margin: 0;
  color: #aab8b2;
  font-size: 13px;
  line-height: 1.5;
}

/* Route Section */
.route-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.route-copy {
  max-width: 340px;
}

.route-copy p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   ROUTE MAP: TOPOGRAPHIC & FLIGHT SIMULATOR (OPCIÓN A + TOPOGRAFÍA)
   ========================================================================== */
.route-map {
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(80, 110, 100, 0.28);
  box-shadow: 0 10px 30px rgba(7, 25, 26, 0.08);
  width: 100%;
  background: #ebe3d3;
}

.route-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  user-select: none;
}

/* Animación de la brisa / estela de viento sobre la ruta */
@keyframes flightWindFlow {
  from { stroke-dashoffset: 36; }
  to { stroke-dashoffset: 0; }
}

.flight-wind-trail {
  animation: flightWindFlow 1.6s linear infinite;
  opacity: 0.85;
}

/* Ondas de radar en Despegue y Aterrizaje */
@keyframes radarPing {
  0% {
    r: 6;
    opacity: 0.85;
    stroke-width: 2.5;
  }
  100% {
    r: 32;
    opacity: 0;
    stroke-width: 0.5;
  }
}

.radar-ping {
  fill: none;
  transform-origin: center;
  animation: radarPing 2.4s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}

.start-ping {
  stroke: #ff6b35;
}

.start-ping-delay {
  stroke: #ff6b35;
  animation-delay: 1.2s;
}

.end-ping {
  stroke: #00c8b3;
}

.end-ping-delay {
  stroke: #00c8b3;
  animation-delay: 1.2s;
}

/* Parapente planeando */
.flight-glider {
  filter: drop-shadow(0 4px 6px rgba(10, 30, 30, 0.35));
}

/* Badges aeronáuticos flotantes */
.map-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(7, 25, 26, 0.1);
  border-radius: 6px;
  padding: 8px 13px;
  pointer-events: none;
}

.map-badge.start-badge {
  top: 22px;
  left: 24px;
}

.map-badge.mid-badge {
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.82);
}

.map-badge.end-badge {
  bottom: 22px;
  right: 24px;
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}

.badge-dot.start-color {
  background: #ff6b35;
  color: rgba(255, 107, 53, 0.75);
}

.badge-dot.end-color {
  background: #00c8b3;
  color: rgba(0, 200, 179, 0.75);
}

.badge-tag {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #55756e;
  line-height: 1.2;
}

.map-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.badge-sub {
  display: block;
  font-size: 9.5px;
  color: #69827c;
  line-height: 1.2;
}

/* Telemetría de Vuelo en el mapa */
.map-telemetry {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.telemetry-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(14, 37, 38, 0.82);
  color: #fff;
  padding: 5px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.telemetry-item svg {
  stroke: var(--accent);
}

/* Brújula de Navegación */
.map-compass {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(7, 25, 26, 0.08);
  border-radius: 6px;
  padding: 6px 10px;
}

.compass-dial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--dark);
  border-radius: 50%;
  color: #fff;
}

.compass-needle {
  font-size: 12px;
  line-height: 1;
  color: var(--accent);
  font-weight: 800;
}

.compass-letter {
  font-size: 7px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.compass-coords {
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
  color: #4a6660;
  letter-spacing: 0.06em;
}

/* Pricing Section */
.price-section {
  background: #fff;
  padding: 115px 0;
  width: 100%;
}

.pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 43px;
}

.pricing-head h2 {
  font-size: clamp(45px, 5vw, 65px);
  overflow-wrap: break-word;
  word-break: break-word;
}

.pricing-head > p {
  max-width: 310px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: 100%;
}

.price-card {
  padding: 35px;
  background: var(--cream);
  min-height: 455px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.price-card.featured {
  background: var(--dark);
  color: #fff;
}

.price-top {
  display: flex;
  justify-content: space-between;
  color: #698078;
  font-size: 10px;
  letter-spacing: .15em;
  font-weight: 700;
  align-items: center;
}

.featured .price-top {
  color: var(--accent);
}

.price-badge {
  background: var(--accent);
  color: var(--ink);
  padding: 7px 9px;
  letter-spacing: .04em;
  border-radius: 2px;
}

.dark-badge {
  background: #284442;
  color: #fff;
}

.price-card h3 {
  font: 700 32px Manrope;
  letter-spacing: -.04em;
  margin: 45px 0 13px;
}

.price-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 390px;
}

.featured > p {
  color: #aab8b2;
}

.price {
  margin-top: 29px;
  font-size: 12px;
  color: #698078;
}

.price strong {
  font: 800 34px Manrope;
  color: var(--ink);
  margin-left: 5px;
}

.featured .price strong {
  color: var(--accent);
}

.price small {
  font-size: 10px;
  margin-left: 5px;
}

/* Promo Price & Speech Bubble */
.price-with-promo {
  position: relative;
}

.price-values {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.price-old {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
  text-decoration-color: #ff5252;
  text-decoration-thickness: 2.5px;
  margin-left: 4px;
}

.promo-speech-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #0b2222;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 4px 14px rgba(215, 255, 85, 0.35);
  margin-left: 6px;
  animation: bubbleFloat 3s ease-in-out infinite alternate;
}

.promo-speech-bubble strong {
  font-size: 12.5px !important;
  font-weight: 800 !important;
  color: #0b2222 !important;
  margin: 0 3px 0 0 !important;
}

.bubble-arrow {
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 6px solid var(--accent);
}

@keyframes bubbleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}

.price-disclaimer {
  display: block;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 7px;
  letter-spacing: 0.02em;
  font-style: italic;
}


.price-card ul {
  list-style: none;
  padding: 0;
  margin: 23px 0 27px;
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
}

.price-card li:before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  margin-right: 9px;
}

.featured li {
  color: #d5dfd6;
}

.price-card .button {
  margin-top: auto;
  align-self: flex-start;
}

/* FAQ */
.faq-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}

.faq-intro > p:last-child {
  color: var(--muted);
  line-height: 1.6;
  max-width: 290px;
  margin-top: 30px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

summary {
  cursor: pointer;
  list-style: none;
  font: 600 17px Manrope;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  font-size: 24px;
  font-weight: 400;
  transition: transform .2s;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 600px;
  margin: 15px 0 0;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(90deg,rgba(7,25,26,.8),rgba(7,25,26,.25)),url('media/G0011043-scaled.jpg') center/cover;
  color: #fff;
  padding: 120px 0;
  width: 100%;
}

.final-inner {
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(38px, 4vw, 60px);
  margin-bottom: 35px;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 62px 0 20px;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 65px;
}

.footer .brand {
  display: inline-flex;
}

.footer-grid > div > p:not(.footer-label) {
  color: #aab8b2;
  line-height: 1.5;
  font-size: 13px;
  margin-top: 27px;
}

.footer-grid a, .footer-grid span {
  display: block;
  color: #aab8b2;
  font-size: 13px;
  margin: 0 0 12px;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-label {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 5px 0 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #78908a;
  font-size: 11px;
}

/* Micro-interactions & Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .18s; }

.experience-visual .visual-main,
.experience-visual .visual-side,
.price-card,
.safety-cards article {
  will-change: transform;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s cubic-bezier(.2,.7,.2,1);
}

.experience-visual .visual-main:hover,
.experience-visual .visual-side:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(17,37,37,.16);
}

.price-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 20px 42px rgba(17,37,37,.13);
}

.safety-cards article:hover {
  transform: translateY(-5px);
  background: #1a3735;
}

/* Social Links & WhatsApp Float */
.social-links {
  display: flex;
  gap: 9px;
  margin-top: 23px;
  flex-wrap: wrap;
}

.social-link {
  display: grid !important;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #fff !important;
  margin: 0 !important;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link.facebook svg {
  fill: currentColor;
  stroke: none;
}

.social-link:hover {
  transform: translateY(-4px);
  color: var(--ink) !important;
  border-color: transparent;
}

.social-link.instagram:hover { background: linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7); }
.social-link.facebook:hover { background: #1877f2; color: #fff !important; }
.social-link.whatsapp:hover { background: #25d366; color: #fff !important; }

.whatsapp-float {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(18,41,40,.28);
  font-size: 12px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(18,41,40,.35);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  flex-shrink: 0;
}

.whatsapp-float:before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(37,211,102,.55);
  border-radius: 999px;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

@keyframes whatsapp-pulse {
  70%, 100% {
    transform: scale(1.16);
    opacity: 0;
  }
}

/* ==========================================================================
   Comprehensive Responsive Architecture (Small Mobile, Medium, Large, Tablet, Desktop)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. LAPTOP / STANDARD DESKTOP (1025px to 1280px)
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) and (max-width: 1280px) {
  .shell {
    width: min(1040px, calc(100% - 96px));
  }
  .site-header {
    height: 78px;
    padding: 0 max(48px, calc((100vw - 1040px)/2));
  }
  .hero h1, .typewriter-headline {
    font-size: clamp(42px, 4.2vw, 56px);
    line-height: 0.98;
    min-height: 2em;
  }
  .hero-copy {
    font-size: 16px;
    max-width: 440px;
  }
  .intro h2, .route-copy h2, .pricing-head h2, .faq-intro h2, .safety-layout h2, .final-cta h2 {
    font-size: clamp(34px, 3.4vw, 46px);
    line-height: 1.05;
  }
  .intro, .safety-layout, .faq-section {
    gap: 50px;
  }
  .route-section {
    gap: 40px;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr) 1.2fr;
    gap: 16px;
  }
  .trust-grid strong {
    font-size: 28px;
  }
  .trust-grid p {
    margin-left: 22px;
    font-size: 13px;
  }
}

/* --------------------------------------------------------------------------
   2. TABLET (768px to 1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1024px) {
  .shell {
    width: min(calc(100% - 64px), 920px);
  }
  .site-header {
    height: 74px;
    padding: 0 32px;
    gap: 20px;
  }
  .nav {
    gap: 18px;
    font-size: 13px;
  }
  .hero {
    height: 640px;
    min-height: 600px;
  }
  .hero-content {
    padding-top: 50px;
  }
  .hero h1, .typewriter-headline {
    font-size: clamp(38px, 4.6vw, 50px);
    line-height: 0.98;
    min-height: 2em;
  }
  .hero-copy {
    font-size: 15.5px;
    max-width: 400px;
    margin: 22px 0 24px;
  }
  .hero-actions {
    gap: 20px;
  }
  .trust-strip {
    padding: 24px 0;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: center;
  }
  .trust-grid div {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(17,37,37,.2);
    padding: 0 10px;
  }
  .trust-grid div:last-of-type {
    border-right: none;
  }
  .trust-grid p {
    grid-column: 1 / -1;
    margin: 16px 0 0;
    text-align: center;
    border-top: 1px solid rgba(17,37,37,.15);
    padding-top: 14px;
    font-size: 14.5px;
  }
  .section {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .dark-section {
    padding: 90px 0;
  }
  .intro {
    gap: 40px;
  }
  .intro h2, .route-copy h2, .pricing-head h2, .faq-intro h2, .safety-layout h2, .final-cta h2 {
    font-size: clamp(32px, 3.8vw, 44px);
    line-height: 1.05;
  }
  .experience-visual {
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
    padding-bottom: 85px;
  }
  .visual-main, .visual-side {
    height: 460px;
  }
  .safety-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .safety-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: transparent;
  }
  .safety-cards article {
    padding: 22px;
    min-height: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
  }
  .route-section {
    gap: 40px;
  }
  .route-map {
    height: 320px;
  }
  .price-section {
    padding: 85px 0;
  }
  .price-grid {
    gap: 16px;
  }
  .price-card {
    padding: 28px 22px;
    min-height: 440px;
  }
  .price-card h3 {
    font-size: 26px;
    margin: 30px 0 10px;
  }
  .faq-section {
    gap: 45px;
  }
  .final-cta {
    padding: 95px 0;
  }
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 24px;
  }
}

/* --------------------------------------------------------------------------
   2. MOBILE COMMON (< 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }
  .site-header > .button-small {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    font-size: 24px;
    z-index: 12;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(16, 37, 36, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 20px 24px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 100;
    display: flex;
  }
  .nav.mobile-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav a {
    padding: 13px 4px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s, padding-left 0.2s, opacity 0.2s;
  }
  .nav a:hover {
    color: var(--accent);
    opacity: 1;
    padding-left: 6px;
  }
  .nav .nav-cta {
    display: inline-flex;
    margin-top: 16px;
    border-bottom: none;
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 13.5px;
  }
  .hero {
    height: auto;
    min-height: 560px;
    padding-top: 68px;
    padding-bottom: 45px;
  }
  .hero-side-label {
    display: none;
  }
  .hero-overlay {
    background: 
      radial-gradient(ellipse at 50% 45%, rgba(6, 21, 22, 0.22) 0%, rgba(6, 21, 22, 0.65) 100%),
      linear-gradient(0deg, rgba(6, 21, 22, 0.85) 0%, transparent 35%),
      linear-gradient(180deg, rgba(6, 21, 22, 0.6) 0%, transparent 22%) !important;
  }
  .hero-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding-top: 24px;
  }
  .hero .eyebrow.light {
    margin: 0 auto 14px !important;
    display: inline-flex !important;
    align-self: center !important;
    text-align: center !important;
  }
  .hero h1, .typewriter-headline {
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .typewriter-phrase {
    transform-origin: center center !important;
    text-align: center !important;
  }
  .typewriter-phrase.is-grand {
    transform-origin: center center !important;
  }
  .hero-copy {
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-left: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-align: center !important;
    margin: 16px auto 0 !important;
    max-width: 380px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 4px 24px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 1) !important;
  }
  .hero-actions {
    display: none !important;
  }
  .hero-note {
    margin: 20px auto 0 !important;
    display: inline-flex !important;
    align-self: center !important;
    text-align: center !important;
  }
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .dark-section {
    padding: 70px 0;
  }
  .intro, .route-section, .faq-section, .safety-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .intro-copy, .route-copy, .muted {
    max-width: 100%;
  }
  .experience-visual {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 70px;
  }
  .price-section {
    padding: 70px 0;
  }
  .pricing-head {
    display: block;
    margin-bottom: 28px;
  }
  .pricing-head > p {
    margin-top: 14px;
    max-width: 100%;
  }
  .price-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .price-card {
    min-height: auto;
    border-radius: 4px;
  }
  .final-cta {
    padding: 75px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 35px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-bottom: 6px;
  }
}

/* --------------------------------------------------------------------------
   3. LARGE MOBILE / PHABLETS (480px to 767px)
   -------------------------------------------------------------------------- */
@media (min-width: 480px) and (max-width: 767px) {
  .shell {
    width: min(calc(100% - 36px), 640px);
  }
  .hero-content {
    padding-top: 28px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero h1, .typewriter-headline {
    font-size: clamp(34px, 7.5vw, 46px);
    line-height: 1.02;
    min-height: 2.2em;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero-copy {
    font-size: 15.5px !important;
    line-height: 1.52 !important;
    max-width: 420px !important;
    margin: 18px auto 0 !important;
    text-align: center !important;
    background: none !important;
    border: none !important;
    border-left: none !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  .hero-actions {
    display: none !important;
  }
  .hero-note {
    margin: 22px auto 0 !important;
    align-self: center !important;
  }
  .trust-strip {
    padding: 22px 0;
  }
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .trust-grid div {
    display: block;
    padding: 0 8px;
    border-right: 1px solid rgba(17,37,37,.2);
    text-align: center;
  }
  .trust-grid div:last-of-type {
    border-right: none;
  }
  .trust-grid strong {
    display: block;
    font-size: 26px;
    margin-bottom: 3px;
  }
  .trust-grid span {
    font-size: 9.5px;
    line-height: 1.3;
    letter-spacing: 0.04em;
  }
  .trust-grid p {
    display: none;
  }
  .intro h2, .route-copy h2, .pricing-head h2, .faq-intro h2, .safety-layout h2, .final-cta h2 {
    font-size: clamp(32px, 6.5vw, 44px);
    line-height: 1.05;
  }
  .visual-main, .visual-side {
    height: 380px;
    width: 100%;
    border-radius: 4px;
  }
  .safety-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: transparent;
  }
  .safety-cards article {
    padding: 22px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    min-height: auto;
  }
  .route-map {
    height: 300px;
  }
  .price-card {
    padding: 28px 24px;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
  .price-card h3 {
    margin: 22px 0 10px;
    font-size: 26px;
  }
  .price-card .button {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .whatsapp-float {
    right: 20px;
    bottom: 20px;
  }
}

/* --------------------------------------------------------------------------
   4. MEDIUM / STANDARD MOBILE (<= 479px)
   -------------------------------------------------------------------------- */
@media (max-width: 479px) {
  .shell {
    width: calc(100% - 28px);
  }
  .site-header {
    height: 64px;
    padding: 0 16px;
  }
  .hero {
    min-height: 520px;
    padding-top: 64px;
    padding-bottom: 40px;
  }
  .hero-content {
    padding-top: 20px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero .eyebrow.light {
    font-size: 9px !important;
    padding: 4px 11px !important;
    margin: 0 auto 12px !important;
    display: inline-flex !important;
    align-self: center !important;
  }
  .hero h1, .typewriter-headline {
    font-size: clamp(29px, 8.2vw, 36px) !important;
    line-height: 1.03 !important;
    min-height: 2.25em !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .typewriter-phrase {
    transform-origin: center center !important;
    text-align: center !important;
  }
  .typewriter-phrase.is-grand {
    transform-origin: center center !important;
  }
  .hero-copy {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 14px auto 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-left: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    max-width: 330px !important;
    text-align: center !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 4px 24px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 1) !important;
  }
  .hero-actions {
    display: none !important;
  }
  .hero-note {
    margin: 18px auto 0 !important;
    font-size: 9.5px !important;
    padding: 6px 12px !important;
    align-self: center !important;
    display: inline-flex !important;
  }
  .trust-strip {
    padding: 18px 0;
  }
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .trust-grid div {
    display: block;
    padding: 0 4px;
    border-right: 1px solid rgba(17,37,37,.18);
    text-align: center;
  }
  .trust-grid div:last-of-type {
    border-right: none;
  }
  .trust-grid strong {
    display: block;
    font-size: 22px;
    margin-bottom: 2px;
  }
  .trust-grid span {
    font-size: 8px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .trust-grid p {
    display: none;
  }
  .intro h2, .route-copy h2, .pricing-head h2, .faq-intro h2, .safety-layout h2, .final-cta h2 {
    font-size: clamp(27px, 7.6vw, 34px);
    line-height: 1.06;
  }
  .intro h2 em, .route-copy h2 em, .pricing-head h2 em, .faq-intro h2 em {
    padding: 2px 10px 4px !important;
    border-radius: 6px !important;
    font-size: 0.94em !important;
  }
  .visual-main, .visual-side {
    height: 310px;
    width: 100%;
    border-radius: 4px;
  }
  .caption {
    padding: 16px 18px;
    gap: 14px;
  }
  .caption p {
    font-size: 15px;
  }
  .safety-cards {
    grid-template-columns: 1fr;
    gap: 8px;
    background: transparent;
  }
  .safety-cards article {
    padding: 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    min-height: auto;
  }
  .safety-cards h3 {
    margin: 16px 0 8px;
    font-size: 17px;
  }
  .route-map {
    height: 270px;
  }
  .map-badge {
    padding: 5px 8px;
    gap: 6px;
  }
  .map-badge.start-badge {
    top: 10px;
    left: 10px;
  }
  .map-badge.end-badge {
    bottom: 10px;
    right: 10px;
  }
  .map-badge.mid-badge {
    display: none;
  }
  .map-badge strong {
    font-size: 11px;
  }
  .badge-tag {
    font-size: 7px;
    letter-spacing: 0.08em;
  }
  .badge-sub {
    display: none;
  }
  .map-compass {
    top: 10px;
    right: 10px;
    padding: 4px 6px;
    gap: 5px;
  }
  .compass-dial {
    width: 20px;
    height: 20px;
  }
  .compass-needle {
    font-size: 10px;
  }
  .compass-letter {
    font-size: 6px;
  }
  .compass-coords {
    font-size: 7.5px;
  }
  .map-telemetry {
    bottom: 10px;
    left: 10px;
    gap: 5px;
  }
  .telemetry-item {
    font-size: 8.5px;
    padding: 3px 6px;
  }
  .price-card {
    padding: 24px 18px;
  }
  .price-card h3 {
    margin: 20px 0 8px;
    font-size: 24px;
  }
  .price strong {
    font-size: 28px;
  }
  .price-old {
    font-size: 18px;
  }
  .promo-speech-bubble {
    font-size: 11px;
    padding: 5px 10px;
    margin-left: 0;
    margin-top: 4px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
  .bubble-arrow {
    display: none;
  }
  .price-card .button {
    width: 100%;
    justify-content: center;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}

/* --------------------------------------------------------------------------
   5. COMPACT MOBILE (335px to 359px) - Total Comfort, Zero Zoom Out
   -------------------------------------------------------------------------- */
@media (max-width: 359px) {
  .shell {
    width: calc(100% - 20px) !important;
  }
  .site-header {
    height: 58px !important;
    padding: 0 12px !important;
  }
  .brand {
    font-size: 9px !important;
    gap: 6px !important;
    letter-spacing: 0.08em !important;
  }
  .brand-mark {
    width: 26px !important;
    height: 26px !important;
    font-size: 15px !important;
  }
  .hero {
    min-height: 490px !important;
    padding-top: 58px !important;
    padding-bottom: 35px !important;
  }
  .hero-content {
    padding-top: 16px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero .eyebrow.light {
    font-size: 8.5px !important;
    padding: 3px 9px !important;
    margin: 0 auto 10px !important;
    align-self: center !important;
    display: inline-flex !important;
  }
  .hero h1, .typewriter-headline {
    font-size: clamp(24px, 7.8vw, 28px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
    min-height: 2.3em !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .typewriter-cursor {
    width: 4px !important;
    height: 0.72em !important;
    margin-left: 4px !important;
  }
  .typewriter-phrase {
    transform-origin: center center !important;
    text-align: center !important;
  }
  .typewriter-phrase.is-grand {
    transform-origin: center center !important;
  }
  @keyframes grand-grow {
    0% { transform: scale(0.97); }
    60% { transform: scale(1.04); }
    100% { transform: scale(1.02); }
  }
  @keyframes grand-pulse {
    0% { transform: scale(1.02); text-shadow: 0 0 12px rgba(215, 255, 85, 0.45); }
    100% { transform: scale(1.05); text-shadow: 0 0 20px rgba(215, 255, 85, 0.65); }
  }
  .hero-copy {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    margin: 12px auto 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-left: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    max-width: 290px !important;
    text-align: center !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 4px 20px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 1) !important;
  }
  .hero-actions {
    display: none !important;
  }
  .hero-note {
    margin: 16px auto 0 !important;
    font-size: 8.5px !important;
    padding: 5px 10px !important;
    align-self: center !important;
    display: inline-flex !important;
  }

  /* Trust Strip: 335px & 358px tailored */
  .trust-strip {
    padding: 15px 0 !important;
  }
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 3px !important;
  }
  .trust-grid div {
    padding: 0 2px !important;
    border-right: 1px solid rgba(17,37,37,.15) !important;
    text-align: center !important;
  }
  .trust-grid div:last-of-type {
    border-right: none !important;
  }
  .trust-grid strong {
    font-size: 18px !important;
    line-height: 1.1 !important;
  }
  .trust-grid span {
    font-size: 7.2px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
  }
  .trust-grid p {
    display: none !important;
  }

  /* Titles */
  .intro h2, .route-copy h2, .pricing-head h2, .faq-intro h2, .safety-layout h2, .final-cta h2 {
    font-size: clamp(23px, 7.5vw, 28px) !important;
    line-height: 1.08 !important;
  }
  .intro-copy p {
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    margin-bottom: 20px !important;
  }
  .visual-main, .visual-side {
    height: 240px !important;
  }
  .caption {
    padding: 12px 14px !important;
    gap: 10px !important;
  }
  .caption p {
    font-size: 13.5px !important;
  }
  .safety-cards {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    background: transparent !important;
  }
  .safety-cards article {
    padding: 16px 14px !important;
  }
  .safety-cards h3 {
    font-size: 16px !important;
    margin: 12px 0 6px !important;
  }
  .safety-cards p {
    font-size: 12px !important; 
  }
  .route-map {
    height: 235px !important;
  }
  .map-badge {
    padding: 4px 6px !important;
    gap: 5px !important;
  }
  .map-badge strong {
    font-size: 10px !important;
  }
  .badge-tag {
    font-size: 6.5px !important;
  }
  .map-compass {
    top: 8px !important;
    right: 8px !important;
    padding: 3px 5px !important;
    gap: 4px !important;
  }
  .compass-coords {
    display: none !important;
  }
  .map-telemetry {
    bottom: 8px !important;
    left: 8px !important;
    gap: 4px !important;
  }
  .telemetry-item {
    font-size: 7.5px !important;
    padding: 3px 5px !important;
  }
  .telemetry-item:nth-child(2) {
    display: none !important;
  }
  .price-card {
    padding: 18px 14px !important;
  }
  .price-top {
    flex-wrap: wrap !important;
    gap: 4px !important;
  }
  .price-badge {
    padding: 3px 6px !important;
    font-size: 8.5px !important;
  }
  .price-card h3 {
    font-size: 21px !important;
    margin: 15px 0 6px !important;
  }
  .price strong {
    font-size: 24px !important;
  }
  .price-old {
    font-size: 16px !important;
  }
  .promo-speech-bubble {
    font-size: 9.8px !important;
    padding: 4px 8px !important;
  }
  .promo-speech-bubble strong {
    font-size: 10.5px !important;
  }
  .price-card ul {
    font-size: 11.5px !important;
    line-height: 1.7 !important;
    margin: 14px 0 18px !important;
  }
  .price-card .button {
    width: 100% !important;
    justify-content: center !important;
    font-size: 12px !important;
  }
  summary {
    font-size: 13.5px !important;
    gap: 8px !important;
  }
  details p {
    font-size: 12px !important;
  }
  .whatsapp-float {
    width: 42px !important;
    height: 42px !important;
    right: 12px !important;
    bottom: 12px !important;
    border-radius: 50% !important;
  }
  .whatsapp-float svg {
    width: 19px !important;
    height: 19px !important;
  }
}

/* --------------------------------------------------------------------------
   6. ULTRA-COMPACT (320px to 334px)
   -------------------------------------------------------------------------- */
@media (max-width: 335px) {
  .shell {
    width: calc(100% - 16px) !important;
  }
  .site-header {
    height: 54px !important;
    padding: 0 8px !important;
  }
  .hero h1, .typewriter-headline {
    font-size: 23px !important;
  }
  .trust-grid strong {
    font-size: 15px !important;
  }
  .trust-grid span {
    font-size: 6.8px !important;
  }
  .visual-main, .visual-side {
    height: 210px !important;
  }
  .route-map {
    height: 200px !important;
  }
  .price-card {
    padding: 15px 12px !important;
  }
  .price-card h3 {
    font-size: 19px !important;
  }
  .price strong {
    font-size: 22px !important;
  }
  .safety-cards {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    background: transparent !important;
  }
  .whatsapp-float {
    width: 40px !important;
    height: 40px !important;
    right: 10px !important;
    bottom: 10px !important;
  }
}

/* --------------------------------------------------------------------------
   7. PANTALLAS MÓVILES ALARGADAS (Poco X7, Galaxy S, iPhone modernos >= 700px altura)
   Compensa pantallas 20:9 y 19.5:9 evitando el vacío visual y agrupando al centro
   -------------------------------------------------------------------------- */
@media (max-width: 479px) and (min-height: 700px) {
  .hero {
    min-height: 100vh !important;
    min-height: 100dvh !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding-top: max(68px, 9dvh) !important;
    padding-bottom: max(32px, 5dvh) !important;
    box-sizing: border-box !important;
  }

  .hero-content {
    padding-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero .eyebrow.light {
    font-size: 10px !important;
    letter-spacing: 0.16em !important;
    margin: 0 auto clamp(12px, 2dvh, 18px) !important;
    display: inline-flex !important;
    align-self: center !important;
  }

  .hero h1, .typewriter-headline {
    font-size: clamp(30px, 8.6vw, 36px) !important;
    line-height: 1.03 !important;
    min-height: 2.25em !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .typewriter-phrase {
    transform-origin: center center !important;
    text-align: center !important;
  }

  .typewriter-phrase.is-grand {
    transform-origin: center center !important;
  }

  .hero-copy {
    font-size: 14.5px !important;
    line-height: 1.52 !important;
    margin: clamp(16px, 2.5dvh, 22px) auto 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-left: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    max-width: 340px !important;
    text-align: center !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 4px 24px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 1) !important;
  }

  .hero-actions {
    display: none !important;
  }

  .hero-note {
    margin: clamp(20px, 3.5dvh, 30px) auto 0 !important;
    font-size: 10px !important;
    padding: 6px 14px !important;
    display: inline-flex !important;
    align-self: center !important;
  }

  /* Secciones con respiración vertical proporcional a la altura de la pantalla */
  .section {
    padding-top: clamp(70px, 9dvh, 95px) !important;
    padding-bottom: clamp(70px, 9dvh, 95px) !important;
  }

  .dark-section, .price-section {
    padding: clamp(70px, 9dvh, 95px) 0 !important;
  }

  .final-cta {
    padding: clamp(80px, 11dvh, 110px) 0 !important;
  }

  .visual-main, .visual-side {
    height: clamp(280px, 38dvh, 340px) !important;
  }

  .route-map {
    height: clamp(240px, 32dvh, 290px) !important;
  }

  .price-card {
    padding: clamp(22px, 2.8dvh, 28px) clamp(16px, 4vw, 22px) !important;
  }

  .safety-cards {
    grid-template-columns: 1fr !important;
    gap: clamp(8px, 1.4dvh, 12px) !important;
    background: transparent !important;
  }

  .safety-cards article {
    padding: clamp(18px, 2.2dvh, 24px) clamp(16px, 4vw, 20px) !important;
  }

  .trust-strip {
    padding: clamp(18px, 2.4dvh, 24px) 0 !important;
  }

  .trust-grid strong {
    font-size: clamp(20px, 5.5vw, 24px) !important;
  }

  .trust-grid span {
    font-size: 7.8px !important;
  }
}

/* --------------------------------------------------------------------------
   8. OCULTAR HEADER BAR ENTRE 450px Y 800px
   -------------------------------------------------------------------------- */
@media (min-width: 450px) and (max-width: 800px) {
  .site-header {
    display: none !important;
  }
}


