/* ============================================================
   ORIGENNOVUS — CSS v1.0 FINAL
   Single source of truth. Zero duplicates. Mobile-first.
   Fuentes: System fonts (SF Pro / Segoe UI / system-ui)
   ============================================================ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Color */
  --bg:    #07090E;
  --bg1:   #0A0E18;
  --bg2:   #0D1321;
  --surf:  #111926;
  --surf2: #151F2E;
  --bdr:   rgba(255,255,255,.07);
  --bdr2:  rgba(255,255,255,.12);
  --ac:    #00E5C0;
  --acb:   #0055FF;
  --glow:  rgba(0,229,192,.12);
  --txt:   #ECF2F9;
  --txt2:  #6A8BAD;
  --txt3:  #6E90AE;

  /* Tipografía — system fonts, zero external requests */
  --fd: -apple-system, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  --fb: -apple-system, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --max:  1160px;
  --nh:   64px;
  --r:    12px;
  --rs:    7px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Espaciado responsivo */
  --px:  clamp(16px, 5vw, 40px);
  --sec: clamp(56px, 8vw, 112px);

  /* Ecosistema latido */
  --beat: 2.8s;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-y: auto }
body {
  background: var(--bg); color: var(--txt);
  font-family: var(--fb); font-weight: 300;
  line-height: 1.72; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Fix Instagram/Facebook in-app browser */
  min-height: 100vh;
  min-height: -webkit-fill-available;
  width: 100%;
  max-width: 100vw;
}
a  { color: inherit; text-decoration: none }
ul { list-style: none }
img { max-width: 100%; display: block }
button { font-family: var(--fb); cursor: pointer; border: none; background: none }
em { font-style: normal; color: var(--ac) }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--px) }
.sec      { padding: var(--sec) 0 }
.sec--alt { background: var(--bg1) }
.sr-only  {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 10000;
  background: var(--ac); color: var(--bg);
  font-family: var(--fd); font-weight: 700; font-size: .8rem;
  padding: 8px 16px; border-radius: var(--r);
  opacity: 0; transform: translateY(-120%);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.skip-link:focus {
  opacity: 1; transform: translateY(0); pointer-events: auto
}



/* ── TIPOGRAFÍA ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--fd); font-weight: 700;
  line-height: 1.1; color: var(--txt); letter-spacing: -.02em;
}
h1 { font-size: clamp(2.6rem, 6vw, 3.8rem); font-weight: 800 }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.6rem) }
h3 { font-size: clamp(.95rem, 1.6vw, 1.05rem); letter-spacing: -.01em }
h4 { font-size: .94rem; letter-spacing: 0 }
p  { color: var(--txt2); line-height: 1.78; font-size: clamp(.875rem, 1.4vw, .9375rem) }

.label {
  display: block; font-family: var(--fd); font-size: .6rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ac); margin-bottom: 10px;
}
.sublabel {
  display: block; font-family: var(--fd); font-size: .6rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ac); margin-bottom: 16px;
}
.sec__head { max-width: 520px; margin-bottom: clamp(28px, 4.5vw, 52px) }
.sec__head h2 { margin-bottom: 10px }
.sec__sub { font-size: clamp(.875rem, 1.3vw, .9375rem); color: var(--txt2); margin-bottom: 24px; max-width: 560px }

/* ── BOTONES ──────────────────────────────────────────────  */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px 24px; border-radius: var(--r);
  font-family: var(--fd); font-weight: 700; font-size: .8125rem; letter-spacing: .02em;
  transition: all .2s var(--ease); border: 1.5px solid transparent;
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn--fill  { background: var(--ac); color: var(--bg); border-color: var(--ac) }
.btn--fill:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--glow) }
.btn--ghost { background: transparent; color: var(--txt); border-color: var(--bdr2) }
.btn--ghost:hover { border-color: var(--ac); color: var(--ac); transform: translateY(-2px) }
.btn--full  { width: 100% }
.btn--sm    { padding: 8px 18px; font-size: .75rem }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed; position: -webkit-sticky; position: sticky;
  top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nh); border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, box-shadow .35s;
}
@supports (position: fixed) {
  .nav { position: fixed }
}
.nav.scrolled {
  background: rgba(7,9,14,.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: var(--bdr2);
  box-shadow: 0 1px 24px rgba(0,0,0,.25);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  height: 100%; display: flex; align-items: center;
}
.nav__logo { display: flex; align-items: center; margin-right: auto; position: relative }
.nav__logo img { height: 36px; width: auto; max-width: 140px; display: block; object-fit: contain }


/* Nav links — desktop only */
.nav__links { display: flex; align-items: center; gap: 2px; margin-right: 20px }
.nav__links li { list-style: none }
.nav__links a {
  padding: 7px 14px; font-family: var(--fd); font-size: .75rem;
  font-weight: 600; color: var(--txt2); border-radius: var(--rs);
  transition: color .2s; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: 3px; left: 14px; right: 14px;
  height: 1.5px; background: var(--ac); border-radius: 2px;
  transform: scaleX(0); transition: transform .22s var(--ease); transform-origin: left;
}
.nav__links a:hover { color: var(--txt) }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1) }
.nav__links a.active { color: var(--ac) }

.nav__cta {
  padding: 8px 18px; border-radius: var(--r);
  background: var(--ac); color: var(--bg);
  font-family: var(--fd); font-weight: 700; font-size: .75rem;
  transition: opacity .2s, transform .2s, box-shadow .2s; white-space: nowrap;
}
.nav__cta:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 4px 16px var(--glow) }

/* Burger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--bdr2); border-radius: var(--rs);
  padding: 7px 8px; margin-left: 14px; cursor: pointer; transition: border-color .2s;
}
.nav__burger:hover { border-color: var(--ac) }
.nav__burger span {
  width: 18px; height: 1.5px; background: var(--txt);
  border-radius: 2px; transition: all .22s; display: block;
}
.nav__burger.open { border-color: var(--ac) }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px) }
.nav__burger.open span:nth-child(2) { transform: rotate(-45deg) translate(4.5px, -4.5px) }

/* Drawer — hidden by default, shown when .open */
.nav__drawer {
  display: none;
  flex-direction: column;
  padding: 8px var(--px) 20px;
  background: rgba(7,9,14,.98); backdrop-filter: blur(24px);
  border-top: 1px solid var(--bdr);
}
.nav__drawer.open { display: flex }
.nav__drawer a {
  padding: 13px 0; font-family: var(--fd); font-size: .875rem;
  font-weight: 600; color: var(--txt2);
  border-bottom: 1px solid var(--bdr); transition: color .2s;
}
.nav__drawer a:last-child { border-bottom: none; color: var(--ac); margin-top: 6px }
.nav__drawer a:hover { color: var(--ac) }

/* ── HERO ──────────────────────────────────────────────────  */
.hero {
  min-height: 100vh; min-height: 100svh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: var(--nh);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none }

.hbg__glow {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: breathe 9s ease-in-out infinite;
}
.hbg__glow--1 { width: clamp(240px,38vw,500px); height: clamp(240px,38vw,500px); background: var(--ac);  top: -5%;  left: -5%; opacity: .09 }
.hbg__glow--2 { width: clamp(180px,28vw,380px); height: clamp(180px,28vw,380px); background: var(--acb); bottom: -5%; right: -4%; opacity: .10; animation-delay: -4s }
@keyframes breathe { 0%,100% { transform: scale(1) } 50% { transform: scale(1.07) } }

