/* ============================================================
   LOLA — Landing Page · Sistema de diseño
   "A donde vayas yo voy" · Guatemala
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Marca */
  --brand:        #1D57A9;
  --brand-600:    #1A4E97;
  --brand-700:    #143C75;
  --accent:       #F4C71E;
  --accent-600:   #F59E0B;
  --dark:         #0A0F1E;
  --dark-2:       #111827;

  /* Neutros */
  --white:        #FFFFFF;
  --off-white:    #F8F9FA;
  --gray-100:     #F1F3F5;
  --gray-200:     #E5E7EB;
  --gray-400:     #9CA3AF;
  --gray-500:     #6B7280;
  --gray-600:     #4B5563;
  --gray-900:     #111827;

  --success:      #10B981;

  /* Gradientes */
  --grad-hero: linear-gradient(135deg, #0A0F1E 0%, #143C75 55%, #1D57A9 100%);
  --grad-cta:  linear-gradient(90deg, #F4C71E 0%, #F59E0B 100%);
  --grad-tech: linear-gradient(140deg, #1D57A9 0%, #0A0F1E 100%);

  /* Tipografía */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --pad: clamp(24px, 6vw, 96px);

  /* Sombras */
  --shadow-sm:  0 4px 24px rgba(10,15,30,0.06);
  --shadow-md:  0 12px 40px rgba(10,15,30,0.12);
  --shadow-lg:  0 25px 50px -12px rgba(10,15,30,0.30);
  --shadow-brand: 0 24px 60px -16px rgba(29,87,169,0.45);

  --radius: 18px;
  --radius-lg: 26px;
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--dark); }

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { padding-block: clamp(72px, 11vw, 150px); }
.section--tight { padding-block: clamp(48px, 6vw, 72px); }

/* ---------- TYPE ---------- */
.overline {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.overline--light { color: var(--accent); }

.h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.6vw, 92px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(31px, 4.2vw, 56px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.08;
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.15;
}
.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
  color: var(--gray-600);
}
.text-accent { color: var(--accent); }
.text-brand { color: var(--brand); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 8px 24px -6px rgba(244,199,30,0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -6px rgba(244,199,30,0.65); }
.btn--primary::after {
  content: '';
  position: absolute; top: -50%; left: -75%;
  width: 45%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-22deg);
  animation: shimmer 4.5s infinite;
}
@keyframes shimmer { 0%{left:-75%} 55%,100%{left:135%} }

.btn--ghost-light {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; transform: translateY(-2px); }

.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--dark-2); }

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

.btn--lg { padding: 18px 36px; font-size: 16.5px; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; color: var(--brand);
  font-size: 15.5px;
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- PILL ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,199,30,0.13);
  border: 1px solid rgba(244,199,30,0.42);
  color: var(--accent);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(244,199,30,.6); animation: ping 2s infinite; }
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(244,199,30,.55)} 70%{box-shadow:0 0 0 8px rgba(244,199,30,0)} 100%{box-shadow:0 0 0 0 rgba(244,199,30,0)} }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__brand img { height: 46px; width: auto; border-radius: 9px; }
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 800; font-size: 23px; letter-spacing: 0.04em;
  color: #fff; transition: color .3s ease;
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.86);
  transition: color .2s ease; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--accent); transition: width .25s ease;
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 18px; }

