/* ============================================================
   CYNERSIS V3 — Design System
   Paleta: Navy profundo + Teal acción + Blanco limpio
   Tipografía: Inter — display 800-900, body 400-500
   Firma: proof-bar sticky con los 5 números clave,
          visible en todo el scroll = halo permanente (Kahneman)
   ============================================================ */

/* --- TOKENS --- */
:root {
  --navy:         #0A1E38;
  --navy-80:      #1B3358;
  --navy-40:      rgba(10,30,56,.4);
  --teal:         #1E85C7;
  --teal-hover:   #1566A0;
  --teal-10:      #E5F6F4;
  --teal-20:      #C0EBE7;
  --white:        #FFFFFF;
  --bg:           #F6F9FC;
  --bg-alt:       #ECF1F8;
  --text:         #192B3D;
  --text-60:      #4D6070;
  --text-40:      #7A8FA3;
  --border:       #D6E2EE;
  --border-dark:  rgba(10,30,56,.12);
  --red:          #DC3545;

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-pill: 999px;

  --sh-sm:  0 1px 4px rgba(10,30,56,.06), 0 1px 2px rgba(10,30,56,.04);
  --sh-md:  0 4px 20px rgba(10,30,56,.09);
  --sh-lg:  0 12px 48px rgba(10,30,56,.13);
  --sh-xl:  0 24px 64px rgba(10,30,56,.16);

  --font:   'Inter', system-ui, -apple-system, sans-serif;
  --max:    1160px;
  --nav-h:  68px;
}

/* --- 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); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* --- LAYOUT --- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: var(--bg); }
.section--dark { background: var(--navy); }

/* --- TYPE SCALE --- */
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,.5); }

.section-hd { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.section-title {
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 800;
  line-height: 1.16; letter-spacing: -.6px;
  color: var(--navy); margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-sub { font-size: 17px; color: var(--text-60); line-height: 1.7; }
.section-sub--light { color: rgba(255,255,255,.62); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 15px; font-weight: 600; line-height: 1;
  border-radius: var(--r-pill); padding: 13px 28px;
  transition: all .18s ease; white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 2px 16px rgba(0,168,150,.3);
}
.btn--primary:hover {
  background: var(--teal-hover);
  box-shadow: 0 4px 24px rgba(0,168,150,.42);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: var(--navy);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--navy); background: var(--bg); }
.btn--outline-light {
  background: transparent; color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.24);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.btn--nav { padding: 9px 20px; font-size: 14px; background: var(--teal-hover); color: var(--white); }
.btn--nav:hover { background: #0d4f82; }
.btn--lg { padding: 17px 36px; font-size: 16px; }
.btn--full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: var(--sh-md); }
.nav__inner { display: flex; align-items: center; height: 100%; gap: 36px; }

.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 56px; width: auto; display: block; flex-shrink: 0; }
.footer .logo-img { height: 64px; }
@media (max-width: 768px) {
  .logo-img { height: 44px; }
  .footer .logo-img { height: 50px; }
}
.logo-mark {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--navy); color: var(--white);
  font-size: 17px; font-weight: 900; letter-spacing: -.5px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-text { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -.3px; }

.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--text-60);
  transition: color .15s; position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 2px;
  transform: scaleX(0); transition: transform .2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--navy); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .22s; }

/* MOBILE MENU */
.mob {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 12px 24px 28px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateY(-110%); opacity: 0; pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
  box-shadow: var(--sh-lg);
}
.mob.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mob a:not(.btn) {
  font-size: 16px; font-weight: 500; color: var(--text);
  padding: 14px 0; border-bottom: 1px solid var(--bg-alt);
  display: block;
}
.mob .btn { margin-top: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy) url('../img/img008-1.webp') center center / cover no-repeat;
  padding: calc(var(--nav-h) + 96px) 0 112px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,37,89,.88) 0%, rgba(22,37,89,.72) 100%);
  z-index: 1;
}
.hero__inner { position: relative; z-index: 2; }
/* bottom wave */
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 56px; background: var(--white);
  clip-path: ellipse(58% 100% at 50% 100%);
}
.hero__orb1 {
  position: absolute; pointer-events: none;
  top: -60px; right: -80px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,168,150,.18) 0%, transparent 65%);
}
.hero__orb2 {
  position: absolute; pointer-events: none;
  bottom: 80px; left: -60px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,168,150,.08) 0%, transparent 70%);
}
.hero__inner { position: relative; z-index: 1; max-width: 860px; }