.hbg__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 90%);
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: clamp(40px,6vw,80px) var(--px);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(32px,5vw,64px);
}

/* Hero left */
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 13px; background: var(--surf); border: 1px solid var(--bdr2);
  border-radius: 50px; font-size: .6875rem; font-weight: 500; color: var(--txt2);
  margin-bottom: 20px; width: fit-content;
}
.eyebrow__dot {
  width: 6px; height: 6px; background: var(--ac);
  border-radius: 50%; animation: blink 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100% { opacity: 1 } 50% { opacity: .25 } }

.hero__content h1 { margin-bottom: 16px }
.h1__muted { color: var(--txt2); font-weight: 600 }
.hero__p   { margin-bottom: 24px; max-width: 460px }
.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px }

/* Métricas */
.hero__nums {
  display: flex; align-items: stretch;
  background: var(--surf);
  border: 1px solid rgba(0,229,192,.18);
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.3), 0 8px 32px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
}
.hn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 20px; gap: 4px; position: relative; flex: 1;
  transition: background .2s;
}
.hn:hover { background: rgba(0,229,192,.04) }
.hn:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 18%; bottom: 18%;
  width: 1px; background: rgba(0,229,192,.15);
}
.hn__val {
  font-family: var(--fd); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--ac); line-height: 1;
  display: flex; align-items: baseline; gap: 0;
  text-shadow: 0 0 28px rgba(0,229,192,.5), 0 0 56px rgba(0,229,192,.2);
}
.hn__val sup { font-size: .5em; font-weight: 800; color: var(--ac); opacity: .8 }
.hn__lbl {
  font-size: clamp(.48rem, 1vw, .56rem); font-weight: 700;
  color: var(--txt3); text-transform: uppercase; letter-spacing: .1em;
}

/* Hero visual panel */
.hero__visual { position: relative }

.hv__panel {
  background: var(--surf2); border: 1px solid var(--bdr2); border-radius: var(--r);
  padding: 18px 20px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 24px 48px rgba(0,0,0,.35);
  position: relative; overflow: visible;
  transform: translateZ(0); isolation: isolate;
}
.hv__panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ac), transparent);
  opacity: .5; border-radius: var(--r) var(--r) 0 0; z-index: 1;
}

.hv__head { display: flex; align-items: center; justify-content: space-between }
.hv__live {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--fd); font-size: .65rem; font-weight: 700;
  color: var(--txt2); letter-spacing: .05em; text-transform: uppercase;
}
.hv__live-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: blink 2s ease-in-out infinite; flex-shrink: 0 }
.hv__count {
  font-family: var(--fd); font-size: .65rem; font-weight: 700; color: var(--ac);
  background: rgba(0,229,192,.1); border: 1px solid rgba(0,229,192,.2); padding: 3px 9px; border-radius: 50px;
}
.hv__section-label {
  font-family: var(--fd); font-size: .55rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--txt3);
}

/* Platforms grid */
.hv__platforms { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; overflow: visible }
.hvp {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px; border-radius: var(--rs);
  background: var(--bg2); border: 1px solid var(--bdr);
  transition: border-color .2s, transform .2s, background .2s;
  cursor: default; position: relative;
}
.hvp::after {
  content: ''; position: absolute; top: 4px; right: 4px;
  width: 5px; height: 5px; border-radius: 50%; background: #22c55e; opacity: .8;
}
.hvp:hover { transform: translateY(-2px); border-color: var(--bdr2) }
.hvp-ico    { display: flex; align-items: center; justify-content: center }
.hvp-ico svg { width: 18px; height: 18px }
.hvp > span:last-child { font-size: .55rem; font-family: var(--fd); font-weight: 600; color: var(--txt3); text-align: center; line-height: 1 }

