/* ============================================
   ALMA FLY — fly-page.css
   Accent: #3693C8 (Fly blue)
   Animation signature: character scatter (sky drop)
   All selectors prefixed .fly-* or .fly-nav
============================================ */

/* ============================================
   CSS VARIABLES
============================================ */

:root {
  --fly-accent:        #3693C8;
  --fly-accent-bright: #5EB3DC;
  --fly-accent-dim:    rgba(54, 147, 200, 0.10);
  --fly-accent-glow:   rgba(54, 147, 200, 0.24);
  --fly-border:        rgba(54, 147, 200, 0.22);
  --fly-border-subtle: rgba(255, 255, 255, 0.06);
  --font-display:      'Syne', 'Space Grotesk', sans-serif;
}

/* ============================================
   NAV — Fly overrides
============================================ */

.fly-nav {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.fly-nav.nav--scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: rgba(54, 147, 200, 0.15);
}

.fly-nav .nav-links a.active,
.fly-nav .nav-links a[data-line="fly"] {
  color: var(--fly-accent);
  position: relative;
}

.fly-nav .nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--fly-accent);
  border-radius: 2px;
}

.fly-nav .nav-links a[data-line="systems"]:hover { color: #00C2A8; }
.fly-nav .nav-links a[data-line="sound"]:hover   { color: #7B61FF; }

/* ============================================
   HERO
============================================ */

.fly-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0A0A0A;
}

.fly-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.fly-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  mix-blend-mode: luminosity;
  transform-origin: center center;
  transition: transform 0s linear;
}

.fly-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1;
}

/* Cinematic pulse — slower than Sound's 120bpm; aerial = vast, patient */
.fly-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse 65% 55% at 50% 40%,
    rgba(54, 147, 200, 0.14),
    rgba(54, 147, 200, 0.04) 45%,
    transparent 70%
  );
  animation: fly-pulse 2s ease-in-out infinite alternate;
}

@keyframes fly-pulse {
  0%   { opacity: 0.5; transform: scale(1.00); }
  100% { opacity: 1.0; transform: scale(1.04); }
}

.fly-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(54, 147, 200, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Hero content */
.fly-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 160px 40px 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */
.fly-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 10px;
  border: 1px solid var(--fly-border);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fly-accent);
  background: rgba(54, 147, 200, 0.07);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(16px);
}

.fly-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fly-accent);
  box-shadow: 0 0 8px var(--fly-accent);
  animation: fly-dot-pulse 2s ease-in-out infinite alternate;
}

@keyframes fly-dot-pulse {
  0%   { opacity: 0.5; box-shadow: 0 0 4px var(--fly-accent); }
  100% { opacity: 1.0; box-shadow: 0 0 14px var(--fly-accent); }
}

.fly-hero-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #FAFAFA;
  margin-bottom: 40px;
  display: block;
}

/* Clip-reveal lines — CSS hides at 110%, GSAP animates to y:0 */
.fly-title-line {
  display: block;
  overflow: hidden;
  line-height: 1.15;
}

.fly-title-line-inner {
  display: block;
  transform: translateY(110%);
}

.fly-title-line--accent .fly-title-line-inner {
  color: var(--fly-accent-bright);
}

/* Tagline */
.fly-hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 540px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(20px);
}

/* CTAs */
.fly-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}

/* Scroll hint */
.fly-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 4;
  opacity: 0;
  animation: fly-scroll-fade 1s ease 3s forwards;
}

.fly-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fly-accent), transparent);
  animation: fly-scroll-beat 2s ease-in-out infinite alternate;
  transform-origin: top;
}

@keyframes fly-scroll-beat {
  0%   { opacity: 0.3; transform: scaleY(0.6); }
  100% { opacity: 0.8; transform: scaleY(1.0); }
}

.fly-scroll-hint span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

@keyframes fly-scroll-fade {
  to { opacity: 1; }
}