/* language switcher */
.lang { position: relative; }
.lang__toggle {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; padding: 8px 13px; border-radius: 9px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .03em;
  transition: background .2s, border-color .2s, color .2s;
}
.lang__toggle svg.globe { width: 16px; height: 16px; opacity: .9; }
.lang__toggle svg.caret { width: 12px; height: 12px; opacity: .7; transition: transform .2s; }
.lang__toggle:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,.4); }
.nav.scrolled .lang__toggle { background: var(--gray-100); border-color: var(--gray-200); color: var(--dark); }
.nav.scrolled .lang__toggle:hover { background: var(--gray-200); }
.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 168px;
  background: #fff; border-radius: 13px; padding: 7px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
  opacity: 0; transform: translateY(-8px) scale(.97); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease; transform-origin: top right;
}
.lang.open .lang__menu, #langDropdown.open .lang__menu { opacity: 1; transform: none; pointer-events: auto; }
#langDropdown.open .lang__toggle svg.caret { transform: rotate(180deg); }
.lang__opt {
  display: flex; align-items: center; gap: 11px; width: 100%;
  padding: 10px 12px; border-radius: 9px; border: none; background: transparent;
  font-size: 14.5px; font-weight: 600; color: var(--gray-600); text-align: left;
  transition: background .15s, color .15s;
}
.lang__opt .code { font-weight: 800; color: var(--brand); font-size: 12px; width: 22px; }
.lang__opt:hover { background: var(--off-white); color: var(--dark); }
.lang__opt.active { background: rgba(29,87,169,.08); color: var(--brand); }
.lang__opt.active .dot-active { margin-left: auto; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.lang__opt:not(.active) .dot-active { display: none; }

/* mobile language row */
.mobile-lang { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.mobile-lang button {
  flex: 1 1 calc(33.333% - 7px); padding: 14px 0; border-radius: 11px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .04em;
}
.mobile-lang button.active { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.nav__signin { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.86); transition: color .2s; }
.nav__signin:hover { color: #fff; }

/* scrolled state */
.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 rgba(10,15,30,0.06), 0 8px 30px rgba(10,15,30,0.07);
  border-bottom-color: rgba(10,15,30,0.06);
}
.nav.scrolled .nav__wordmark { color: var(--dark); }
.nav.scrolled .nav__link,
.nav.scrolled .nav__signin { color: var(--gray-600); }
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__signin:hover { color: var(--brand); }

.nav__burger {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__burger span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.nav.scrolled .nav__burger span { background: var(--dark); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--pad);
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .3s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { color: #fff; font-family: var(--font-display); font-size: 30px; font-weight: 700; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu a:last-of-type { border: none; }
.mobile-menu .btn { margin-top: 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 70px;
  background: var(--dark);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,15,30,0.72) 0%, rgba(10,15,30,0.55) 45%, rgba(10,15,30,0.92) 100%),
    linear-gradient(105deg, rgba(10,15,30,0.85) 8%, rgba(10,15,30,0.25) 60%);
}
/* animated route lines */
.hero__routes { position: absolute; inset: 0; z-index: 2; overflow: hidden; opacity: .5; }
.route-line {
  position: absolute; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: route 7s linear infinite;
  opacity: 0;
}
@keyframes route {
  0% { transform: translateX(-30%); opacity: 0; }
  12% { opacity: .9; }
  88% { opacity: .9; }
  100% { transform: translateX(130%); opacity: 0; }
}
.hero__content { position: relative; z-index: 3; max-width: 880px; }
.hero h1 { color: #fff; margin: 22px 0 0; }
.hero h1 .text-accent { display: inline-block; }
.hero__sub { color: rgba(255,255,255,0.8); max-width: 600px; margin-top: 24px; font-size: clamp(17px,1.5vw,20px); line-height: 1.7; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(28px,5vw,64px);
  margin-top: 60px; padding-top: 38px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.stat__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px,3.4vw,42px); color: #fff; letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 2px;
}
.stat__num .suffix { color: var(--accent); }
.stat__label { font-size: 13.5px; color: rgba(255,255,255,0.62); margin-top: 4px; max-width: 150px; line-height: 1.35; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue .mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.4); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content:''; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:3px; height:6px; background:var(--accent); border-radius:2px; animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0%{opacity:0; top:6px} 40%{opacity:1} 80%{opacity:0; top:16px} 100%{opacity:0} }

/* ============================================================
   SERVICE TYPES band
   ============================================================ */
.svc { background: var(--white); padding-block: clamp(40px,5vw,60px); border-bottom: 1px solid var(--gray-100); }
.svc__label { text-align: center; margin-bottom: 28px; }
.svc__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 920px; margin-inline: auto; }
.svc-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 100px;
  background: var(--off-white); border: 1px solid var(--gray-200);
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--gray-900);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s, background .2s, color .2s;
  cursor: default;
}
.svc-chip svg { width: 19px; height: 19px; color: var(--brand); transition: color .2s; flex: none; }
.svc-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--brand); background: #fff; }
.svc-chip:nth-child(odd):hover { border-color: var(--accent-600); }
.svc-chip:nth-child(odd):hover svg { color: var(--accent-600); }