/* Platform colors */
.hvp--ig  { color: #E1306C } .hvp--ig:hover  { border-color: rgba(225,48,108,.4);  background: rgba(225,48,108,.06) }
.hvp--fb  { color: #1877F2 } .hvp--fb:hover  { border-color: rgba(24,119,242,.4);  background: rgba(24,119,242,.06) }
.hvp--wa  { color: #25D366 } .hvp--wa:hover  { border-color: rgba(37,211,102,.4);  background: rgba(37,211,102,.06) }
.hvp--li  { color: #0A66C2 } .hvp--li:hover  { border-color: rgba(10,102,194,.4);  background: rgba(10,102,194,.06) }
.hvp--yt  { color: #FF0000 } .hvp--yt:hover  { border-color: rgba(255,0,0,.35);    background: rgba(255,0,0,.06) }
.hvp--tt  { color: #fff    } .hvp--tt:hover  { border-color: rgba(255,255,255,.2);  background: rgba(255,255,255,.04) }
.hvp--web { color: var(--ac) } .hvp--web:hover { border-color: rgba(0,229,192,.4); background: rgba(0,229,192,.06) }
.hvp--email { color: #A78BFA } .hvp--email:hover { border-color: rgba(167,139,250,.4); background: rgba(167,139,250,.06) }

/* Services dashboard */
.hv__dash { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px }
.hvd {
  display: flex; align-items: center; gap: 7px; padding: 7px 10px;
  border-radius: var(--rs); background: var(--bg2); border: 1px solid var(--bdr);
  transition: border-color .2s;
}
.hvd:hover { border-color: var(--bdr2) }
.hvd-ico { display: flex; align-items: center; justify-content: center; color: var(--ac); flex-shrink: 0 }
.hvd-ico svg { width: 12px; height: 12px; stroke: currentColor }
.hvd > span:not(.hvd__dot):not(.hvd-ico) {
  font-family: var(--fd); font-size: .58rem; font-weight: 700;
  color: var(--txt2); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hvd__dot {
  width: 5px; height: 5px; border-radius: 50%; background: #22c55e;
  flex-shrink: 0; animation: blink 2.5s ease-in-out infinite;
}

/* Panel footer */
.hv__foot { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--bdr) }
.hvf__ok  { font-size: .65rem; font-weight: 600; color: var(--ac) }
.hvf__tag { font-family: var(--fd); font-size: .6rem; font-weight: 800; color: var(--txt3); letter-spacing: .06em; text-transform: uppercase }

/* ── TICKER ──────────────────────────────────────────────── */
.ticker { background: var(--surf); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); padding: 12px 0; overflow: hidden }
.ticker__t {
  display: flex; gap: 24px; align-items: center; white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  font-family: var(--fd); font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--txt3);
}
.ticker__t i { font-style: normal; color: var(--ac); opacity: .4; font-size: .5rem }
.ticker:hover .ticker__t { animation-play-state: paused }
@keyframes ticker-scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── QUÉ RESOLVEMOS ─────────────────────────────────────── */
.prob__grid { display: grid; grid-template-columns: 1fr; gap: 14px }
.prob {
  background: var(--surf); border: 1px solid var(--bdr); border-radius: var(--r);
  overflow: hidden; transition: border-color .22s, transform .3s var(--ease);
}
.prob:hover { border-color: rgba(0,229,192,.28); transform: translateY(-3px) }
.prob__problem {
  padding: clamp(18px,2.5vw,24px); display: flex; flex-direction: column; gap: 6px;
}
.prob__icon { font-size: 1.4rem; line-height: 1 }
.prob__problem h4 { font-size: .9rem; font-weight: 700 }
.prob__problem p  { font-size: .78rem; color: var(--txt2); line-height: 1.6 }
.prob__solution {
  display: flex; gap: 12px; align-items: flex-start;
  padding: clamp(14px,2vw,20px) clamp(18px,2.5vw,24px);
  background: rgba(0,229,192,.04); border-top: 1px solid rgba(0,229,192,.12);
}
.prob__arrow { color: var(--ac); font-weight: 800; font-size: 1rem; flex-shrink: 0; margin-top: 2px }
.prob__solution strong { font-family: var(--fd); font-size: .82rem; font-weight: 700; color: var(--ac); display: block; margin-bottom: 3px }
.prob__solution p { font-size: .75rem; color: var(--txt2); line-height: 1.55; margin: 0 }

/* ── SERVICIOS ───────────────────────────────────────────── */
.srv__table { border: 1px solid var(--bdr); border-radius: var(--r); overflow: hidden; margin-bottom: 48px }
.srv__row {
  display: flex; flex-direction: column;
  border-bottom: 1px solid var(--bdr); background: var(--surf); transition: background .18s;
}
.srv__row:last-child { border-bottom: none }
.srv__row:hover { background: var(--surf2) }
.srv__row--ac { background: linear-gradient(135deg, var(--surf), rgba(0,229,192,.035)) }
.srv__row--ac:hover { background: linear-gradient(135deg, var(--surf2), rgba(0,229,192,.055)) }

.sr__n { font-family: var(--fd); font-size: 1.4rem; font-weight: 800; color: rgba(255,255,255,.06); line-height: 1; padding: 16px var(--px) 0 }
.sr__body { padding: 8px var(--px) 16px }
.sr__top  { display: flex; align-items: center; gap: 9px; margin-bottom: 7px }
.sr__top span:first-child { font-size: 1.2rem; flex-shrink: 0 }
.sr__top h3 { font-size: .9375rem }
.sr__badge {
  font-family: var(--fd); font-size: .52rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--ac); background: rgba(0,229,192,.1); border: 1px solid rgba(0,229,192,.22);
  padding: 2px 7px; border-radius: 50px; white-space: nowrap;
}
.sr__body p { font-size: .8125rem; margin-bottom: 9px; line-height: 1.65 }
.sr__tags   { display: flex; flex-wrap: wrap; gap: 4px }
.sr__tags span {
  font-size: .6rem; font-family: var(--fd); font-weight: 600;
  color: var(--txt3); background: var(--bg2); border: 1px solid var(--bdr); padding: 2px 7px; border-radius: 4px;
}
.sr__info { display: flex; align-items: center; justify-content: space-between; padding: 10px var(--px) 16px; border-top: 1px solid var(--bdr) }
.sr__info span   { font-size: .6875rem; color: var(--txt3) }
.sr__info strong { font-family: var(--fd); font-weight: 800; color: var(--ac); font-size: .9375rem }

/* Service cards */
.srv__cards { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 40px }
@media (min-width: 640px) { .srv__cards { grid-template-columns: repeat(3,1fr) } }
.srv__card {
  background: var(--surf); border: 1px solid var(--bdr); border-radius: var(--r);
  padding: clamp(16px,2vw,22px); display: flex; flex-direction: column; gap: 9px;
  transition: border-color .22s, transform .25s var(--ease), box-shadow .25s;
}
.srv__card:hover { border-color: var(--bdr2); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.2) }
.srv__card--ac { border-color: rgba(0,229,192,.22); background: linear-gradient(160deg,var(--surf),rgba(0,229,192,.04)) }
.srv__card--ac:hover { border-color: rgba(0,229,192,.4) }
.srv__card p { font-size: .8rem; line-height: 1.6; flex: 1 }
.sr__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 9px; border-top: 1px solid var(--bdr); margin-top: auto }
.sr__bottom span { font-size: .68rem; color: var(--txt3) }

/* Packs */
.packs { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px }
.pack {
  background: var(--surf); border: 1px solid var(--bdr); border-radius: var(--r);
  padding: clamp(18px,2.4vw,26px); display: flex; flex-direction: column; gap: 11px;
  transition: border-color .22s;
}
.pack:hover { border-color: var(--bdr2) }
.pack--ac { border-color: rgba(0,229,192,.22); background: linear-gradient(160deg,var(--surf),rgba(0,229,192,.035)) }
.pack--ac:hover { border-color: rgba(0,229,192,.4) }
.pack__top { display: flex; align-items: baseline; justify-content: space-between }
.pack__n   { font-family: var(--fd); font-size: 1.8rem; font-weight: 800; color: rgba(255,255,255,.06); line-height: 1 }
.pack__tag { font-family: var(--fd); font-size: .56rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--txt3) }
.pack__tag--ac { color: var(--ac) }
.pack h4 { font-size: .9375rem }
.pack  p { font-size: .8125rem; line-height: 1.65; flex: 1 }
.pack ul { display: flex; flex-direction: column; gap: 5px }
.pack li { font-size: .8125rem; color: var(--txt2); padding-left: 12px; position: relative }
.pack li::before { content: '·'; position: absolute; left: 0; color: var(--ac); font-size: 1.1rem; line-height: .85 }
.pack__flow { display: flex; align-items: center; gap: 4px; padding: 8px 12px; background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--rs); overflow-x: auto; scrollbar-width: none }
.pack__flow::-webkit-scrollbar { display: none }
.pack__flow span { font-size: .6875rem; font-family: var(--fd); font-weight: 600; color: var(--txt); white-space: nowrap }
.pack__price { font-family: var(--fd); font-weight: 800; font-size: 1.1rem; color: var(--ac) }
.pack__who { font-size: .78rem; color: var(--txt2); line-height: 1.6; font-style: italic; border-left: 2px solid rgba(0,229,192,.3); padding-left: 12px; margin: 4px 0 8px }
.pack__result {
  padding: 8px 12px; background: rgba(0,229,192,.06); border: 1px solid rgba(0,229,192,.15);
  border-radius: var(--rs); margin-top: 8px;
}
.pack__result span { font-family: var(--fd); font-size: .72rem; font-weight: 700; color: var(--ac) }

/* Funnel */
.funnel { background: var(--surf); border: 1px solid var(--bdr); border-radius: var(--r); padding: clamp(20px,3vw,32px) }
.funnel__head { margin-bottom: 20px }
.funnel__head h3 { font-size: .9375rem; margin-top: 6px; font-weight: 600; color: var(--txt2) }
.funnel__steps { display: flex; flex-direction: column }
.fs {
  display: grid; grid-template-columns: 36px 1fr; gap: 0 12px;
  padding: 12px 0; border-bottom: 1px solid var(--bdr);
}
.fs:last-child { border-bottom: none; padding-bottom: 0 }
.fs__i  { font-size: 1.1rem; grid-row: 1/3; align-self: center; text-align: center }
.fs__n  { font-family: var(--fd); font-size: .8125rem; font-weight: 700; color: var(--txt); line-height: 1.2 }
.fs__s  { font-size: .6875rem; color: var(--txt3); margin-top: 2px }
.fs--ac { background: rgba(0,229,192,.05); border-radius: var(--rs); padding: 12px 10px; margin: 0 -10px; border: none }
.fs--ac .fs__n { color: var(--ac) }
.fs__arr { display: none }