/* ============================================
   BUTTONS — Fly
============================================ */

.btn-fly-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--fly-accent);
  color: #FAFAFA;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 8px;
  border: 1.5px solid var(--fly-accent);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-fly-primary:hover {
  background: var(--fly-accent-bright);
  border-color: var(--fly-accent-bright);
  box-shadow: 0 0 32px rgba(54, 147, 200, 0.45), 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

.btn-fly-primary:active { transform: translateY(0); }

.btn-fly-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.14);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-fly-ghost:hover {
  color: #FAFAFA;
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

.btn-fly-ghost--large {
  padding: 16px 36px;
  font-size: 15px;
}

/* ============================================
   SHARED SECTION PATTERNS
============================================ */

.fly-section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.fly-section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fly-accent);
  margin-bottom: 12px;
  opacity: 0.8;
}

.fly-section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: #FAFAFA;
  margin-bottom: 16px;
}

.fly-section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,0.4);
  max-width: 520px;
  line-height: 1.6;
  margin-top: 8px;
}

.fly-section-title-em,
.fly-cta-title-em {
  background: linear-gradient(180deg, #5EB3DC 0%, #3693C8 60%, #2575A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  font-weight: 800;
}

/* ============================================
   OFERTA NÚCLEO
============================================ */

.fly-oferta {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.fly-oferta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.fly-oferta-item {
  padding: 40px 36px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.fly-oferta-item:last-child {
  border-right: none;
}

.fly-oferta-item:hover {
  background: rgba(54, 147, 200, 0.05);
}

.fly-oferta-item:hover .fly-oferta-num {
  color: rgba(54, 147, 200, 0.14);
}

.fly-oferta-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
  user-select: none;
}

.fly-oferta-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FAFAFA;
  margin-bottom: 12px;
}

.fly-oferta-item p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   PARA QUIÉN
============================================ */

.fly-para-quien {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.fly-para-quien::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54,147,200,0.15), transparent);
}

.fly-icp-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 40px;
  align-items: start;
  margin-bottom: 56px;
}

.fly-icp-col {
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--fly-border-subtle);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.fly-icp-col:hover {
  background: rgba(255,255,255,0.03);
}

.fly-icp-si { border-top: 2px solid rgba(54, 147, 200, 0.5); }
.fly-icp-no { border-top: 2px solid rgba(255,255,255,0.10); }

.fly-icp-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #FAFAFA;
  margin-bottom: 28px;
}

.fly-icp-icon { flex-shrink: 0; }
.fly-icp-icon--si { color: var(--fly-accent); }
.fly-icp-icon--no { color: rgba(255,255,255,0.25); }

.fly-icp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fly-icp-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  padding-left: 20px;
  position: relative;
}

.fly-icp-si .fly-icp-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(54, 147, 200, 0.45);
  font-size: 12px;
}

.fly-icp-no .fly-icp-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.18);
  font-size: 12px;
}

.fly-icp-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,0.07) 20%,
    rgba(255,255,255,0.07) 80%,
    transparent
  );
  margin-top: 40px;
}

.fly-segmentos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fly-segmentos-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
}

.fly-segment-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fly-tag {
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(54, 147, 200, 0.20);
  background: rgba(54, 147, 200, 0.05);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(54, 147, 200, 0.8);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.fly-tag:hover {
  border-color: rgba(54, 147, 200, 0.5);
  background: rgba(54, 147, 200, 0.10);
  color: var(--fly-accent-bright);
}

/* ============================================
   MÍRALO — Referencias FPV
============================================ */

.fly-miralo {
  padding: clamp(80px, 10vw, 140px) 0;
}

.fly-miralo-group {
  margin-bottom: clamp(56px, 7vw, 96px);
}

.fly-miralo-group:last-child {
  margin-bottom: 0;
}

.fly-miralo-label {
  font-family: var(--font-display);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fly-accent);
  margin: 0 0 20px;
}