.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--r-pill); margin-bottom: 28px;
}
.hero__kicker-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,150,.28); flex-shrink: 0;
}

.hero__title {
  font-size: clamp(32px, 5.8vw, 64px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -2px; color: var(--white);
  margin-bottom: 24px;
}
.hero__title em { font-style: normal; color: var(--teal); }

.hero__sub {
  font-size: 18px; line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 640px; margin-bottom: 44px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   PROOF BAR — sticky bajo el nav, halo permanente (Kahneman)
   ============================================================ */
.proof {
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  position: sticky; top: var(--nav-h); z-index: 990;
}
.proof__inner {
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap; overflow-x: auto; scrollbar-width: none;
}
.proof__inner::-webkit-scrollbar { display: none; }
.proof__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14px 32px; gap: 2px; flex-shrink: 0;
}
.proof__num { font-size: 22px; font-weight: 900; color: var(--navy); letter-spacing: -.5px; line-height: 1.1; }
.proof__lbl { font-size: 12px; font-weight: 500; color: var(--text-60); white-space: nowrap; }
.proof__sep { width: 1px; background: var(--border); margin: 10px 0; flex-shrink: 0; }

/* ============================================================
   VERTICALES
   ============================================================ */
.vert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Card de Zoom ocupa 2 columnas — la más fuerte visualmente */
.vert-card--hero { grid-column: span 2; }

.vert-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.vert-card:hover {
  box-shadow: var(--sh-lg); transform: translateY(-4px);
  border-color: rgba(0,168,150,.35);
}
.vert-card--dark {
  background: var(--navy); border-color: var(--navy-80);
}
.vert-card--dark:hover { border-color: var(--teal); }

/* icon */
.vc-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--teal-10); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vert-card--dark .vc-icon { background: rgba(0,168,150,.14); }

/* tag */
.vc-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-10);
  padding: 4px 12px; border-radius: var(--r-pill); width: fit-content;
}
.vert-card--dark .vc-tag { background: rgba(0,168,150,.14); }

/* title */
.vc-title { font-size: 20px; font-weight: 800; line-height: 1.26; letter-spacing: -.2px; color: var(--navy); }
.vert-card--dark .vc-title { color: var(--white); }

/* Keywords visibles como chips; se elimina cualquier texto oculto para SEO seguro */
.vc-kw { display: inline-flex; width: fit-content; font-size: 12px; height: auto; overflow: visible; color: var(--text-60); background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px 10px; }

/* pain / proof */
.vc-pain {
  font-size: 14px; font-style: italic; line-height: 1.6;
  color: var(--text-40); border-left: 3px solid var(--teal-20);
  padding-left: 12px; margin: 0;
}
.vert-card--dark .vc-pain { color: rgba(255,255,255,.5); border-color: rgba(0,168,150,.3); }

.vc-solution { font-size: 15px; color: var(--text-60); line-height: 1.68; }
.vert-card--dark .vc-solution { color: rgba(255,255,255,.68); }

/* checklist */
.vc-list { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.vc-list li {
  font-size: 14px; font-weight: 500; color: var(--text);
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.5;
}
.vc-list li::before { content: "✓"; color: var(--teal); font-weight: 800; flex-shrink: 0; }
.vert-card--dark .vc-list li { color: rgba(255,255,255,.82); }

/* cta link */
.vc-cta {
  font-size: 14px; font-weight: 700; color: var(--teal);
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 6px; transition: gap .15s, color .15s;
}
.vc-cta:hover { gap: 9px; color: var(--teal-hover); }

/* row 2 — 3 cards iguales */
.vert-row2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }

/* ============================================================
   MARCAS PARTNERS
   ============================================================ */
.brands-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.brand-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-pill); padding: 9px 22px;
  font-size: 13px; font-weight: 700; color: var(--text-60);
  letter-spacing: .02em; transition: all .15s;
}
.brand-pill:hover { border-color: var(--teal); color: var(--navy); background: var(--teal-10); }
.brand-pill--featured { border-color: var(--teal-20); color: var(--navy); }

/* ============================================================
   POR QUÉ CYNERSIS
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 28px 24px;
  transition: box-shadow .2s, border-color .2s;
}
.why-card:hover { box-shadow: var(--sh-md); border-color: rgba(0,168,150,.3); }
.why-num { font-size: 12px; font-weight: 800; color: var(--teal); letter-spacing: .07em; margin-bottom: 14px; }
.why-title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.why-body { font-size: 14px; color: var(--text-60); line-height: 1.72; }

/* ============================================================
   NOSOTROS
   ============================================================ */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about__copy .eyebrow { color: var(--teal); }