/* ── PERFILES ────────────────────────────────────────────── */
.perfiles { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: clamp(40px,5vw,64px) }
.perfil {
  background: var(--surf); border: 1px solid var(--bdr); border-radius: var(--r);
  padding: clamp(18px,2.4vw,26px); display: flex; flex-direction: column; gap: 10px;
  transition: border-color .22s, transform .28s var(--ease), box-shadow .28s;
  position: relative; overflow: hidden;
}
.perfil::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--ac), transparent); opacity: 0; transition: opacity .3s;
}
.perfil:hover { border-color: rgba(0,229,192,.3); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.2) }
.perfil:hover::before { opacity: 1 }
.perfil__ico { font-size: 1.6rem }
.perfil h4   { font-size: .9375rem; line-height: 1.25 }
.perfil p    { font-size: .8125rem; line-height: 1.65; flex: 1 }
.perfil__entrega { display: flex; flex-wrap: wrap; gap: 4px; padding-top: 12px; border-top: 1px solid var(--bdr) }
.perfil__entrega span {
  font-size: .6rem; font-family: var(--fd); font-weight: 700;
  color: var(--ac); background: rgba(0,229,192,.08); border: 1px solid rgba(0,229,192,.2);
  padding: 2px 8px; border-radius: 50px;
}

/* ── ECOSISTEMA GRID ─────────────────────────────────────── */
.ecosistema {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(20px,3.5vw,40px);
  background: var(--surf2); border: 1px solid var(--bdr2); border-radius: var(--r);
  padding: clamp(18px,3.5vw,36px); margin-bottom: clamp(20px,3vw,36px);
}
.eco__left h3 { font-size: clamp(.95rem,1.8vw,1.2rem); margin: 10px 0; line-height: 1.35 }
.eco__left p  { font-size: .875rem }
.eco__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px }
.eco__item {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 10px 12px; background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--rs);
  transition: border-color .2s;
}
.eco__item:hover { border-color: rgba(0,229,192,.25) }
.eco__ico { font-size: 1rem; flex-shrink: 0; margin-top: 1px }
.eco__item strong { font-family: var(--fd); font-size: .75rem; font-weight: 700; display: block; margin-bottom: 2px; color: var(--txt) }
.eco__item p      { font-size: .65rem; line-height: 1.5; margin: 0 }

.diagcta {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(20px,4vw,40px); flex-wrap: wrap;
  background: linear-gradient(135deg,var(--surf),rgba(0,229,192,.055));
  border: 1px solid rgba(0,229,192,.22); border-radius: var(--r);
  padding: clamp(20px,3vw,32px) clamp(20px,3.5vw,36px);
}
.diagcta__left h3 { font-size: clamp(.9375rem,1.7vw,1.1rem); margin-bottom: 6px }
.diagcta__left p  { font-size: .875rem; margin: 0; max-width: 480px }
.diagcta .btn { flex-shrink: 0 }

/* ── ECOSISTEMA DIAGRAMA ─────────────────────────────────── */
.eco-sec { background: var(--bg1) }
.emap { position: relative; width: 100%; max-width: 800px; margin: 0 auto clamp(32px,5vw,56px); overflow: hidden }
.emap__inner { position: relative; width: 800px; height: 560px; transform-origin: top left }
.emap__lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible }

/* Lines */
.emap__line {
  stroke: rgba(0,229,192,.35); stroke-width: 1.5; stroke-dasharray: 6 6;
  animation: line-breathe var(--beat) ease-in-out infinite;
  filter: drop-shadow(0 0 3px rgba(0,229,192,.15));
}
@keyframes line-breathe { 0%,100% { stroke-opacity: .35 } 48% { stroke-opacity: .7 } }

.emap__line-pulse {
  stroke: rgba(255,214,0,0); stroke-width: 2.5; stroke-dasharray: 18 400; stroke-dashoffset: 0;
  stroke-linecap: round; animation: pulse-travel var(--beat) ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(255,214,0,.85));
}
@keyframes pulse-travel {
  0%,45% { stroke-dashoffset: 0;    stroke: rgba(255,214,0,0)    }
  48%    { stroke-dashoffset: 0;    stroke: rgba(255,255,180,.9)  }
  70%    { stroke-dashoffset: -280; stroke: rgba(255,180,0,.35)   }
  80%    { stroke-dashoffset: -420; stroke: rgba(255,140,0,0)     }
  100%   { stroke-dashoffset: -420; stroke: rgba(255,214,0,0)     }
}

.emap__pulse { fill: none; stroke: rgba(0,229,192,.2); stroke-width: 1.5; animation: pulse-ring var(--beat) ease-in-out infinite }
@keyframes pulse-ring { 0%,100% { transform: scale(1); stroke-opacity: .2 } 50% { transform: scale(1.19); stroke-opacity: .08 } }

/* Nodes */
.enode {
  position: absolute; transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: default; z-index: 2;
}
.enode--center { left: 50%;   top: 50%;   z-index: 3 }
.enode--top    { left: 50%;   top: 18% }
.enode--tr     { left: 76%;   top: 28%   }
.enode--r      { left: 80%;   top: 54% }
.enode--br     { left: 70%;   top: 78% }
.enode--bl     { left: 30%;   top: 78% }
.enode--l      { left: 20%;   top: 54% }
.enode--tl     { left: 24%;   top: 28%   }

.enode__ico {
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; background: var(--surf); border: 1px solid var(--bdr2);
  border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.enode--center .enode__ico {
  width: 72px; height: 72px; font-size: 1.6rem;
  background: linear-gradient(135deg,var(--surf2),var(--surf));
  border: 1.5px solid rgba(255,214,0,.45);
  box-shadow: 0 0 0 8px rgba(255,214,0,.05), 0 12px 32px rgba(0,0,0,.4);
  position: relative; overflow: visible;
}
.enode--center .enode__name { color: var(--ac) }

.enode:not(.enode--center):hover .enode__ico {
  border-color: var(--ac); transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 32px rgba(0,229,192,.15), 0 4px 16px rgba(0,0,0,.3);
}
.enode__name { font-family: var(--fd); font-size: .68rem; font-weight: 700; color: var(--txt2); text-align: center; white-space: nowrap; transition: color .25s }
.enode:hover .enode__name { color: var(--ac) }
.enode__sub  { font-family: var(--fd); font-size: .56rem; font-weight: 600; color: var(--txt3); text-transform: uppercase; letter-spacing: .08em }

/* Nodes receive pulse */
.enode:not(.enode--center) .enode__ico { animation: node-beat var(--beat) ease-in-out infinite; animation-delay: .26s }
@keyframes node-beat {
  0%,60%,80%,100% { box-shadow: 0 8px 24px rgba(0,0,0,.3); border-color: var(--bdr2) }
  68% { box-shadow: 0 0 10px rgba(255,214,0,.45), 0 0 22px rgba(255,180,0,.2); border-color: rgba(255,214,0,.55) }
}

/* Bolt */
.bolt-svg { width: 32px; height: 32px; animation: bolt-beat var(--beat) ease-in-out infinite }
@keyframes bolt-beat {
  0%,100% { filter: drop-shadow(0 0 5px rgba(255,214,0,.55)) drop-shadow(0 0 12px rgba(255,180,0,.25)); transform: scale(1) }
  50%     { filter: drop-shadow(0 0 14px rgba(255,214,0,.85)) drop-shadow(0 0 28px rgba(255,180,0,.4)); transform: scale(1.12) }
}

/* Tooltip */
.enode__detail {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  width: 180px; background: var(--surf2); border: 1px solid var(--bdr2); border-radius: var(--rs);
  padding: 10px 12px; box-shadow: 0 12px 32px rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s var(--ease);
  transform: translateX(-50%) translateY(4px); z-index: 10;
}
.enode--tl .enode__detail, .enode--l .enode__detail  { left: auto; right: -10px; transform: none }
.enode--tr .enode__detail, .enode--r .enode__detail  { left: -10px; transform: none }
.enode--bl .enode__detail, .enode--br .enode__detail { top: auto; bottom: calc(100% + 10px) }
.enode--bl .enode__detail { left: auto; right: -10px; transform: none }
.enode:hover .enode__detail { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0) }
.enode--tl:hover .enode__detail, .enode--l:hover .enode__detail,
.enode--tr:hover .enode__detail, .enode--r:hover .enode__detail,
.enode--bl:hover .enode__detail, .enode--br:hover .enode__detail { transform: translateY(0) }
.enode__detail strong { font-family: var(--fd); font-size: .68rem; font-weight: 700; color: var(--ac); display: block; margin-bottom: 5px }
.enode__detail p      { font-size: .68rem; line-height: 1.55; color: var(--txt2); margin: 0 }