/* Featured concepto video — full width */
.fly-miralo-concepto {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #000;
}

.fly-miralo-video {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: cover;
}

/* Concepto videos son horizontales — mostrar completos en desktop, sin recorte */
@media (min-width: 769px) {
  .fly-miralo-concepto .fly-miralo-video {
    object-fit: contain;
    aspect-ratio: 16 / 9;
    max-height: none;
  }
}

/* 4-col reference grid */
.fly-miralo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fly-video-item {
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
}

.fly-video-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .fly-miralo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .fly-miralo-video {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .fly-miralo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .fly-video-item {
    aspect-ratio: 9 / 16;
  }
}

/* ============================================
   PAQUETES — 3 tiers
============================================ */

.fly-paquetes {
  padding: clamp(80px, 10vw, 140px) 0;
  background: rgba(255,255,255,0.012);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.fly-paquetes::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(54,147,200,0.05), transparent 70%);
  pointer-events: none;
}

.fly-paquetes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.fly-paquetes-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}

.fly-paquete {
  position: relative;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.fly-paquete:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.fly-paquete--featured {
  border-color: var(--fly-accent) !important;
  background: rgba(54, 147, 200, 0.06) !important;
  box-shadow:
    0 0 0 1px rgba(54, 147, 200, 0.3),
    0 8px 40px rgba(54, 147, 200, 0.14),
    inset 0 1px 0 rgba(54, 147, 200, 0.15);
}

.fly-paquete--featured:hover {
  box-shadow:
    0 0 0 1px rgba(54, 147, 200, 0.55),
    0 16px 60px rgba(54, 147, 200, 0.22),
    inset 0 1px 0 rgba(54, 147, 200, 0.2);
  transform: translateY(-6px);
}

.fly-paquete-featured-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fly-accent);
  margin-bottom: 20px;
}

.fly-paquete-tier {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fly-paquete-tier::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

.fly-paquete--featured .fly-paquete-tier {
  color: rgba(54, 147, 200, 0.7);
}

.fly-paquete-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FAFAFA;
  margin-bottom: 10px;
  line-height: 1.15;
}

.fly-paquete-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin-bottom: 28px;
  min-height: 40px;
}

.fly-paquete-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.fly-paquete-features li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.52);
  padding: 9px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fly-paquete-features li:last-child {
  border-bottom: none;
}

.fly-paquete-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: rgba(54, 147, 200, 0.55);
}

.fly-paquete--featured .fly-paquete-features li::before {
  background: var(--fly-accent);
}

.btn-fly-paquete {
  display: block;
  padding: 12px 24px;
  text-align: center;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  width: 100%;
  margin-top: 14px;
}

.btn-fly-paquete:hover {
  border-color: rgba(255,255,255,0.28);
  color: #FAFAFA;
  background: rgba(255,255,255,0.04);
}

.btn-fly-paquete--featured {
  background: var(--fly-accent);
  border-color: var(--fly-accent);
  color: #FAFAFA;
  font-weight: 700;
}

.btn-fly-paquete--featured:hover {
  background: var(--fly-accent-bright);
  border-color: var(--fly-accent-bright);
  box-shadow: 0 4px 20px rgba(54,147,200,0.45);
}

/* ============================================
   PROCESO — 4 steps
============================================ */

.fly-proceso {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.fly-proceso::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54,147,200,0.12), transparent);
}

.fly-proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.fly-proceso-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(12.5% - 4px);
  right: calc(12.5% - 4px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(54, 147, 200, 0.35) 10%,
    rgba(54, 147, 200, 0.35) 90%,
    transparent
  );
}

.fly-proceso-step {
  position: relative;
  padding: 0 24px 0 0;
}

.fly-step-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(54, 147, 200, 0.07);
  margin-bottom: 20px;
  transition: color 0.4s ease;
  position: relative;
  display: inline-block;
}