.about__title { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.18; letter-spacing: -.5px; margin-bottom: 20px; }
.about__body { font-size: 16px; color: var(--text-60); line-height: 1.75; margin-bottom: 28px; }
.about__values { display: flex; flex-direction: column; gap: 14px; }
.about__val { display: flex; align-items: flex-start; gap: 14px; }
.about__val-icon { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--teal-10); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about__val-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.about__val-text { font-size: 13px; color: var(--text-60); line-height: 1.6; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about__stat { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 24px; text-align: center; }
.about__stat-num { font-size: 36px; font-weight: 900; color: var(--navy); letter-spacing: -1px; line-height: 1; margin-bottom: 6px; }
.about__stat-lbl { font-size: 13px; color: var(--text-60); line-height: 1.5; }

/* ============================================================
   LATAM
   ============================================================ */
.latam__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.latam__copy .eyebrow { color: var(--teal); }
.latam__title { font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; color: var(--white); line-height: 1.2; letter-spacing: -.4px; margin-bottom: 16px; }
.latam__body { font-size: 16px; color: rgba(255,255,255,.62); line-height: 1.75; margin-bottom: 28px; }
.latam-cards { display: flex; flex-direction: column; gap: 14px; }
.latam-card {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: background .2s, border-color .2s;
}
.latam-card:hover { background: rgba(255,255,255,.09); border-color: rgba(0,168,150,.35); }
.latam-card__flag { font-size: 26px; line-height: 1; }
.latam-card__name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.latam-card__detail { font-size: 13px; color: rgba(255,255,255,.45); }

/* ============================================================
   INDUSTRIAS
   ============================================================ */
.ind-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.ind-tag {
  padding: 10px 22px; background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-pill); font-size: 14px; font-weight: 500;
  color: var(--text-60); transition: all .15s; cursor: default;
}
.ind-tag:hover { background: var(--teal-10); border-color: var(--teal); color: var(--navy); }

/* ============================================================
   FAQ — AEO optimizado
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 0;
  font-size: 16px; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer; transition: color .15s;
  background: none; border: none;
}
.faq-q:hover { color: var(--teal); }
.faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--teal); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  font-size: 15px; color: var(--text-60); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding-bottom .35s;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 22px; }

/* ============================================================
   CONTACTO
   ============================================================ */
.ctc__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ctc__copy .eyebrow { color: var(--teal); }
.ctc__title { font-size: clamp(22px, 3vw, 36px); font-weight: 800; color: var(--navy); line-height: 1.2; letter-spacing: -.4px; margin-bottom: 16px; }
.ctc__sub { font-size: 16px; color: var(--text-60); line-height: 1.72; margin-bottom: 28px; }

.trust-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.trust-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.5; }
.trust-list svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

.direct-links { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--border); }
.direct-link { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text-60); transition: color .15s; }
.direct-link:hover { color: var(--navy); }
.direct-link svg { color: var(--teal); flex-shrink: 0; }

/* FORM */
.form-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 36px;
  box-shadow: var(--sh-xl);
}
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: .02em; }
.form-req { color: var(--teal); }
.form-input {
  font-size: 15px; color: var(--text); background: var(--bg);
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  padding: 12px 14px; width: 100%; outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
  appearance: none;
}
.form-input::placeholder { color: var(--text-40); }
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,168,150,.13); background: var(--white); }
.form-input.err { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,53,69,.1); }
.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A8FA3' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px 16px;
  padding-right: 40px; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 88px; }