/* List mobile */
.emap__list { display: none }
.eml { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; background: var(--surf); border: 1px solid var(--bdr); border-radius: var(--r); transition: border-color .2s }
.eml:hover { border-color: rgba(0,229,192,.28) }
.eml > span { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px }
.eml strong { font-family: var(--fd); font-size: .82rem; font-weight: 700; display: block; margin-bottom: 3px; color: var(--txt) }
.eml p      { font-size: .78rem; line-height: 1.55; margin: 0 }

/* ── PROCESO ─────────────────────────────────────────────── */
.proc { display: grid; grid-template-columns: 1fr 1fr; gap: 10px }
.proc__item {
  background: var(--surf); border: 1px solid var(--bdr); border-radius: var(--r);
  padding: clamp(12px,1.8vw,16px); display: flex; flex-direction: column; gap: 5px;
  transition: border-color .22s, transform .28s var(--ease);
}
.proc__item:hover { border-color: rgba(0,229,192,.28); transform: translateY(-4px) }
.proc__head { display: flex; align-items: center; gap: 8px }
.proc__i  { font-size: 1rem; flex-shrink: 0 }
.proc__item h3 { font-size: .85rem }
.proc__item p  { font-size: .75rem; line-height: 1.55; flex: 1 }
.proc__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px }
.proc__tags span { font-size: .56rem; font-family: var(--fd); font-weight: 600; color: var(--txt3); background: var(--bg2); border: 1px solid var(--bdr); padding: 2px 7px; border-radius: 4px }

/* ── STACK ───────────────────────────────────────────────── */
.stack { display: flex; flex-direction: column; border: 1px solid var(--bdr); border-radius: var(--r); overflow: hidden }
.stk {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px var(--px); border-bottom: 1px solid var(--bdr);
  position: relative; transition: background .18s;
}
.stk:last-child { border-bottom: none }
.stk:hover { background: rgba(255,255,255,.01) }
.stk::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--ac),rgba(0,229,192,.1)) }
.stk__n { font-family: var(--fd); font-weight: 700; font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; color: var(--txt3) }
.stk__t { display: flex; flex-wrap: wrap; gap: 5px }
.stk__t span { font-size: .72rem; color: var(--txt2); padding: 3px 9px; background: var(--bg1); border: 1px solid var(--bdr); border-radius: 4px; transition: all .18s }
.stk__t span:hover { border-color: var(--ac); color: var(--ac) }

/* ── STACK ───────────────────────────────────────────────── */
.stk__wrap {
  background: var(--surf2); border: 1px solid var(--bdr2); border-radius: var(--r);
  padding: clamp(24px,4vw,40px); position: relative; overflow: hidden;
}
.stk__wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ac), transparent); opacity: .4;
}
.stk__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 28px;
}
.stk__group {
  display: flex; flex-direction: column; gap: 8px;
  padding-bottom: 16px; border-bottom: 1px solid var(--bdr);
}
.stk__grid .stk__group:nth-last-child(-n+3) { border-bottom: none; padding-bottom: 0 }
.stk__cat {
  font-family: var(--fd); font-size: .56rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ac);
  margin-bottom: 2px;
}
.stk__items { display: flex; flex-wrap: wrap; gap: 6px }
.stk__pill {
  display: inline-flex; align-items: center;
  font-family: var(--fd); font-size: .65rem; font-weight: 500;
  line-height: 1; color: var(--txt2); padding: 8px 16px 8px 13px;
  background: rgba(255,255,255,.03); border: 1px solid var(--bdr); border-radius: 50px;
  transition: all .2s var(--ease); cursor: default;
  white-space: nowrap;
}
.stk__pill > i {
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  flex-shrink: 0; min-width: 16px !important; width: 16px !important; height: 16px !important;
  font-size: 12px !important; line-height: 1 !important; margin-right: 10px !important;
  opacity: .5; transition: opacity .2s var(--ease);
}
.stk__pill:hover > i { opacity: 1 }
.stk__pill:hover {
  border-color: rgba(0,229,192,.35); color: var(--ac);
  background: rgba(0,229,192,.06);
}

.stk__tags {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.stk__tags span {
  font-family: var(--fd); font-size: .56rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--txt3); padding: 5px 14px;
  border: 1px solid var(--bdr2); border-radius: 50px;
  transition: border-color .2s, color .2s;
}
.stk__tags span:hover { border-color: var(--ac); color: var(--ac) }