.fly-step-num::after {
  content: '';
  position: absolute;
  top: 33px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(54, 147, 200, 0.4);
  border: 2px solid rgba(54, 147, 200, 0.7);
  box-shadow: 0 0 14px rgba(54, 147, 200, 0.25);
  transform: translateY(-50%);
}

.fly-proceso-step:hover .fly-step-num {
  color: rgba(54, 147, 200, 0.16);
}

.fly-proceso-step:hover .fly-step-num::after {
  background: var(--fly-accent);
  box-shadow: 0 0 20px rgba(54, 147, 200, 0.5);
}

.fly-step-content h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FAFAFA;
  margin-bottom: 8px;
}

.fly-step-content p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.42);
  margin-bottom: 10px;
}

.fly-step-duration {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fly-accent);
  opacity: 0.6;
}

/* ============================================
   CTA FINAL
============================================ */

.fly-cta {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.fly-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(54, 147, 200, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.fly-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.fly-cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #FAFAFA;
  margin-bottom: 20px;
}

.fly-cta-body {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.fly-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   REDUCED MOTION
============================================ */

@media (prefers-reduced-motion: reduce) {
  .fly-hero-glow,
  .fly-badge-dot,
  .fly-scroll-line {
    animation: none !important;
  }

  .fly-hero-badge,
  .fly-hero-tagline,
  .fly-hero-ctas,
  .fly-scroll-hint {
    opacity: 1 !important;
    transform: none !important;
  }

  .fly-char {
    opacity: 1 !important;
    transform: none !important;
  }

  .fly-hero-video {
    display: none;
  }
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1024px) {
  .fly-oferta-grid {
    grid-template-columns: 1fr;
  }

  .fly-oferta-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .fly-oferta-item:last-child {
    border-bottom: none;
  }

  .fly-icp-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fly-icp-divider { display: none; }

  .fly-paquetes-grid,
  .fly-paquetes-grid--two {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .fly-proceso-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .fly-proceso-grid::before { display: none; }
}

@media (max-width: 768px) {
  .fly-hero-inner {
    padding: 120px 24px 80px;
  }

  .fly-hero-title {
    font-size: clamp(42px, 11vw, 64px);
  }

  .fly-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-fly-primary,
  .btn-fly-ghost {
    width: 100%;
    justify-content: center;
  }

  .fly-icp-col { padding: 28px 24px; }

  .fly-segmentos {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .fly-proceso-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fly-cta-buttons {
    flex-direction: column;
  }

  .btn-fly-ghost--large {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   BODY SCOPE OVERRIDES — data-line="fly"
============================================ */

body[data-line="fly"] .fly-hero-title {
  font-size: clamp(52px, 8vw, 116px) !important;
  letter-spacing: -0.040em !important;
  line-height: 0.86 !important;
}

@media (max-width: 768px) {
  html,
  body[data-line="fly"] {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  body[data-line="fly"] .fly-hero {
    max-width: 100vw !important;
  }
  body[data-line="fly"] .fly-hero-title {
    font-size: clamp(15px, 4.5vw, 40px) !important;
    letter-spacing: -0.03em !important;
    max-width: 100% !important;
  }
  body[data-line="fly"] .fly-title-line-inner {
    white-space: nowrap !important;
  }
  body[data-line="fly"] .fly-title-line {
    overflow: hidden !important;
  }
  body[data-line="fly"] .fly-hero-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
}

body[data-line="fly"] .nav-links a {
  font-family: 'Space Grotesk', 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: rgba(250, 250, 250, 0.6) !important;
  transition: color 320ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body[data-line="fly"] .nav-links a:hover,
body[data-line="fly"] .nav-links a.active {
  color: #FAFAFA !important;
}

body[data-line="fly"] .fly-section-label {
  font-size: 11px;
  letter-spacing: 0.26em !important;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--fly-accent);
}

body[data-line="fly"] .fly-section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  display: inline-block;
}

body[data-line="fly"] .fly-section-title {
  font-size: clamp(40px, 6vw, 88px) !important;
  letter-spacing: -0.030em !important;
  line-height: 1.0 !important;
  margin-bottom: 24px;
}

body[data-line="fly"] .fly-oferta,
body[data-line="fly"] .fly-para-quien,
body[data-line="fly"] .fly-paquetes,
body[data-line="fly"] .fly-proceso,
body[data-line="fly"] .fly-cta {
  padding-block: clamp(100px, 14vh, 180px) !important;
}

body[data-line="fly"] .fly-paquete {
  border-radius: 16px !important;
  padding: clamp(32px, 3.5vw, 44px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.015) !important;
  transition: all 480ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

body[data-line="fly"] .fly-paquete::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(54, 147, 200, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 480ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}

body[data-line="fly"] .fly-paquete:hover::before {
  opacity: 1;
}

body[data-line="fly"] .fly-paquete > * {
  position: relative;
  z-index: 1;
}

body[data-line="fly"] .fly-paquete:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(54, 147, 200, 0.32) !important;
  box-shadow: 0 32px 80px rgba(54, 147, 200, 0.18) !important;
}

body[data-line="fly"] .fly-paquete--featured {
  border-color: rgba(54, 147, 200, 0.40) !important;
  background:
    linear-gradient(180deg, rgba(54, 147, 200, 0.08) 0%, rgba(54, 147, 200, 0.01) 100%),
    rgba(255, 255, 255, 0.02) !important;
  box-shadow: 0 0 0 1px rgba(54, 147, 200, 0.32), 0 24px 80px rgba(54, 147, 200, 0.16) !important;
  transform: translateY(-12px) !important;
}

body[data-line="fly"] .fly-proceso-step {
  padding: clamp(28px, 3vw, 40px) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  background: rgba(255, 255, 255, 0.012) !important;
  transition: all 480ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body[data-line="fly"] .fly-proceso-step:hover {
  transform: translateY(-4px);
  border-color: var(--fly-accent) !important;
  background: rgba(54, 147, 200, 0.03) !important;
  box-shadow: 0 20px 50px rgba(54, 147, 200, 0.12) !important;
}

body[data-line="fly"] .fly-cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(54, 147, 200, 0.10) 0%, transparent 60%),
    transparent !important;
}

body[data-line="fly"] .fly-cta-title {
  font-size: clamp(40px, 6vw, 80px) !important;
  letter-spacing: -0.030em !important;
  line-height: 1.0 !important;
}

@media (prefers-reduced-motion: reduce) {
  body[data-line="fly"] .fly-paquete::before {
    display: none;
  }
  body[data-line="fly"] .fly-paquete:hover,
  body[data-line="fly"] .fly-proceso-step:hover,
  body[data-line="fly"] .fly-oferta-item:hover,
  body[data-line="fly"] .btn-fly-primary:hover,
  body[data-line="fly"] .btn-fly-ghost:hover {
    transform: none !important;
  }
}

/* ============================================
   FOOTER SOCIAL — Fly
============================================ */

body[data-line="fly"] .footer-social a:hover {
  border-color: var(--fly-accent);
  color: #FAFAFA;
}

/* ============================================
   MOBILE VIDEO MODAL — Swiper
============================================ */

.fly-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fly-video-modal.is-open {
  display: flex;
}

.fly-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10001;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fly-modal-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.fly-modal-swiper {
  width: 100%;
  height: 100%;
}

.fly-modal-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.fly-modal-swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 100svh;
}

.fly-modal-swiper .swiper-button-prev,
.fly-modal-swiper .swiper-button-next {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.fly-modal-swiper .swiper-button-prev::after,
.fly-modal-swiper .swiper-button-next::after {
  font-size: 14px;
}

/* En desktop el modal no existe — solo mobile */
@media (min-width: 769px) {
  .fly-video-modal { display: none !important; }
}