.form-note { font-size: 12px; color: var(--text-40); text-align: center; }
.form-success { text-align: center; padding: 40px 16px; }
.form-success__ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal-10); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--text-60); line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #06101E; }
.footer__top { padding: 56px 0 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .logo-mark { background: rgba(255,255,255,.1); }
.footer .logo-text { color: var(--white); }
.footer__desc { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.7; margin-top: 12px; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: all .18s;
}
.footer__social a:hover { background: rgba(0,168,150,.22); color: var(--teal); border-color: rgba(0,168,150,.35); }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 16px; display: block; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer__col a:hover { color: var(--white); }
.footer__addr { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; margin-top: 4px; }
.footer__bottom { padding: 20px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 13px; color: rgba(255,255,255,.45); }
.footer__iso { font-size: 12px; color: rgba(255,255,255,.38); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .vert-grid { grid-template-columns: 1fr 1fr; }
  .vert-card--hero { grid-column: span 2; }
  .vert-row2 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .latam__inner { grid-template-columns: 1fr; gap: 40px; }
  .ctc__inner { grid-template-columns: 1fr; gap: 44px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: calc(var(--nav-h) + 56px) 0 80px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .proof { position: static; }
  .vert-grid, .vert-row2 { grid-template-columns: 1fr; }
  .vert-card--hero { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .proof__item { padding: 12px 18px; }
  .form-wrap { padding: 22px 18px; }
  .about__stats { grid-template-columns: 1fr; }
  .section-hd { margin-bottom: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .btn, .vert-card, .faq-a, .faq-q svg { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}


/* ============================================================
   CYNERSIS V4 — Ajustes foco B2B y landings
   ============================================================ */
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.62);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.78); }
.breadcrumb a:hover { color: var(--white); }

.pain-grid,
.feature-grid,
.process-grid,
.persona-grid,
.metrics-grid,
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.metrics-grid--4 { grid-template-columns: repeat(4, 1fr); }
.process-grid--4 { grid-template-columns: repeat(4, 1fr); }
/* Timeline horizontal */
.timeline { position: relative; margin-top: 56px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.timeline::before { content: ''; position: absolute; left: 0; right: 0; top: 22px; height: 2px; background: var(--border); z-index: 0; }
.timeline__item { position: relative; padding-top: 52px; padding-right: 20px; }
.timeline__item::before { content: ''; position: absolute; top: 15px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--teal); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--teal); z-index: 1; }
.timeline__year { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); background: rgba(30,133,199,.1); padding: 3px 10px; border-radius: var(--r-pill); margin-bottom: 10px; }
.timeline__title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline__desc { font-size: 13px; color: var(--text-60); line-height: 1.65; }
@media (max-width: 768px) {
  .timeline { grid-template-columns: 1fr; padding-left: 32px; }
  .timeline::before { left: 0; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .timeline__item { padding-top: 0; padding-bottom: 36px; padding-right: 0; }
  .timeline__item::before { top: 4px; left: -39px; }
}

.prensa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.prensa-copy .section-title { text-align: left; margin-bottom: 16px; }
.prensa-copy .eyebrow { display: block; margin-bottom: 12px; }
.prensa-outlet { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.prensa-title { font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 12px; letter-spacing: -.2px; }
.prensa-desc { font-size: 15px; color: var(--text-60); line-height: 1.65; }

/* Prensa carousel */
.prensa-carousel { position: relative; }
.prensa-carousel__track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
  padding-bottom: 4px;
}
.prensa-carousel__track::-webkit-scrollbar { display: none; }
.prensa-carousel__controls {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px;
}
.prensa-carousel__btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .18s; flex-shrink: 0;
}
.prensa-carousel__btn:hover { border-color: var(--teal); color: var(--teal); background: #EAF5FC; }
.prensa-carousel__btn:disabled { opacity: .35; cursor: default; }
.prensa-carousel__dots { display: flex; gap: 8px; align-items: center; }
.prensa-carousel__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--border);
  border: none; cursor: pointer; padding: 0; transition: all .2s;
}
.prensa-carousel__dot.active { background: var(--teal); width: 22px; border-radius: 4px; }

/* Prensa card */
.prensa-card {
  flex: 0 0 calc(33.333% - 16px); scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--border); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.prensa-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.prensa-card__img img { width: 100%; height: 180px; object-fit: cover; display: block; }
.prensa-card__noimg {
  height: 180px; display: flex; align-items: center; justify-content: center;
  background: var(--bg);
}
.prensa-card__noimg--teal { background: #EAF5FC; }
.prensa-card__icon { font-size: 48px; line-height: 1; }
.prensa-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.prensa-card__title { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.4; letter-spacing: -.15px; }
.prensa-card__desc { font-size: 13px; color: var(--text-60); line-height: 1.65; flex: 1; }
.prensa-card__cta { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--teal); margin-top: 4px; }
.prensa-card:hover .prensa-card__cta { gap: 8px; }

@media (max-width: 900px) {
  .prensa-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 768px) {
  .prensa-grid { grid-template-columns: 1fr; gap: 32px; }
  .prensa-card { flex: 0 0 calc(100% - 0px); }
}