/* ── CONTACTO ────────────────────────────────────────────── */
.contact-sec { position: relative; overflow: hidden }
.contact__glow {
  position: absolute; width: 600px; height: 600px;
  background: var(--ac); border-radius: 50%; filter: blur(140px);
  bottom: -300px; left: 50%; transform: translateX(-50%);
  opacity: .04; pointer-events: none;
}
.ct__wrap { max-width: 580px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; align-items: center; text-align: center }
.ct__head h2 { margin: 10px 0 12px }
.ct__head p  { color: var(--txt2); max-width: 420px; margin: 0 auto }
.ct__form-wrap { width: 100% }
.ct__form { display: flex; flex-direction: column; gap: 10px }
.ct__row  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px }
.ct__input {
  width: 100%; background: var(--surf); border: 1px solid var(--bdr2); border-radius: var(--r);
  padding: 13px 16px; font-family: var(--fb); font-size: .9rem; color: var(--txt); line-height: 1.5;
  transition: border-color .2s, box-shadow .2s; outline: none; -webkit-appearance: none;
}
.ct__input::placeholder { color: var(--txt3) }
.ct__input:focus { border-color: var(--ac); box-shadow: 0 0 0 3px rgba(0,229,192,.08) }
.ct__textarea { resize: none; min-height: 110px }
.ct__select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E90AE' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer;
}
.ct__select option  { background: #0D1321; color: #ECF2F9 }
.ct__select optgroup { color: #6E90AE; font-size: .68rem }
.ct__submit { margin-top: 2px; font-size: .875rem; padding: 14px }
.ct__submit:hover { box-shadow: 0 8px 28px rgba(0,229,192,.28) }
.ct__submit:active { transform: scale(.98) }
.ct__alts { display: flex; flex-direction: column; align-items: center; gap: 10px }
.ct__or   { font-size: .68rem; color: var(--txt3) }
.ct__alts-row { display: flex; align-items: center; gap: 10px }
.ct__alt  { display: inline-flex; align-items: center; gap: 6px; font-family: var(--fd); font-size: .8rem; font-weight: 700; color: var(--txt2); transition: color .2s }
.ct__alt:hover { color: var(--ac) }
.ct__alt--wa:hover { color: #25D366 }
.ct__dot-sep { color: var(--txt3) }
.ct__avail { display: flex; align-items: center; gap: 7px; font-size: .68rem; color: var(--txt3) }
.avail__dot { width: 6px; height: 6px; background: var(--ac); border-radius: 50%; animation: blink 2s ease-in-out infinite; flex-shrink: 0 }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg2); border-top: 1px solid var(--bdr);
}

/* ── FOOTER MINIMAL ─────────────────────────────────────── */
.footer--min { padding: clamp(28px,4vw,48px) 0 }
.ft-min__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-bottom: clamp(16px,2.5vw,24px);
  border-bottom: 1px solid var(--bdr);
}
.ft-min__logo img { height: 28px; width: auto; opacity: .6; transition: opacity .2s }
.ft-min__logo:hover img { opacity: 1 }
.ft-min__links { display: flex; gap: clamp(12px,2vw,24px); flex-wrap: wrap }
.ft-min__links a {
  font-family: var(--fd); font-size: .7rem; font-weight: 600;
  color: var(--txt3); transition: color .18s;
}
.ft-min__links a:hover { color: var(--ac) }
.ft-min__social { display: flex; align-items: center; gap: 16px }
.ft-min__ig, .ft-min__email, .ft-min__wa {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--fd); font-size: .65rem; font-weight: 600;
  color: var(--txt3); transition: color .18s;
}
.ft-min__ig:hover { color: #E1306C }
.ft-min__wa:hover { color: #25D366 }
.ft-min__email:hover { color: var(--ac) }
.ft-min__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: clamp(12px,2vw,18px);
  font-size: .62rem; color: var(--txt3); flex-wrap: wrap; gap: 6px;
}
.ft-min__right { display: flex; align-items: center; gap: 16px }
.ft-min__intranet {
  font-family: var(--fd); font-size: .56rem; font-weight: 600;
  color: var(--txt3); opacity: .4; transition: opacity .2s;
  letter-spacing: .05em;
}
.ft-min__intranet:hover { opacity: 1; color: var(--ac) }
@media (max-width: 600px) {
  .ft-min__top { flex-direction: column; align-items: flex-start; gap: 14px }
  .ft-min__social { flex-direction: column; align-items: flex-start; gap: 8px }
  .ft-min__bottom { flex-direction: column; align-items: flex-start }
}


/* ── QR OVERLAY ──────────────────────────────────────────── */
.qr-ov {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.qr-ov.open { opacity: 1; pointer-events: auto }
.qr-ov__close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: 1px solid var(--bdr2); border-radius: 50%;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: var(--txt3); font-size: 1.4rem; cursor: pointer; transition: all .2s; line-height: 1;
}
.qr-ov__close:hover { color: var(--ac); border-color: var(--ac) }
.qr-ov__content {
  display: flex; flex-direction: column; align-items: center; gap: clamp(20px,3vw,32px);
  padding: 24px; max-width: 600px; width: 100%;
}
.qr-ov__logo { height: clamp(36px,6vw,48px); width: auto; opacity: .7; margin-bottom: 8px }
.qr-ov__cards { display: flex; gap: clamp(16px,3vw,32px); width: 100%; justify-content: center }
.qr-ov__card {
  flex: 1; max-width: 280px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: var(--surf); border: 1px solid var(--bdr2); border-radius: 20px;
  padding: clamp(20px,3vw,28px); transition: border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.qr-ov__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ac), transparent); opacity: .5;
}
.qr-ov__card:hover { border-color: rgba(0,229,192,.4); box-shadow: 0 0 32px rgba(0,229,192,.08) }
.qr-ov__qr {
  width: clamp(170px,30vw,220px); height: clamp(170px,30vw,220px);
  background: var(--bg2); border: 1px solid var(--bdr); border-radius: 14px; padding: 14px;
}
.qr-ov__qr svg { width: 100%; height: 100% }
.qr-ov__label { font-family: var(--fd); font-size: clamp(.85rem,1.3vw,1rem); font-weight: 700; color: var(--txt); display: flex; align-items: center; gap: 8px }
.qr-ov__sub { font-size: .6rem; color: var(--ac); text-transform: uppercase; letter-spacing: .12em; font-weight: 600 }
.qr-ov__info {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding-top: 16px; border-top: 1px solid var(--bdr);
  width: 100%; max-width: 320px;
}
.qr-ov__info p { font-size: .72rem; color: var(--txt3); margin: 0; text-align: center }
.qr-ov__info p:first-child { font-family: var(--fd); font-weight: 700; color: var(--txt2); font-size: .78rem }
.qr-ov__hint {
  font-size: .65rem; color: var(--txt3); letter-spacing: .06em;
  animation: blink 2s ease-in-out infinite;
}
@media (max-width: 520px) {
  .qr-ov__content { padding: 16px; gap: 18px }
  .qr-ov__cards { flex-direction: column; align-items: stretch; gap: 10px }
  .qr-ov__card { max-width: 100%; padding: 16px; gap: 14px; border-radius: 16px }
  .qr-ov__qr { width: clamp(140px,40vw,180px); height: clamp(140px,40vw,180px); padding: 10px; margin: 0 auto }
  .qr-ov__label { font-size: .9rem }
}

/* ── RANCAGUA EASTER EGG ─────────────────────────────────── */
.ft-rancagua { position: relative; cursor: default }
.ft-rancagua__toast {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--ac); color: var(--bg); font-family: var(--fd); font-size: .58rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.ft-rancagua__toast::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 4px solid transparent; border-top-color: var(--ac);
}
.ft-rancagua:hover .ft-rancagua__toast,
.ft-rancagua.tapped .ft-rancagua__toast {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ── ANIMACIONES REVEAL ──────────────────────────────────── */
[data-anim]        { opacity: 0 }
[data-anim="up"]   { transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease) }
[data-anim="left"] { transform: translateX(24px); transition: opacity .68s var(--ease), transform .68s var(--ease) }
[data-anim="pop"]  { transform: scale(.9);        transition: opacity .5s var(--ease),  transform .5s var(--ease) }
[data-anim].visible { opacity: 1; transform: none }

/* ── ACCESIBILIDAD ───────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--ac); outline-offset: 3px; border-radius: 4px }
input:focus-visible, textarea:focus-visible, select:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--ac) }

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important }
  .ticker__t { animation: none }
  .hbg__glow { animation: none }
  [data-anim] { opacity: 1; transform: none }
}

/* ============================================================
   RESPONSIVE — Mobile-first breakpoints
   ============================================================ */