/* ============================================================
   TRUST LOGOS
   ============================================================ */
.trust { background: var(--white); border-bottom: 1px solid var(--gray-100); }
.trust__label { text-align: center; margin-bottom: 30px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 64px; width: max-content; animation: marquee 28s linear infinite; align-items: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.client-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  color: var(--gray-400); filter: grayscale(1); opacity: .75;
  transition: color .25s, filter .25s, opacity .25s; white-space: nowrap;
}
.client-logo svg { width: 26px; height: 26px; }
.client-logo:hover { color: var(--brand); filter: grayscale(0); opacity: 1; }

/* ============================================================
   VALUE PROP (alternating)
   ============================================================ */
.value { background: var(--off-white); }
.value__head { text-align: center; max-width: 760px; margin: 0 auto clamp(56px,7vw,88px); }
.value__head .h2 { margin-top: 16px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,88px); align-items: center; }
.split + .split { margin-top: clamp(72px,9vw,128px); }
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3.2;
}
.split__media img, .split__media image-slot { width: 100%; height: 100%; object-fit: cover; }
.split__media::after { content:''; position:absolute; inset:0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); border-radius: inherit; pointer-events:none; }
.media-badge {
  position: absolute; z-index: 3; left: 22px; bottom: 22px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.media-badge .ico { width: 38px; height: 38px; border-radius: 9px; background: var(--brand); display:flex; align-items:center; justify-content:center; color:#fff; }
.media-badge .ico svg { width: 20px; height: 20px; }
.media-badge b { font-family: var(--font-display); font-size: 16px; display:block; }
.media-badge span { font-size: 12.5px; color: var(--gray-500); }

.split__body .h3 { margin: 14px 0 18px; }
.feat-list { list-style: none; margin: 26px 0 30px; display: grid; gap: 14px; }
.feat-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 16.5px; color: var(--gray-600); }
.feat-list .check {
  flex: none; width: 24px; height: 24px; border-radius: 7px;
  background: rgba(16,185,129,0.12); color: var(--success);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.feat-list .check svg { width: 14px; height: 14px; }

/* ============================================================
   CÓMO FUNCIONA (dark)
   ============================================================ */
.how { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.how::before { content:''; position:absolute; top:-30%; right:-10%; width:600px; height:600px; background: radial-gradient(circle, rgba(29,87,169,.4), transparent 70%); filter: blur(20px); }
.how__head { text-align: center; max-width: 720px; margin: 0 auto clamp(56px,7vw,80px); position: relative; }
.how__head .h2 { color:#fff; margin-top: 16px; }
.how__head p { color: rgba(255,255,255,.62); margin-top: 16px; font-size: 18px; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; position: relative; }
.steps::before {
  content:''; position:absolute; top: 46px; left: 16%; right: 16%; height: 2px;
  background-image: linear-gradient(90deg, var(--accent) 50%, transparent 50%);
  background-size: 14px 2px; opacity: .35;
}
.step { position: relative; }
.step__num {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--grad-tech); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--accent);
  position: relative; z-index: 2; box-shadow: var(--shadow-brand);
}
.step__icon { margin: 26px 0 18px; color: var(--accent); }
.step__icon svg { width: 34px; height: 34px; }
.step h4 { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,.6); font-size: 15.5px; line-height: 1.6; }

/* ============================================================
   APP SHOWCASE
   ============================================================ */
.app { background: var(--grad-tech); color: #fff; position: relative; overflow: hidden; }
.app__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px,6vw,80px); align-items: center; }
.app__body .h2 { color:#fff; margin: 16px 0 0; }
.app__features { list-style:none; margin-top: 36px; display: grid; gap: 22px; max-width: 460px; }
.app__features li { display: flex; gap: 16px; align-items: flex-start; }
.app__features .ico { flex:none; width: 48px; height: 48px; border-radius: 13px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; color: var(--accent); }
.app__features .ico svg { width: 22px; height: 22px; }
.app__features b { font-family: var(--font-display); font-size: 17px; display:block; margin-bottom: 3px; }
.app__features span { color: rgba(255,255,255,.66); font-size: 14.5px; line-height: 1.5; }

.phone-stage { position: relative; display:flex; justify-content:center; perspective: 1600px; }
.phone {
  width: 290px; aspect-ratio: 290/600; border-radius: 42px;
  background: #0c1322; padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,.06) inset;
  transform: rotateY(-16deg) rotateX(5deg) rotateZ(1deg);
  transition: transform .5s ease;
  position: relative;
}
.phone:hover { transform: rotateY(-7deg) rotateX(2deg); }
.phone::before { content:''; position:absolute; top:14px; left:50%; transform:translateX(-50%); width: 110px; height: 26px; background:#0c1322; border-radius: 0 0 16px 16px; z-index:5; }
.phone__screen { width:100%; height:100%; border-radius: 32px; overflow:hidden; position:relative; background: linear-gradient(160deg,#eaf1fb,#d7e6fb); }
.phone-float { position:absolute; z-index:4; background:#fff; border-radius:14px; box-shadow: var(--shadow-md); padding: 12px 14px; display:flex; align-items:center; gap:10px; animation: floaty 4s ease-in-out infinite; }
.phone-float .ico { width:34px;height:34px;border-radius:9px;background:var(--accent);display:flex;align-items:center;justify-content:center;color:var(--dark); }
.phone-float .ico svg{width:18px;height:18px;}
.phone-float b{font-family:var(--font-display);font-size:13px;color:var(--dark);display:block;}
.phone-float span{font-size:11px;color:var(--gray-500);}
.phone-float--1{ top: 16%; left: -42px; animation-delay:0s; }
.phone-float--2{ bottom: 18%; right: -46px; animation-delay:1.2s; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* mini map inside phone */
.phone-map { position:absolute; inset:0; }
.phone-map svg { width:100%; height:100%; }
.phone-topbar { position:absolute; top:0; left:0; right:0; padding: 44px 18px 14px; z-index:3; background: linear-gradient(180deg,rgba(255,255,255,.95),rgba(255,255,255,0)); }
.phone-topbar b{ font-family:var(--font-display); font-size:15px; color:var(--dark); }
.phone-topbar span{ display:block; font-size:11.5px; color:var(--gray-500); }
.phone-card-bottom { position:absolute; left:14px; right:14px; bottom:16px; background:#fff; border-radius:18px; padding:16px; box-shadow:0 10px 30px rgba(10,15,30,.18); z-index:3; }
.phone-card-bottom .row{ display:flex; align-items:center; gap:11px; }
.phone-card-bottom .av{ width:40px;height:40px;border-radius:50%; background:var(--brand); display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-family:var(--font-display); }
.phone-card-bottom b{ font-family:var(--font-display); font-size:14px; color:var(--dark); }
.phone-card-bottom .sub{ font-size:11.5px; color:var(--gray-500); }
.phone-card-bottom .bar{ height:6px;border-radius:4px;background:var(--gray-100); margin-top:14px; overflow:hidden; }
.phone-card-bottom .bar i{ display:block; height:100%; width:64%; background:var(--grad-cta); border-radius:4px; }
.phone-card-bottom .eta{ display:flex;justify-content:space-between; margin-top:9px; font-size:11px; color:var(--gray-500); }

/* ============================================================
   MÉTRICAS
   ============================================================ */
.metrics { background: #fff; }
.metrics__head { text-align:center; max-width: 680px; margin: 0 auto clamp(48px,6vw,68px); }
.metrics__head .h2 { margin-top: 14px; }
.metric-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.metric-card {
  background: var(--off-white); border:1px solid var(--gray-100);
  border-radius: var(--radius); padding: 36px 28px; text-align:center;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.metric-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: var(--grad-cta); }
.metric-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.metric-card .num { font-family: var(--font-display); font-weight:800; font-size: clamp(34px,4vw,48px); color: var(--brand); letter-spacing:-.02em; line-height:1; }
.metric-card .num .suffix { color: var(--accent-600); }
.metric-card .lbl { margin-top: 12px; font-size: 15px; color: var(--gray-600); font-weight:500; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testi { background: var(--off-white); }
.testi__head { text-align:center; margin: 0 auto clamp(48px,6vw,72px); max-width:680px; }
.testi__head .h2{ margin-top:14px; }
.testi-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.testi-card {
  background:#fff; border-radius: var(--radius); padding: 34px 30px;
  border:1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  position: relative; overflow:hidden;
  transition: transform .2s, box-shadow .2s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-card .quote-mark { position:absolute; top: -10px; right: 18px; font-family: var(--font-display); font-size: 140px; font-weight:800; color: rgba(29,87,169,0.06); line-height:1; pointer-events:none; }
.stars { display:flex; gap:3px; color: var(--accent-600); margin-bottom: 18px; }
.stars svg { width:18px;height:18px; }
.testi-card p { font-size: 16.5px; color: var(--gray-900); line-height:1.6; position:relative; z-index:1; }
.testi-author { display:flex; align-items:center; gap:14px; margin-top: 26px; padding-top: 22px; border-top:1px solid var(--gray-100); }
.testi-author .av { width:52px;height:52px;border-radius:50%; overflow:hidden; border:2.5px solid var(--accent); flex:none; background:var(--gray-100); }
.testi-author .av img, .testi-author .av image-slot { width:100%;height:100%;object-fit:cover; }
.testi-author b { font-family:var(--font-display); font-size:16px; color:var(--dark); display:block; }
.testi-author span { font-size:13.5px; color:var(--gray-500); }

/* ============================================================
   COBERTURA
   ============================================================ */
.cover { background: var(--dark); color:#fff; position:relative; overflow:hidden; }
.cover::before { content:''; position:absolute; bottom:-20%; left:-10%; width:500px; height:500px; background:radial-gradient(circle,rgba(29,87,169,.35),transparent 70%); filter:blur(10px); }
.cover__grid { display:grid; grid-template-columns: 1fr 0.95fr; gap: clamp(40px,6vw,80px); align-items:center; position:relative; }
.cover__map { position:relative; }
.cover__map svg { width:100%; height:auto; overflow:visible; }
.region-bg { fill: rgba(255,255,255,0.025); stroke: rgba(255,255,255,0.08); stroke-width: 1; }
.region-grid { stroke: rgba(255,255,255,0.06); stroke-width: 1; fill: none; }
.region-route {
  fill: none; stroke: rgba(244,199,30,0.55); stroke-width: 2;
  stroke-dasharray: 4 9; stroke-linecap: round;
  stroke-dashoffset: 0; animation: routeflow 1.6s linear infinite;
}
@keyframes routeflow { to { stroke-dashoffset: -26; } }
.region-node .ndot { fill: #F4C71E; stroke: #0A0F1E; stroke-width: 2; }
.region-node .nlabel { font-family: var(--font-body); font-size: 12px; font-weight: 600; fill: #fff; }
.gt-dept { fill: rgba(255,255,255,0.05); stroke: rgba(255,255,255,0.18); stroke-width:1; transition: fill .3s; }
.gt-dept.active { fill: rgba(29,87,169,0.5); stroke: rgba(244,199,30,.4); }
.map-pin { opacity:0; transform-origin:center; animation: pinpop .5s cubic-bezier(.16,1.4,.3,1) forwards; }
.map-pin circle.halo { fill: rgba(244,199,30,.3); animation: pinghalo 2.2s ease-out infinite; }
@keyframes pinpop { to { opacity:1; } }
@keyframes pinghalo { 0%{r:5; opacity:.6} 100%{r:18; opacity:0} }
.map-pin .label { font-family:var(--font-body); font-size:11px; font-weight:600; fill:#fff; }

.cover__body .h2 { color:#fff; margin: 16px 0 22px; }
.cover__body p { color: rgba(255,255,255,.66); font-size:17px; max-width:440px; }
.cover-stats { display:flex; gap:40px; margin: 32px 0; }
.cover-stats .num { font-family:var(--font-display); font-weight:800; font-size: 40px; color: var(--accent); line-height:1; }
.cover-stats .lbl { font-size:14px; color:rgba(255,255,255,.6); margin-top:6px; max-width:130px; }
.city-list { display:grid; grid-template-columns: repeat(2,1fr); gap:13px; margin-top: 24px; max-width:430px; }
.city-list li { list-style:none; display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.82); font-size:15px; }
.city-list .check{ flex:none; width:20px;height:20px;border-radius:50%; background:rgba(16,185,129,.16); color:var(--success); display:flex;align-items:center;justify-content:center; }
.city-list .check svg{width:12px;height:12px;}
.soon-tag { display:inline-flex; align-items:center; gap:8px; margin-top:26px; padding:9px 16px; border-radius:100px; background:rgba(244,199,30,.1); border:1px solid rgba(244,199,30,.3); color:var(--accent); font-size:13.5px; font-weight:600; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta { background: var(--grad-cta); color: var(--dark); position:relative; clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%); margin-top: -2vw; }
.final-cta__inner { text-align:center; max-width: 760px; margin:0 auto; padding-block: clamp(40px,5vw,60px); }
.final-cta .h2 { font-size: clamp(40px,6vw,76px); }
.final-cta p { font-size: clamp(18px,2vw,22px); margin-top: 18px; color: rgba(10,15,30,.72); font-weight:500; }
.final-cta__btns { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; margin-top: 40px; }

/* dual-audience offer cards */
.offer-row { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; margin-top: 34px; }
.offer-card {
  flex: 1 1 300px; max-width: 360px; text-align:left;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(10,15,30,0.12);
  border-radius: 16px; padding: 20px 22px;
  display:flex; flex-direction:column; gap:8px;
  backdrop-filter: blur(4px);
}
.offer-card--accent { background: var(--dark); border-color: var(--dark); }
.offer-card__tag {
  font-family: var(--font-display); font-weight: 800;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand);
}
.offer-card--accent .offer-card__tag { color: var(--accent); }
.offer-card__txt { font-size: 16px; line-height: 1.45; font-weight: 600; color: rgba(10,15,30,.82); }
.offer-card--accent .offer-card__txt { color: rgba(255,255,255,.92); }
.final-cta .trust-note { margin-top: 28px; font-size:14px; color: rgba(10,15,30,.6); display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }
.final-cta .trust-note span{ display:flex; align-items:center; gap:7px; }
.final-cta .trust-note svg{ width:16px; height:16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.62); padding-top: clamp(64px,8vw,96px); }
.footer__grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer__brand img { height: 58px; width:auto; border-radius:10px; }
.footer__brand .wm { font-family:var(--font-display); font-weight:800; font-size:24px; color:#fff; letter-spacing:.04em; display:flex; align-items:center; gap:12px; }
.footer__brand p { margin-top: 18px; max-width: 300px; font-size:15px; line-height:1.6; }
.footer__brand .tagline { color: var(--accent); font-weight:600; font-style:italic; margin-top: 14px; font-size:15px; }
.footer-col h5 { color:#fff; font-family:var(--font-display); font-size:14px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; margin-bottom: 18px; }
.footer-col ul { list-style:none; display:grid; gap:12px; }
.footer-col a { font-size:15px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer__socials { display:flex; gap:12px; margin-top: 24px; }
.footer__socials a { width:40px;height:40px;border-radius:11px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); display:flex;align-items:center;justify-content:center; color:#fff; transition: .2s; }
.footer__socials a:hover { background:var(--accent); color:var(--dark); border-color:var(--accent); transform:translateY(-2px); }
.footer__socials svg{ width:18px;height:18px; }
.footer__bottom { margin-top: clamp(48px,6vw,72px); padding-block: 26px; border-top:1px solid rgba(255,255,255,.08); display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; font-size:13.5px; }
.footer__bottom .links{ display:flex; gap:24px; flex-wrap:wrap; }
.footer__bottom a:hover{ color:var(--accent); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 0;
  background: #25D366; color:#fff; border-radius: 100px;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  padding: 0; height: 60px; overflow:hidden;
  transition: padding .3s ease;
  animation: wabounce 3.5s ease-in-out 1.5s infinite;
}
.wa-float .icon { width:60px;height:60px;flex:none; display:flex;align-items:center;justify-content:center; }
.wa-float .icon svg{ width:30px;height:30px; }
.wa-float .txt { max-width:0; opacity:0; white-space:nowrap; font-weight:700; font-size:15px; transition: max-width .3s ease, opacity .25s ease, margin .3s; }
.wa-float:hover { padding-right: 22px; }
.wa-float:hover .txt { max-width: 200px; opacity:1; margin-left:-4px; margin-right: 4px; }
@keyframes wabounce { 0%,92%,100%{transform:translateY(0)} 95%{transform:translateY(-7px)} }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity:0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity:1; transform: none; }
.reveal[data-delay="1"]{ transition-delay:.09s; }
.reveal[data-delay="2"]{ transition-delay:.18s; }
.reveal[data-delay="3"]{ transition-delay:.27s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  *{ animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display:none; }
  .nav__actions .nav__signin, .nav__actions .btn { display:none; }
  .nav__burger { display:flex; }
  .app__grid { grid-template-columns: 1fr; gap: 56px; }
  .phone-stage { order:-1; }
  .cover__grid { grid-template-columns: 1fr; gap:48px; }
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order:0; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display:none; }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .hero { min-height: auto; padding-top: 110px; }
  .hero__stats { gap: 24px 36px; }
  .hero__ctas .btn { flex: 1 1 auto; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .final-cta__btns .btn { width:100%; }
  .cover-stats { gap: 28px; }
  .city-list { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction:column; align-items:flex-start; }
  .scroll-cue { display:none; }
}


/* ============================================================
   ACCESOS (dropdown del nav + sección + instalar en el teléfono)
   ============================================================ */
.acceso { position: relative; }
.acceso .btn svg:last-child { width: 15px; height: 15px; transition: transform .2s; }
.acceso.open .btn svg:last-child { transform: rotate(180deg); }
.acceso__menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 280px;
  background: #fff; border-radius: 14px; box-shadow: 0 18px 50px -12px rgba(10,15,30,.35);
  padding: 8px; display: none; z-index: 60;
}
.acceso.open .acceso__menu { display: block; animation: accIn .18s ease; }
@keyframes accIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.acceso__opt {
  display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 10px;
  color: var(--dark); transition: background .15s;
}
.acceso__opt:hover { background: var(--off-white); }
.acceso__opt .aico {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(29,87,169,.08); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.acceso__opt .aico svg { width: 19px; height: 19px; }
.acceso__opt b { display: block; font-family: var(--font-display); font-size: 14.5px; }
.acceso__opt small { font-size: 12.5px; color: var(--gray-500); }

.acceso-sec { background: var(--grad-tech, linear-gradient(150deg, #0A0F1E, #143C75)); padding-block: clamp(64px, 9vw, 110px); color: #fff; }
.acceso-head { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.acceso-head p { color: rgba(255,255,255,.66); font-size: 17px; margin-top: 14px; }
.acceso-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .acceso-grid { grid-template-columns: 1fr; } }
.acceso-card {
  display: flex; flex-direction: column; gap: 10px; padding: 26px 24px; border-radius: 18px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  transition: transform .2s, background .2s, border-color .2s;
}
.acceso-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.acceso-card .ico {
  width: 46px; height: 46px; border-radius: 12px; background: rgba(244,199,30,.14);
  color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
}
.acceso-card .ico svg { width: 22px; height: 22px; }
.acceso-card b { font-family: var(--font-display); font-size: 19px; }
.acceso-card small { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.62); }
.acceso-card .go { display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; font-weight: 700; font-size: 14.5px; color: var(--accent); }
.acceso-card .go svg { width: 15px; height: 15px; }
.acceso-card--accent { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.acceso-card--accent:hover { background: #f6d04a; border-color: #f6d04a; }
.acceso-card--accent .ico { background: rgba(10,15,30,.1); color: var(--dark); }
.acceso-card--accent small { color: rgba(10,15,30,.66); }
.acceso-card--accent .go { color: var(--dark); }

.pwa-box { margin-top: 26px; border-radius: 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); padding: 24px; }
.pwa-box__head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pwa-box__head .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(244,199,30,.14); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.pwa-box__head .ico svg { width: 22px; height: 22px; }
.pwa-box__head > div { flex: 1; min-width: 220px; }
.pwa-box__head b { font-family: var(--font-display); font-size: 18px; display: block; }
.pwa-box__head small { font-size: 14px; color: rgba(255,255,255,.6); }
.pwa-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
@media (max-width: 700px) { .pwa-steps { grid-template-columns: 1fr; } }
.pwa-step { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 16px; }
.pwa-step .tag { display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.pwa-step p { font-size: 14.5px; color: rgba(255,255,255,.78); line-height: 1.55; }
.pwa-step p b { color: #fff; }

.btn[hidden] { display: none !important; }