.info-card,
.process-card,
.persona-card,
.metric-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-sm);
}
.info-card--dark {
  background: var(--navy);
  border-color: var(--navy-80);
  color: var(--white);
}
.info-card h3,
.process-card h3,
.persona-card h3 { font-size: 18px; line-height: 1.3; color: var(--navy); margin-bottom: 10px; }
.info-card--dark h3 { color: var(--white); }
.info-card p,
.process-card p,
.persona-card p { font-size: 15px; color: var(--text-60); line-height: 1.72; }
.info-card--dark p { color: rgba(255,255,255,.68); }
.process-num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--teal-10); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; margin-bottom: 16px;
}
.metric-card { text-align: center; }
.metric-card strong { display: block; font-size: 30px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.metric-card span { display: block; font-size: 13px; color: var(--text-60); line-height: 1.45; }

.note-box {
  border: 1.5px solid var(--teal-20);
  background: var(--teal-10);
  border-radius: var(--r-lg);
  padding: 26px 28px;
}
.note-box h3 { color: var(--navy); font-size: 20px; margin-bottom: 10px; line-height: 1.25; }
.note-box p { color: var(--text-60); line-height: 1.7; }
.note-box ul { margin-top: 14px; display: grid; gap: 8px; }
.note-box li { display: flex; gap: 9px; font-size: 14px; color: var(--text); line-height: 1.5; }
.note-box li::before { content: "✓"; color: var(--teal); font-weight: 900; flex-shrink: 0; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.kw-chip,
.badge-chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-60);
  border-radius: var(--r-pill);
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 700;
}
.badge-chip { background: rgba(255,255,255,.08); color: rgba(255,255,255,.72); border-color: rgba(255,255,255,.16); }

.lp-hero {
  position: relative; overflow: hidden; background: var(--navy);
  padding: calc(var(--nav-h) + 78px) 0 84px;
}
.lp-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 42px; background: var(--white);
  clip-path: ellipse(58% 100% at 50% 100%);
}
.lp-hero__inner { position: relative; z-index: 1; max-width: 920px; }
.lp-hero__title {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900; line-height: 1.08; letter-spacing: -1.7px;
  color: var(--white); margin-bottom: 22px;
}
.lp-hero__title em { color: var(--teal); font-style: normal; }
.lp-hero__sub { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.68); max-width: 760px; margin-bottom: 32px; }
.lp-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.lp-focus {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}
.lp-focus__sticky { position: sticky; top: calc(var(--nav-h) + 28px); }

.inline-cta {
  margin-top: 42px;
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 34px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.inline-cta h3 { font-size: 24px; line-height: 1.2; margin-bottom: 8px; }
.inline-cta p { color: rgba(255,255,255,.65); line-height: 1.65; }
.inline-cta--light { background: var(--white); border: 1.5px solid var(--border); }
.inline-cta--light h3 { color: var(--navy); }
.inline-cta--light p { color: var(--text-60); }

/* ============================================================
   Modal de contacto contextual
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 17, 40, .65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .22s ease;
}
.modal-overlay.modal-open { opacity: 1; }
.modal-overlay[hidden] { display: none; }
.modal-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  position: relative;
  padding: 40px 40px 36px;
  box-shadow: 0 24px 80px rgba(22,37,89,.22);
  transform: translateY(12px);
  transition: transform .22s ease;
}
.modal-overlay.modal-open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--text-60);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.modal-close:hover { background: var(--border); color: var(--navy); }
.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 6px;
  line-height: 1.25;
}
.modal-sub {
  font-size: 14px;
  color: var(--text-60);
  line-height: 1.6;
  margin-bottom: 24px;
}
.modal-success {
  text-align: center;
  padding: 24px 0;
}
.modal-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6f4fd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.modal-success h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.modal-success p { font-size: 14px; color: var(--text-60); line-height: 1.6; }
@media (max-width: 600px) {
  .modal-box { padding: 32px 20px 28px; border-radius: 16px; }
  .modal-title { font-size: 19px; }
}

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}

.form-error {
  border: 1.5px solid rgba(220,53,69,.3);
  background: rgba(220,53,69,.07);
  color: #9b1f2d;
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
}
.small-note { font-size: 12px; color: var(--text-40); line-height: 1.55; }

.solution-link-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: all .2s;
}
.solution-link-card:hover { border-color: rgba(0,168,150,.42); box-shadow: var(--sh-md); transform: translateY(-2px); }
.solution-link-card h3 { color: var(--navy); font-size: 20px; margin-bottom: 10px; line-height: 1.25; }
.solution-link-card p { color: var(--text-60); font-size: 15px; line-height: 1.65; margin-bottom: 16px; }
.solution-link-card strong { color: var(--teal); font-size: 14px; }

/* Equipo */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.team-img-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.team-img { width: 100%; height: auto; display: block; }
.team-copy { max-width: 520px; }
.team-copy .section-title { margin-bottom: 16px; }
.team-copy .section-sub { margin-bottom: 28px; }
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-copy { max-width: 100%; }
}