/* ── ≥640px ─── */
@media (min-width: 640px) {
  .packs { grid-template-columns: 1fr 1fr }
  .disc__grid { grid-template-columns: repeat(3,1fr) }
  .perfiles { grid-template-columns: 1fr 1fr }
  .eco__grid { grid-template-columns: repeat(3,1fr) }
  .stk { flex-direction: row; align-items: center; gap: clamp(10px,2vw,20px) }
  .stk__n { min-width: clamp(140px,14vw,165px); flex-shrink: 0 }
  .funnel__steps { flex-direction: row; align-items: stretch; gap: 4px }
  .fs { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; grid-template-columns: unset; grid-template-rows: unset; gap: 5px; padding: 14px 8px; background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--rs); text-align: center; border-bottom: 1px solid var(--bdr) }
  .fs:last-child { padding-bottom: 14px; border-bottom: 1px solid var(--bdr) }
  .fs--ac { background: rgba(0,229,192,.07); border-color: rgba(0,229,192,.2); margin: 0; padding: 14px 8px }
  .fs__i { font-size: 1.2rem; grid-row: unset; align-self: unset; text-align: unset }
  .fs__n { font-size: .68rem }
  .fs__s { font-size: .62rem }
  .fs__arr { display: flex; align-items: center; font-size: .9rem; color: var(--ac); opacity: .35; flex-shrink: 0 }
}

/* ── ≥768px — Tablet ─── */
@media (min-width: 768px) {
  .nav__links, .nav__cta { display: flex }
  .nav__burger { display: none }
  .hero__inner { grid-template-columns: 1fr 1fr }
  .srv__row { display: grid; grid-template-columns: 60px 1fr 160px; flex-direction: unset }
  .srv__row--ac { background: linear-gradient(90deg,var(--surf),rgba(0,229,192,.035)) }
  .sr__n { font-size: 1.6rem; padding: 0; display: flex; align-items: flex-start; justify-content: center; border-right: 1px solid var(--bdr); padding-top: clamp(20px,2.5vw,26px) }
  .sr__body { padding: clamp(16px,2vw,22px) clamp(14px,1.8vw,20px) }
  .sr__info { flex-direction: column; align-items: flex-end; justify-content: center; gap: 5px; padding: clamp(14px,1.8vw,20px); border-top: none; border-left: 1px solid var(--bdr) }
}

/* ── ≥900px — Desktop ─── */
@media (min-width: 900px) {
  .prob__grid { grid-template-columns: repeat(3,1fr) }
  .packs     { grid-template-columns: repeat(3,1fr) }
  .proc      { grid-template-columns: repeat(4,1fr) }
  .ecosistema { grid-template-columns: 1fr 1.6fr; align-items: center }
  .diagcta .btn { flex-shrink: 0 }
}

/* ── Ecosistema diagrama responsive ─── */
.emap       { display: block }
.emap__list { display: none }

@media (max-width: 699px) {
  .emap { max-width: none; overflow: hidden }
  .emap__inner { transform-origin: top center; margin: 0 auto }
  .enode__detail { display: none }
}
@media (min-width: 700px) and (max-width: 899px) {
  .emap { max-width: 600px }
  .emap__inner { transform: scale(0.75); transform-origin: top left }
  .emap { height: 420px }
}
@media (min-width: 900px) and (max-width: 1059px) {
  .emap__inner { transform: scale(0.88); transform-origin: top left }
  .emap { height: 493px }
}
@media (min-width: 1060px) {
  .emap__inner { transform: scale(1) }
  .emap { height: 560px }
}

/* ── Mobile ≤767px ─── */
@media (max-width: 767px) {
  .nav__links, .nav__cta { display: none }
  .nav__burger { display: flex }

  .hero__inner { grid-template-columns: 1fr; max-width: 100% }

  /* Hero panel visible en mobile (debajo) */
  .hero__visual { margin-top: 16px }
  .hv__panel    { padding: 14px 14px; gap: 10px }
  .hv__platforms { gap: 4px }
  .hvp          { padding: 7px 3px }
  .hvp-ico svg  { width: 16px; height: 16px }
  .hvp > span:last-child { font-size: .5rem }
  .hv__dash     { gap: 4px }
  .hv__platforms { grid-template-columns: repeat(4,1fr); gap: 3px }
  .hv__dash     { grid-template-columns: repeat(2,1fr); gap: 3px }
  .hvd          { padding: 5px 8px; gap: 5px }
  .hvd-ico svg  { width: 11px; height: 11px }
  .hvd > span:not(.hvd__dot):not(.hvd-ico) { font-size: .55rem }
  .hvd__dot     { width: 4px; height: 4px }

  /* Nums */
  .hero__nums { width: 100% }
  .hn { padding: 14px 6px }
  .hn__val { font-size: clamp(1.3rem, 4.5vw, 1.7rem) }
  .hn__lbl { font-size: clamp(.42rem, .85vw, .5rem) }

  /* Secciones más compactas */
  .sec { padding: clamp(40px,6vw,56px) 0 }

  /* Stack grid — 2 col on mobile */
  .stk__wrap { padding: 20px }
  .stk__grid { grid-template-columns: 1fr 1fr; gap: 16px 20px }
  .stk__grid .stk__group:nth-last-child(-n+3) { border-bottom: 1px solid var(--bdr); padding-bottom: 16px }
  .stk__grid .stk__group:last-child { border-bottom: none; padding-bottom: 0 }
  .stk__pill { font-size: .6rem; padding: 7px 13px 7px 11px }
  .stk__pill > i { min-width: 14px !important; width: 14px !important; height: 14px !important; font-size: 10px !important; margin-right: 8px !important }

  /* Contacto */
  .ct__row { grid-template-columns: 1fr }

  /* CTA diagcta */
  .diagcta { flex-direction: column }
  .diagcta .btn { width: 100% }
}

/* ── Mobile ≤479px ─── */
@media (max-width: 479px) {
  .hero__actions { flex-direction: column }
  .hero__actions .btn { width: 100% }
  .proc  { grid-template-columns: 1fr }
}

/* ── Mobile ≤380px ─── */
@media (max-width: 380px) {
  .hn { padding: 12px 4px }
  .hn__val { font-size: 1.2rem }
  .eco__grid { grid-template-columns: 1fr }
}

/* ── SERVICIOS: link a tarifas en vez de precio ── */
.sr__link {
  font-family:var(--fd); font-size:.72rem; font-weight:700;
  color:var(--ac); transition:opacity .18s;
}
.sr__link:hover { opacity:.7 }

/* ── PACKS: link tarifa ── */
.pack__tarifa {
  display:inline-flex; align-items:center; gap:5px;
  font-family:var(--fd); font-size:.72rem; font-weight:700;
  color:var(--ac); transition:opacity .18s; margin-top:2px;
}
.pack__tarifa:hover { opacity:.7 }

/* ── DESGLOSE BOLETA ── */
.tf__desglose {
  border:1px solid var(--bdr2); border-radius:var(--rs);
  overflow:hidden; font-size:.78rem; margin-bottom:6px;
}
.tf__drow {
  display:grid; grid-template-columns:1fr auto auto;
  gap:8px 16px; padding:8px 12px;
  border-bottom:1px solid var(--bdr); align-items:center;
}
.tf__drow:last-child { border-bottom:none }
.tf__drow--head {
  background:var(--bg2); font-family:var(--fd); font-size:.56rem;
  font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--txt3);
}
.tf__drow--ret  { color:var(--txt2) }
.tf__drow--neto { background:rgba(0,229,192,.05) }
.tf__d-val { font-family:var(--fd); font-weight:700; text-align:right; white-space:nowrap; color:var(--txt) }
.tf__d-ac  { color:var(--ac); font-size:.9rem }