/* Partners */
.partners-grid { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; justify-content: center; }
.partner-chip {
  padding: 14px 28px; border: 1.5px solid var(--border); border-radius: var(--r-pill);
  font-size: 15px; font-weight: 600; color: var(--navy); background: var(--white);
  letter-spacing: .01em; box-shadow: var(--sh-sm);
}

@media (max-width: 1040px) {
  .pain-grid, .feature-grid, .process-grid, .persona-grid, .metrics-grid, .lp-grid, .lp-grid--2 { grid-template-columns: 1fr 1fr; }
  .metrics-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .lp-focus { grid-template-columns: 1fr; }
  .lp-focus__sticky { position: static; }
}
@media (max-width: 768px) {
  .pain-grid, .feature-grid, .process-grid, .persona-grid, .metrics-grid, .lp-grid, .lp-grid--2 { grid-template-columns: 1fr; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
  .lp-hero__ctas { flex-direction: column; }
  .lp-hero__ctas .btn { width: 100%; }
}


/* ============================================================
   CYNERSIS V6 — Identidad real: Navy corporativo + Globe multicolor
   Paleta extraída del logo oficial: navy #162559, acento teal #1E85C7
   Fondo limpio blanco/gris claro — B2B profesional y confiable
   Globe gradient: verde → teal → azul (del isotipo real)
   ============================================================ */
:root {
  /* Tokens realineados al logo oficial de Cynersis */
  --navy:         #162559;
  --navy-80:      #1E3A8A;
  --navy-40:      rgba(22,37,89,.4);
  --teal:         #1E85C7;
  --teal-hover:   #1566A0;
  --teal-10:      #E5F6F4;
  --teal-20:      #C0EBE7;
  --white:        #FFFFFF;
  --bg:           #F6F9FC;
  --bg-alt:       #ECF1F8;
  --text:         #162559;
  --text-60:      #4A607A;
  --text-40:      #7A8FA3;
  --border:       #D6E2EE;
  --border-dark:  rgba(22,37,89,.12);

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-pill: 999px;

  --sh-sm:  0 1px 4px rgba(22,37,89,.06), 0 1px 2px rgba(22,37,89,.04);
  --sh-md:  0 4px 20px rgba(22,37,89,.09);
  --sh-lg:  0 12px 48px rgba(22,37,89,.13);
  --sh-xl:  0 24px 64px rgba(22,37,89,.16);

  --font:   'Inter', system-ui, -apple-system, sans-serif;
  --max:    1160px;
  --nav-h:  76px;

  /* Globe gradient — isotipo multicolor del logo oficial */
  --globe-gradient: linear-gradient(135deg, #52B788 0%, #2EC4B6 30%, #4895EF 65%, #4361EE 100%);
}

html { background: var(--white); }
body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--white);
  color: var(--text);
}
body::before { display: none; }

.container { max-width: var(--max); padding: 0 24px; }
.section { padding: 96px 0; background: transparent; }
.section--alt { background: var(--bg); }
.section--dark { background: var(--navy); }

.eyebrow,
.vc-tag,
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow { margin-bottom: 14px; color: var(--teal-hover); }
.section--dark .eyebrow,
.lp-hero .eyebrow,
.latam__copy .eyebrow { color: var(--teal); }
.section-hd { max-width: 660px; margin-bottom: 60px; }
.section-title,
.ctc__title,
.lp-hero__title,
.hero__title {
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--navy);
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.16;
  margin-bottom: 16px;
}
.ctc__title { font-size: clamp(22px, 3vw, 36px); line-height: 1.2; }
.section-sub,
.section-sub--light,
.ctc__sub,
.hero__sub,
.lp-hero__sub,
.info-card p,
.process-card p,
.persona-card p,
.solution-link-card p,
.note-box p,
.faq-a,
.form-note,
.trust-list li,
.direct-link {
  font-weight: 400;
  color: var(--text-60);
  line-height: 1.75;
}
.footer__desc { font-weight: 400; line-height: 1.75; }

/* Navegación */
.nav {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav.scrolled { box-shadow: var(--sh-md); }
.nav__inner { gap: 36px; }
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--globe-gradient);
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.5px;
}
.logo-text {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.3px;
}
.nav__links { gap: 28px; }
.nav__links a,
.mob a:not(.btn) {
  color: var(--text-60);
  font-weight: 500;
}
.nav__links a::after { display: block; background: var(--teal); }
.nav__links a:hover,
.nav__links a.active { color: var(--navy); }
.nav__links a.active { border: none; padding: 0; }
.nav__burger span { background: var(--navy); }
.mob {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-lg);
}
.mob a:not(.btn) { border-bottom-color: var(--bg-alt); }

/* Botones */
.btn {
  border-radius: var(--r-pill);
  font-weight: 600;
  padding: 13px 28px;
  border-width: 2px;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 2px 16px rgba(0,168,150,.3);
}
.btn--primary:hover {
  background: var(--teal-hover);
  border-color: var(--teal-hover);
  box-shadow: 0 4px 24px rgba(0,168,150,.42);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--navy); background: var(--bg); }
.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.4);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); }
.btn--lg { padding: 17px 36px; font-size: 16px; }

/* Hero — mantiene navy para contraste clásico B2B */
.hero,
.lp-hero {
  min-height: auto;
  background: var(--navy);
  padding: calc(var(--nav-h) + 96px) 0 112px;
  position: relative;
  overflow: hidden;
}
.hero {
  background: var(--navy) url('../img/img008-1.webp') center center / cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,37,89,.85) 0%, rgba(22,37,89,.65) 100%);
  z-index: 1;
}
.hero::after,
.lp-hero::after {
  display: block;
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 56px;
  background: var(--white);
  clip-path: ellipse(58% 100% at 50% 100%);
}
.hero__inner,
.lp-hero__inner { max-width: 1160px; position: relative; z-index: 2; text-align: center; margin: 0 auto; }
.hero__inner::after,
.hero__inner::before,
.lp-hero__inner::after,
.lp-hero__inner::before { display: none; }
.hero__orb1 {
  display: block;
  position: absolute; pointer-events: none;
  top: -60px; right: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,168,150,.16) 0%, transparent 65%);
}
.hero__orb2 {
  display: block;
  position: absolute; pointer-events: none;
  bottom: 80px; left: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,168,150,.08) 0%, transparent 70%);
}
.hero__kicker {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.75);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  margin-bottom: 28px;
}
.hero__kicker-dot {
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,150,.28);
}
.hero__title,
.lp-hero__title {
  font-size: clamp(32px, 5.8vw, 64px);
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em,
.lp-hero__title em { color: var(--teal); font-style: normal; }
.hero__sub,
.lp-hero__sub {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  max-width: 680px;
  margin-bottom: 44px;
  margin-left: auto;
  margin-right: auto;
}
.hero__ctas,
.lp-hero__ctas { justify-content: center; }
.hero__inner .tag-list,
.lp-hero__inner .tag-list { justify-content: center; }
.breadcrumb { color: rgba(255,255,255,.62); font-weight: 500; }
.breadcrumb a { color: rgba(255,255,255,.88); border-bottom: none; }

/* Proof bar */
.proof {
  background: var(--white);
  border-top: none;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.proof__sep { background: var(--border); }
.proof__num { color: var(--navy); font-weight: 900; font-size: 22px; }
.proof__lbl { color: var(--text-60); font-weight: 500; }

/* Cards y paneles */
.info-card,
.process-card,
.persona-card,
.metric-card,
.solution-link-card,
.note-box,
.form-wrap,
.faq-list,
.lp-focus__sticky,
.vert-card,
.why-card,
.about__stat,
.latam-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.info-card:hover,
.process-card:hover,
.persona-card:hover,
.solution-link-card:hover,
.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: rgba(0,168,150,.35);
}
.info-card h3,
.process-card h3,
.persona-card h3,
.solution-link-card h3,
.note-box h3,
.faq-q,
.form-success h3 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.25;
}
.info-card h3,
.process-card h3,
.persona-card h3,
.solution-link-card h3 { font-size: 20px; }
.solution-link-card strong,
.vc-cta {
  color: var(--teal);
  border-bottom: none;
  font-weight: 700;
}
.solution-link-card strong:hover,
.vc-cta:hover { color: var(--teal-hover); }
.vc-tag,
.kw-chip,
.brand-pill,
.ind-tag {
  background: var(--teal-10);
  color: var(--teal);
  border: 1px solid var(--teal-20);
  border-radius: var(--r-pill);
  font-weight: 700;
}
.kw-chip { background: var(--bg); color: var(--text-60); border-color: var(--border); }
.badge-chip { background: rgba(255,255,255,.1); color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.2); }
.process-num {
  width: 38px;
  height: 38px;
  background: var(--teal-10);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  border-radius: 50%;
  justify-content: center;
}
.metric-card strong {
  color: var(--navy);
  font-weight: 900;
  font-size: 30px;
}
.metric-card span { color: var(--text-60); }
.note-box {
  background: var(--teal-10);
  border-color: var(--teal-20);
}
.note-box li { color: var(--text); font-weight: 400; }
.note-box li::before { color: var(--teal); }