/* ── DATOS BANCARIOS ── */
.tf__banco {
  margin-top:14px; background:var(--bg2);
  border:1px solid var(--bdr2); border-radius:var(--rs); overflow:hidden;
}
.tf__banco-title {
  display:block; font-family:var(--fd); font-size:.56rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:var(--txt3);
  padding:8px 12px; border-bottom:1px solid var(--bdr); background:var(--bg2);
}
.tf__banco-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:0;
}
@media (max-width:540px) { .tf__banco-grid { grid-template-columns:1fr } }
.tf__banco-item {
  display:flex; flex-direction:column; gap:2px; padding:10px 12px;
  border-bottom:1px solid var(--bdr); border-right:1px solid var(--bdr);
}
.tf__banco-item:nth-child(even) { border-right:none }
.tf__banco-item:last-child, .tf__banco-item:nth-last-child(2) { border-bottom:none }
.tf__banco-label { font-family:var(--fd); font-size:.52rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase; color:var(--txt3) }
.tf__banco-item > span:last-child { font-size:.78rem; color:var(--txt2) }

/* ── CONDICIONES — grid visible, sin acordeón ── */
.tc2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: clamp(32px,4vw,52px);
}
@media (min-width:540px) { .tc2-grid { grid-template-columns: 1fr 1fr } }
@media (min-width:900px) { .tc2-grid { grid-template-columns: repeat(3,1fr) } }

.tc2 {
  background: var(--surf); border: 1px solid var(--bdr);
  border-radius: var(--r); padding: 18px 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s;
}
.tc2:hover { border-color: var(--bdr2) }

.tc2__head {
  display: flex; align-items: center; gap: 9px;
  padding-bottom: 10px; border-bottom: 1px solid var(--bdr);
}
.tc2__head span { font-size: 1.1rem; flex-shrink: 0 }
.tc2__head h4   {
  font-family: var(--fd); font-size: .82rem; font-weight: 700;
  color: var(--txt); margin: 0;
}

.tc2 ul { list-style: none; display: flex; flex-direction: column; gap: 5px; padding: 0; margin: 0 }
.tc2 li {
  font-size: .75rem; color: var(--txt2); line-height: 1.55;
  padding-left: 13px; position: relative;
}
.tc2 li::before { content: '·'; position: absolute; left: 0; color: var(--ac); font-size: 1rem; line-height: .9 }

/* ── FLUJO DE PAGO ── */
.pago-flujo {
  background: var(--surf2); border: 1px solid var(--bdr2);
  border-radius: var(--r); padding: clamp(20px,3vw,32px);
  margin-bottom: 16px;
}
.pago-flujo__title { margin-bottom: 20px }
.pago-flujo__steps {
  display: flex; align-items: stretch;
  gap: 6px; overflow-x: auto; scrollbar-width: none;
}
.pago-flujo__steps::-webkit-scrollbar { display: none }

.pf-step {
  flex: 1; min-width: 110px;
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: var(--rs); padding: 14px 12px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.pf-step--ac {
  background: rgba(0,229,192,.06);
  border-color: rgba(0,229,192,.28);
}
.pf-step__num {
  font-family: var(--fd); font-size: .52rem; font-weight: 700;
  letter-spacing: .08em; color: var(--txt3); text-transform: uppercase;
}
.pf-step--ac .pf-step__num { color: var(--ac) }
.pf-step__icon { font-size: 1.3rem; line-height: 1 }
.pf-step__content strong { font-family: var(--fd); font-size: .78rem; font-weight: 700; color: var(--txt); display: block; margin-bottom: 2px }
.pf-step__content p { font-size: .68rem; color: var(--txt2); line-height: 1.45; margin: 0 }
.pf-step__badge {
  font-family: var(--fd); font-size: .52rem; font-weight: 700;
  color: var(--ac); background: rgba(0,229,192,.1);
  border: 1px solid rgba(0,229,192,.2);
  padding: 2px 7px; border-radius: 50px; width: fit-content; margin-top: 4px;
}
.pf-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--txt3); font-size: 1rem; flex-shrink: 0;
  padding-bottom: 28px;
}
@media (max-width:600px) {
  .pago-flujo__steps { flex-direction: column }
  .pf-arrow { transform: rotate(90deg); padding: 0; height: 20px }
}

/* ── DOS COLUMNAS PAGO ── */
.pago-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 12px;
}
@media (max-width:640px) { .pago-grid { grid-template-columns: 1fr } }

.pago-card {
  background: var(--surf); border: 1px solid var(--bdr);
  border-radius: var(--r); overflow: hidden;
}
.pago-card__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--bg2); border-bottom: 1px solid var(--bdr);
}
.pago-card__icon { font-size: 1.3rem; flex-shrink: 0 }
.pago-card__head h4 { font-family: var(--fd); font-size: .85rem; font-weight: 700; color: var(--txt); margin: 0 0 2px }
.pago-card__head span { font-size: .68rem; color: var(--txt3) }
.pago-card__body { padding: 16px 18px; display: flex; flex-direction: column; gap: 12px }

/* Banco rows */
.banco-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--bdr) }
.banco-row:last-child { border-bottom: none }
.banco-row--highlight { background: rgba(0,229,192,.04); margin: 0 -18px; padding: 10px 18px; border-top: 1px solid rgba(0,229,192,.15); border-bottom: 1px solid rgba(0,229,192,.15) }
.banco-label { font-family: var(--fd); font-size: .6rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--txt3); flex-shrink: 0 }
.banco-val { font-size: .82rem; color: var(--txt); text-align: right }
.banco-val--big { font-family: var(--fd); font-weight: 800; font-size: 1rem; color: var(--ac); letter-spacing: .04em }
.banco-val--link { color: var(--ac); font-size: .78rem; transition: opacity .18s }
.banco-val--link:hover { opacity: .75 }

/* Boleta info */
.boleta-info p { font-size: .78rem; color: var(--txt2); line-height: 1.65; margin: 0 }
.boleta-info strong { color: var(--txt) }

.boleta-tasa {
  display: flex; align-items: center; gap: 0;
  background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--rs); overflow: hidden;
}
.boleta-tasa__item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 12px 8px }
.boleta-tasa__sep  { width: 1px; background: var(--bdr); align-self: stretch }
.boleta-tasa__item--dim { opacity: .45 }
.boleta-tasa__year  { font-size: .58rem; color: var(--txt3); font-family: var(--fd); font-weight: 700; letter-spacing: .06em }
.boleta-tasa__val   { font-family: var(--fd); font-size: 1.1rem; font-weight: 800; color: var(--txt2) }
.boleta-tasa__val--active { color: var(--ac); font-size: 1.25rem }
.boleta-tasa__label { font-size: .56rem; color: var(--txt3); text-transform: uppercase; letter-spacing: .06em }

.boleta-ley {
  display: flex; align-items: center; gap: 7px;
  font-size: .68rem; color: var(--txt3); line-height: 1.5;
}
.boleta-ley svg { flex-shrink: 0; color: var(--txt3) }

/* Cuotas nota */
.pago-cuotas {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 12px 14px; background: var(--surf);
  border: 1px solid var(--bdr); border-radius: var(--rs);
  font-size: .75rem; color: var(--txt2); line-height: 1.55;
}
.pago-cuotas svg { flex-shrink: 0; color: var(--txt3); margin-top: 1px }
.pago-cuotas strong { color: var(--txt) }