/* Contacto y formularios */
.ctc__inner { gap: 64px; }
.trust-list svg,
.direct-link svg,
.form-req,
.faq-q svg { color: var(--teal); }
.direct-links { border-top-color: var(--border); }
.form-label { color: var(--text); font-weight: 600; }
.form-input {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-weight: 400;
}
.form-input::placeholder { color: var(--text-40); }
.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,150,.13);
  background: var(--white);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%237A8FA3' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px 16px;
}
.form-error {
  background: rgba(220,53,69,.07);
  border: 1.5px solid rgba(220,53,69,.3);
  color: #9b1f2d;
}
.form-success__ico {
  background: var(--teal-10);
  color: var(--teal);
}
.form-success p { color: var(--text-60); }

/* FAQ */
.faq-list { padding: 0 28px; }
.faq-item,
.faq-item:first-child { border-color: var(--border); }
.faq-q { font-size: 16px; font-weight: 600; color: var(--navy); }
.faq-q:hover { color: var(--teal); }

/* Footer */
.footer { background: var(--navy); border-top: none; }
.footer__top { border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo-mark { background: var(--globe-gradient); }
.footer__col-title { color: rgba(255,255,255,.65); }
.footer__col a { color: rgba(255,255,255,.7); font-weight: 400; }
.footer__col a:hover { color: var(--white); }
.footer__copy,
.footer__iso { color: rgba(255,255,255,.55); }

/* Landings */
.lp-focus__sticky { padding: 28px; }
.inline-cta {
  background: var(--navy);
  border: none;
  border-radius: var(--r-lg);
}
.inline-cta p { color: rgba(255,255,255,.65); }

/* Sección dark — overrides para texto claro */
.section--dark .section-title { color: var(--white); }
.section--dark .section-sub { color: rgba(255,255,255,.65); }
.section--dark .eyebrow { color: var(--teal); }
.metric-card--img {
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.metric-card--img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(22,37,89,.72) 0%, rgba(22,37,89,.55) 100%);
}
.metric-card--img strong,
.metric-card--img span { position: relative; z-index: 1; }
.section--dark .metric-card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
}
.section--dark .metric-card strong { color: var(--white); }
.section--dark .metric-card span { color: rgba(255,255,255,.55); }

/* Responsive V6 */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 22px; }
  .section { padding: 64px 0; }
  .hero,
  .lp-hero { padding: calc(var(--nav-h) + 56px) 0 80px; }
  .hero__title,
  .lp-hero__title { font-size: clamp(28px, 10vw, 44px); line-height: 1.1; letter-spacing: -1px; }
  .section-title { font-size: clamp(24px, 8vw, 36px); }
  .info-card h3,
  .process-card h3,
  .persona-card h3,
  .solution-link-card h3 { font-size: 18px; }
  .faq-list { padding: 0 16px; }
  .hero::after,
  .lp-hero::after { height: 36px; }
}

/* SoundCloud lazy-load */
.sc-lazy { width: 100%; height: 166px; }
.sc-lazy__btn {
  width: 100%; height: 100%;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-md); cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 0 24px; text-align: left;
  transition: border-color .18s, background .18s;
}
.sc-lazy__btn:hover { border-color: var(--teal); background: #EAF5FC; }
.sc-lazy__info { display: flex; flex-direction: column; gap: 4px; }
.sc-lazy__info strong { font-size: 14px; font-weight: 600; color: var(--navy); }
.sc-lazy__info span { font-size: 12px; color: var(--text-60); }

/* Sticky CTA mobile */
.mob-sticky {
  display: none;
}
@media (max-width: 768px) {
  .mob-sticky {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--navy);
    padding: 12px 16px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(22,37,89,.18);
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .mob-sticky a {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
  }
  .mob-sticky .mob-sticky__primary {
    background: #ffffff;
    color: #162559;
  }
  .mob-sticky .mob-sticky__wa {
    background: #075E54;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    padding: 12px 14px;
  }
  /* Push page content above sticky bar */
  body { padding-bottom: 72px; }
  /* Hide floating WhatsApp on mobile — sticky bar covers it */
  .whatsapp-float { display: none; }
}
