
/* ══════════════════════════════════════════
   FONTS
══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ══════════════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════════════ */
:root {
  --navy:      #0B1E3D;
  --brand:     #0057FF;
  --brand-lt:  #3D7FFF;
  --ice:       #EEF4FF;
  --white:     #FFFFFF;
  --slate: #181818;
  --border:    rgba(0, 87, 255, 0.15);

  --font-head: 'Inter', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-card: 1rem;
  --radius-pill: 9999px;
  --shadow-card: 0 4px 24px rgba(0,87,255,.08);
  --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.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;
}

.brand       { color: var(--brand); }
.brand-light { color: var(--brand-lt); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0)     rotate(-2deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}

@keyframes ping {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.8); opacity: 0;  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.float-anim { animation: float 5s ease-in-out infinite; }

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.btn--primary       { background: var(--brand);   color: #fff; }
.btn--primary:hover { background: var(--brand-lt); }

.btn--outline-white       { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn--white-on-brand       { background: #fff; color: var(--brand); }
.btn--white-on-brand:hover { background: var(--ice); }

.btn--pill   { border-radius: var(--radius-pill); padding: .75rem 1.75rem; }
.btn--sm     { padding: .5rem 1.25rem; font-size: .8125rem; }
.btn--full   { width: 100%; }
.btn--shadow { box-shadow: 0 8px 24px rgba(0,87,255,.3); }

/* ══════════════════════════════════════════
   BADGES
══════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  padding: .375rem 1rem;
  border-radius: var(--radius-pill);
}
.badge__dot {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--brand-lt);
  animation: pulse 2s infinite;
}
.badge--brand         { color: var(--brand);    background: var(--ice); border: 1px solid rgba(0,87,255,.2); }
.badge--white         { color: var(--brand);    background: #fff;       border: 1px solid rgba(0,87,255,.2); }
.badge--outline-white { color: var(--brand-lt); background: rgba(255,255,255,.1); border: 1px solid rgba(61,127,255,.4); }

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8%;
}

.section        { padding: 6rem 0; }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy);  }
.section--ice   { background: var(--ice);   }

.section__header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
}
.section__title--white { color: #fff; }

.section__subtitle {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 38rem;
}

.grid    { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ══════════════════════════════════════════
   CARDS
══════════════════════════════════════════ */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(11,30,61,.08);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.card:hover {
  border-color: rgba(0,87,255,.3);
  box-shadow: 0 12px 32px rgba(0,87,255,.08);
}
.card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--brand);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover::after { transform: scaleX(1); }

.card__icon {
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  background: var(--ice);
  border: 1px solid rgba(0,87,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--brand);
  transition: background var(--transition);
}
.card:hover .card__icon { background: rgba(0,87,255,.1); }

.card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--navy);
  margin-bottom: .5rem;
}

.card__desc {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.65;
}

.card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1rem;
  font-size: .875rem;
  color: var(--slate);
}
.card__list li { display: flex; align-items: flex-start; gap: .5rem; }

.check-icon { color: var(--brand); flex-shrink: 0; margin-top: .15rem; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,87,255,.1);
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}
.navbar.scrolled .navbar__logo { color: var(--navy); }

.navbar__logo-icon-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.navbar__logo-text  { display: flex; align-items: baseline; gap: .05em; }
.navbar__logo-brand { color: var(--brand); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--transition);
}
.navbar__links a:hover { color: var(--brand); }

.navbar__cta { display: flex; gap: .75rem; }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: .3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.navbar__burger span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar.scrolled .navbar__burger span {
  background: var(--navy);
}
.navbar__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(0,87,255,.1);
  padding: 1rem 1.5rem 1.5rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}
.navbar__mobile.open { display: block; }
.navbar__mobile nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.navbar__mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}
.navbar__mobile-link:hover { color: var(--brand); }
.navbar__mobile-cta { margin-top: .5rem; text-align: center; }

.navbar__mobile-dropdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.navbar__mobile-dropdown-trigger {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: color var(--transition);
}
.navbar__mobile-dropdown-trigger i {
  transition: transform var(--transition);
  font-size: 0.75rem;
  color: var(--brand);
  flex-shrink: 0;
}
.navbar__mobile-dropdown-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.navbar__mobile-dropdown-trigger:hover {
  color: var(--brand);
}

.navbar__mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 2px solid rgba(0,87,255,.2);
  margin-left: 0.5rem;
  margin-top: 0.25rem;
}
.navbar__mobile-dropdown-menu.open {
  display: flex;
}
.navbar__mobile-dropdown-item {
  font-size: 0.9rem;
  color: var(--slate);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color var(--transition);
  display: block;
}
.navbar__mobile-dropdown-item:hover {
  color: var(--brand);
}

/* ══════════════════════════════════════════
   NAVBAR — DROPDOWN (Funciones / Soluciones)
══════════════════════════════════════════ */
.navbar__dropdown { position: relative; }

.navbar__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  transition: color var(--transition);
  padding-bottom: .75rem;
  margin-bottom: -.75rem;
}
.navbar__dropdown-trigger:hover { color: var(--brand); }

/* Chevron rotates when dropdown is open */
.navbar__dropdown-trigger i {
  transition: transform var(--transition);
}
.navbar__dropdown:hover .navbar__dropdown-trigger i {
  transform: rotate(-180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + .25rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid rgba(0,87,255,.1);
  border-radius: 1rem;
  /* Layered shadow: tight ambient + deep diffuse */
  box-shadow:
    0 2px 4px rgba(11,30,61,.06),
    0 8px 16px rgba(11,30,61,.08),
    0 20px 52px rgba(11,30,61,.13);
  padding: .75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .375rem;
  width: 488px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}

/* Bridge gap so hover doesn't close when moving cursor down */
.navbar__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border-radius: .75rem;
  color: var(--navy);
  font-size: .8125rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}
.navbar__dropdown-item:hover {
  background: var(--ice);
  color: var(--brand);
  transform: translateY(-1px);
}

.navbar__dropdown-icon {
  width: 2rem;
  height: 2rem;
  border-radius: .5rem;
  background: var(--ice);
  border: 1px solid rgba(0,87,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  color: var(--brand);
  flex-shrink: 0;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}
.navbar__dropdown-item:hover .navbar__dropdown-icon {
  background: rgba(0,87,255,.1);
  border-color: rgba(0,87,255,.3);
  transform: scale(1.1);
}

/* Dropdown Soluciones — single column + header */
.navbar__dropdown-menu--soluciones {
  grid-template-columns: 1fr;
  width: 340px;
}

.navbar__dropdown-header {
  grid-column: 1 / -1;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate);
  padding: .25rem 1rem .5rem;
}

.navbar__dropdown-item--full { grid-column: 1 / -1; }

.navbar__dropdown-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.navbar__dropdown-title {
  font-weight: 600;
  font-size: .8125rem;
  color: var(--navy);
  line-height: 1.2;
  transition: color var(--transition);
}

.navbar__dropdown-desc {
  font-size: .725rem;
  color: var(--slate);
  font-weight: 400;
  transition: color var(--transition);
}

.navbar__dropdown-item:hover .navbar__dropdown-title { color: var(--brand); }
.navbar__dropdown-item:hover .navbar__dropdown-desc  { color: var(--brand-lt); }

/* ══════════════════════════════════════════
   HERO (home)
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__blob--1 {
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: rgba(0,87,255,.2);
}
.hero__blob--2 {
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: rgba(0,87,255,.1);
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 7rem 8% 4rem;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 38rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .5rem;
}

.hero__card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  position: relative;
  z-index: 3;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 1.25rem;
  padding: 2rem;
  width: 340px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__card-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__card-avatar {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(0,87,255,.4);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  flex-shrink: 0;
}

.hero__card-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.hero__card-doc {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: .125rem;
}

.hero__card-status {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(34,197,94,.2);
  border: 1px solid rgba(74,222,128,.3);
  border-radius: .75rem;
  padding: .75rem 1rem;
  margin-bottom: 1.5rem;
}

.ping-dot {
  position: relative;
  display: inline-flex;
  width: .625rem;
  height: .625rem;
  flex-shrink: 0;
}
.ping-dot__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4ade80;
  animation: ping 1.2s ease-out infinite;
  opacity: .75;
}
.ping-dot__core {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #4ade80;
}

.hero__card-status-label {
  font-weight: 600;
  font-size: .875rem;
  color: #86efac;
}
.hero__card-status-time {
  font-size: .75rem;
  color: rgba(134,239,172,.7);
  margin-top: .125rem;
}

.hero__card-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.45;
}
.hero__card-steps li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.hero__card-steps .check-icon { color: var(--brand-lt); }

.hero__card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}
.pulse-dot {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--brand-lt);
  animation: pulse 2s infinite;
}

/* ══════════════════════════════════════════
   HERO — MOCKUP SCENE
══════════════════════════════════════════ */
.hero__mockup-scene {
  position: relative;
  width: 560px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__mockup {
  position: absolute;
  background: rgba(13,24,41,.88);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  width: 190px;
}

.hero__mockup--liveness { left: 0;    top: 30px;    transform: rotate(-4deg); z-index: 2; }
.hero__mockup--dni      { right: 0;   bottom: 30px; transform: rotate(4deg);  z-index: 2; }

.hero__mockup-bar {
  background: rgba(255,255,255,.07);
  padding: .5rem .75rem;
  display: flex; align-items: center; gap: .35rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero__mockup-dot { width: .5rem; height: .5rem; border-radius: 50%; flex-shrink: 0; }
.hero__mockup-dot--red    { background: #f87171; }
.hero__mockup-dot--yellow { background: #fbbf24; }
.hero__mockup-dot--green  { background: #4ade80; }
.hero__mockup-title { font-size: .6rem; color: rgba(255,255,255,.45); margin-left: .4rem; font-family: monospace; }

.hero__mockup-body     { padding: .75rem; display: flex; flex-direction: column; gap: .5rem; }
.hero__mockup-label    { font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.85); font-family: var(--font-head); }
.hero__mockup-sublabel { font-size: .6rem;  color: rgba(255,255,255,.35); }

.hero__mockup-face-wrap { display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: .5rem 0; }
.hero__mockup-face-oval {
  position: relative;
  width: 64px; height: 80px;
  border: 2px solid var(--brand-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,87,255,.1);
}
.hero__mockup-face-icon { font-size: 1.75rem; color: rgba(255,255,255,.3); }
.hero__mockup-face-ring { position: absolute; inset: -4px; border-radius: 50%; border: 1.5px dashed rgba(61,127,255,.4); }
.hero__mockup-hint      { font-size: .6rem; color: rgba(255,255,255,.5); text-align: center; }

.hero__mockup-dni-wrap {
  background: rgba(0,87,255,.1);
  border: 1.5px dashed rgba(61,127,255,.4);
  border-radius: .5rem; padding: .75rem;
  display: flex; align-items: center; justify-content: center;
}
.hero__mockup-dni-icon { font-size: 2rem; color: var(--brand-lt); }

.hero__mockup-btn-row { display: flex; justify-content: center; padding-top: .25rem; }
.hero__mockup-pill-btn {
  background: var(--brand); color: #fff;
  font-size: .6rem; font-weight: 600;
  padding: .35rem .9rem; border-radius: 999px;
  font-family: var(--font-body);
}

.hero__badge-float {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: .75rem; padding: .5rem .85rem;
  backdrop-filter: blur(8px); color: #fff;
  white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.hero__badge-float i            { font-size: .95rem; color: var(--brand-lt); flex-shrink: 0; }
.hero__badge-float-title        { font-weight: 700; font-size: .7rem; color: #fff; font-family: var(--font-head); }
.hero__badge-float-sub          { font-size: .6rem; color: rgba(255,255,255,.5); margin-top: .1rem; }
.hero__badge-float--otp         { bottom: 0;   left: 20px;  }
.hero__badge-float--sign        { top: 0;      right: 20px; }

/* ══════════════════════════════════════════
   METRICS
══════════════════════════════════════════ */
.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: background var(--transition);
}
.metric:hover { background: rgba(255,255,255,.1); }

.metric__icon {
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  background: rgba(0,87,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--brand-lt);
}
.metric__value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: .25rem;
}
.metric__label {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   INTEGRATION
══════════════════════════════════════════ */
.integration__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.integration__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step { display: flex; gap: 1.5rem; }
.step__number {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
}
.step__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--navy);
  margin-bottom: .25rem;
}
.step__desc {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   CODE BLOCK
══════════════════════════════════════════ */
.code-block {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(11,30,61,.1);
  box-shadow: 0 16px 48px rgba(11,30,61,.08);
}
.code-block__chrome {
  background: var(--navy);
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.code-block__dot { width: .75rem; height: .75rem; border-radius: 50%; }
.code-block__dot--red    { background: #f87171; }
.code-block__dot--yellow { background: #fbbf24; }
.code-block__dot--green  { background: #4ade80; }
.code-block__filename {
  margin-left: 1rem;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  font-family: monospace;
}
.code-block__body {
  background: #0d1829;
  padding: 1.5rem;
  overflow-x: auto;
}
.code-block__body code {
  font-family: 'Courier New', Courier, monospace;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  white-space: pre;
}

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(11,30,61,.08);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card--highlighted {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 24px 60px rgba(0,87,255,.3);
  outline: 2px solid var(--brand);
}

.pricing-card__badge {
  position: absolute;
  top: -1.125rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .375rem 1rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: .375rem;
  white-space: nowrap;
}

.pricing-card__name        { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--navy); margin-bottom: .25rem; }
.pricing-card__name--white { color: #fff; }
.pricing-card__desc        { font-size: .875rem; color: var(--slate); line-height: 1.5; }
.pricing-card__desc--white { color: rgba(255,255,255,.7); }

.pricing-card__price-block { display: flex; align-items: flex-end; gap: .25rem; }
.pricing-card__price        { font-family: var(--font-head); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--navy); }
.pricing-card__price--white { color: #fff; }
.pricing-card__period        { font-size: .875rem; color: var(--slate); padding-bottom: .375rem; }
.pricing-card__period--white { color: rgba(255,255,255,.6); }

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.45;
}
.pricing-card__features--white li   { color: rgba(255,255,255,.9); }
.pricing-card__features--white li i { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact__copy { display: flex; flex-direction: column; gap: 1.5rem; }

.contact__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.15;
}

.contact__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

.contact__badges { display: flex; flex-wrap: wrap; gap: .75rem; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  font-weight: 500;
  padding: .375rem 1rem;
  border-radius: var(--radius-pill);
}
.trust-badge i { color: var(--brand-lt); }

.contact__form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; }

.form-input {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .875rem;
  color: #fff;
  outline: none;
  transition: border-color var(--transition);
}
.form-input::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus { border-color: var(--brand-lt); }

.form-textarea { resize: none; }

.btn--submit {
  padding: .875rem;
  border-radius: .75rem;
  font-size: .875rem;
  cursor: pointer;
}

.contact__success {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  text-align: center;
  color: #fff;
}
.contact__success-icon {
  font-size: 3.5rem;
  color: #4ade80;
  margin-bottom: 1rem;
  display: block;
}
.contact__success p { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--navy); color: #fff; }

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}
.footer__logo-icon {
  width: 1.75rem; height: 1.75rem;
  border-radius: .375rem;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  color: #fff;
}
.footer__logo-img { height: 30px; width: auto; }

.footer__copy { font-size: .75rem; color: rgba(255,255,255,.4); text-align: center; }

.footer__links { display: flex; gap: 1.5rem; }
.footer__links a {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }

/* ══════════════════════════════════════════
   FEATURE HERO (páginas de funcionalidad)
══════════════════════════════════════════ */
.feature-hero {
  background: var(--navy);
  color: #fff;
  padding: 8rem 8% 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.feature-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-hero__back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.feature-hero__back:hover { color: #fff; }

.feature-hero__copy { display: flex; flex-direction: column; gap: 1.25rem; }

.feature-hero__icon {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  background: rgba(0,87,255,.3);
  border: 1px solid rgba(61,127,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--brand-lt);
}

.feature-hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}
.feature-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 36rem;
}
.feature-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 36rem;
}
.feature-hero__bullets li {
  display: flex;
  gap: .6rem;
  font-size: .975rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.feature-hero__bullets li i {
  color: var(--brand-lt);
  margin-top: .2rem;
  flex-shrink: 0;
}
.feature-hero__bullets li strong {
  color: #fff;
}
.feature-hero__visual { display: flex; justify-content: center; }

.feature-hero__mockup {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 320px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.feature-hero__mockup-face {
  width: 120px; height: 140px;
  border: 2px solid var(--brand-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,.3);
  background: rgba(0,87,255,.1);
}
.feature-hero__mockup p   { font-size: .875rem; color: rgba(255,255,255,.5); text-align: center; }
.feature-hero__mockup-btn {
  background: var(--brand);
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
  padding: .6rem 1.5rem;
  border-radius: 999px;
}
.feature-hero__mockup-icon { font-size: 4.5rem; color: var(--brand-lt); }

.feature-hero__mockup-progress {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  overflow: hidden;
}
.feature-hero__mockup-progress-fill {
  height: 100%;
  width: 65%;
  background: var(--brand-lt);
  border-radius: 999px;
}

.feature-hero__mockup-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 999px;
}
.feature-hero__mockup-badge--green { background: rgba(74,222,128,.15); color: #4ade80; }
.feature-hero__mockup-badge--blue  { background: rgba(61,127,255,.15);  color: var(--brand-lt); }

.feature-hero__mockup-compare {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  justify-content: center;
}
.feature-hero__mockup-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--brand-lt);
  background: rgba(0,87,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: rgba(255,255,255,.4);
}
.feature-hero__mockup-arrow { color: var(--brand-lt); font-size: 1.25rem; }

.feature-hero__mockup-otp { display: flex; gap: .4rem; }
.feature-hero__mockup-otp-box {
  width: 36px; height: 44px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: .5rem;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.feature-hero__mockup-otp-box--filled { border-color: var(--brand-lt); background: rgba(61,127,255,.15); }

.feature-hero__mockup-form  { width: 100%; display: flex; flex-direction: column; gap: .5rem; }
.feature-hero__mockup-field {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .5rem;
  padding: .5rem .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.feature-hero__mockup-field i { color: var(--brand-lt); font-size: .8rem; }

.feature-hero__mockup-table { width: 100%; display: flex; flex-direction: column; gap: .35rem; }
.feature-hero__mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.05);
  border-radius: .5rem;
  padding: .4rem .6rem;
  font-size: .68rem;
}
.feature-hero__mockup-row-label { color: rgba(255,255,255,.7); }
.feature-hero__mockup-row-time  { color: rgba(255,255,255,.3); font-size: .62rem; }

.feature-hero__mockup-map {
  width: 100%;
  height: 100px;
  background: rgba(0,87,255,.08);
  border: 1px solid rgba(61,127,255,.2);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.feature-hero__mockup-map-grid {
  position: absolute; inset: 0;
  background-image:
          linear-gradient(rgba(61,127,255,.08) 1px, transparent 1px),
          linear-gradient(90deg, rgba(61,127,255,.08) 1px, transparent 1px);
  background-size: 20px 20px;
}
.feature-hero__mockup-map-pin { font-size: 1.75rem; color: var(--brand-lt); position: relative; z-index: 1; }
.feature-hero__mockup-info-row { display: flex; gap: .5rem; width: 100%; }
.feature-hero__mockup-info-chip {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .5rem;
  padding: .4rem .5rem;
  font-size: .62rem;
  color: rgba(255,255,255,.5);
  text-align: center;
}
.feature-hero__mockup-info-chip strong { display: block; color: var(--brand-lt); font-size: .68rem; }

/* ══════════════════════════════════════════
   PÁGINAS DE SOLUCIÓN — HERO (claro, centrado)
══════════════════════════════════════════ */
.solucion-hero {
  background: linear-gradient(135deg, #EEF4FF 0%, #DBEAFE 60%, #EEF4FF 100%);
  color: var(--navy);
  padding: 9rem 8% 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solucion-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(0,87,255,.06);
  pointer-events: none;
}

.solucion-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(0,87,255,.04);
  pointer-events: none;
}

.solucion-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.solucion-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--slate);
  margin-bottom: .25rem;
}
.solucion-hero__breadcrumb a { color: var(--slate); transition: color var(--transition); }
.solucion-hero__breadcrumb a:hover { color: var(--brand); }
.solucion-hero__breadcrumb-sep { color: rgba(90,106,133,.4); font-size: .7rem; }
.solucion-hero__breadcrumb-current { color: var(--brand); font-weight: 600; }

.solucion-hero__title,
.solucion-hero__title_t {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  margin-top: .25rem;
}
.solucion-hero__title {
  color: var(--navy);
}
.solucion-hero__title_t {
  color: white;
}

.solucion-hero__highlight {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--brand);
  line-height: 1.3;
}

.solucion-hero__desc {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  max-width: 600px;
}

.solucion-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: .5rem;
}

.solucion-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: .75rem;
}
.solucion-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(11,30,61,.1);
  border-radius: var(--radius-pill);
  padding: .35rem .9rem;
  font-size: .75rem;
  font-weight: 500;
  color: var(--navy);
  backdrop-filter: blur(4px);
}
.solucion-hero__trust-item i { color: var(--brand); font-size: .8rem; }

/* Botón outline oscuro (para fondos claros) */
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(11,30,61,.25);
}
.btn--outline-dark:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--ice);
}

/* Stats bar */
.solucion-stats {
  background: var(--white);
  border-top: 1px solid rgba(11,30,61,.06);
  border-bottom: 1px solid rgba(11,30,61,.06);
  padding: 2.5rem 0;
}
.solucion-stats__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.solucion-stat { text-align: center; padding: 0 2rem; }
.solucion-stat + .solucion-stat { border-left: 1px solid rgba(11,30,61,.08); }
.solucion-stat__value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: .35rem;
}
.solucion-stat__label {
  font-size: .8125rem;
  color: var(--slate);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   PÁGINAS DE SOLUCIÓN — CARDS
══════════════════════════════════════════ */
.solucion-card {
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.solucion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37,99,235,.15);
}

/* ══════════════════════════════════════════
   PÁGINAS DE SOLUCIÓN — IMPACTO
══════════════════════════════════════════ */
.solucion-impacto {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.solucion-impacto__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(11,30,61,.08);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.solucion-impacto__item:hover {
  border-color: rgba(0,87,255,.2);
  box-shadow: 0 8px 24px rgba(0,87,255,.07);
}

.solucion-impacto__icon {
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  background: var(--ice);
  border: 1px solid rgba(0,87,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--brand);
  flex-shrink: 0;
}

.solucion-impacto__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .3rem;
}

.solucion-impacto__desc {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   PÁGINAS DE SOLUCIÓN — QUOTE
══════════════════════════════════════════ */
.solucion-quote {
  background: var(--navy);
  padding: 5rem 8%;
  position: relative;
  overflow: hidden;
}

.solucion-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,87,255,.15) 0%, transparent 60%);
  pointer-events: none;
}

.solucion-quote__inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.solucion-quote__marks {
  font-size: 5rem;
  line-height: .8;
  color: var(--brand-lt);
  font-family: Georgia, serif;
  opacity: .6;
}

.solucion-quote__text {
  font-family: var(--font-head);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  line-height: 1.65;
}

.solucion-quote__brand { display: flex; align-items: center; gap: .75rem; padding-top: .5rem; }

.solucion-quote__logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .6;
}

/* ══════════════════════════════════════════
   PÁGINAS DE SOLUCIÓN — CTA FINAL
══════════════════════════════════════════ */
.solucion-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 0;
}

.solucion-cta__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy);
  line-height: 1.15;
}

.solucion-cta__sub {
  font-size: 1rem;
  color: var(--slate);
  max-width: 36rem;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid--4           { grid-template-columns: repeat(2, 1fr); }
  .integration__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact__grid     { grid-template-columns: 1fr; gap: 3rem; }
  .solucion-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .solucion-hero__visual { display: none; }
}

@media (max-width: 768px) {
  .navbar__links  { display: none; }
  .navbar__cta    { display: none; }
  .navbar__burger { display: flex; }

  .hero__grid      { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero__card-wrap { display: none; }

  .grid--2       { grid-template-columns: 1fr; }
  .grid--3       { grid-template-columns: 1fr; }
  .grid--4       { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }

  .hero__mockup-scene  { display: none; }
  .feature-hero__inner { grid-template-columns: 1fr; }
  .feature-hero__visual { display: none; }

  .solucion-hero  { padding: 7rem 5% 4rem; }
  .solucion-hero__breadcrumb { display: none; }
  .solucion-cards { grid-template-columns: 1fr; }
  .solucion-quote { padding: 4rem 5%; }
  .solucion-stats__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .solucion-stat + .solucion-stat { border-left: none; border-top: 1px solid rgba(11,30,61,.08); padding-top: 1.5rem; }
}

@media (max-width: 480px) {
  .grid--4       { grid-template-columns: 1fr; }
  .hero__title   { font-size: 2rem; }
  .hero__ctas    { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-direction: column; align-items: center; gap: .75rem; }
}

.fin-problema__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fin-problema__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fin-problema__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  color: var(--navy);
  line-height: 1.2;
}

.fin-problema__text {
  font-size: .9375rem;
  color: var(--slate);
  line-height: 1.75;
}

.fin-problema__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: .25rem;
}

.fin-problema__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--slate);
}

.fin-problema__list li i {
  color: #f87171;
  font-size: 1rem;
  flex-shrink: 0;
}

.fin-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  background: var(--ice);
  border: 1px solid rgba(0,87,255,.1);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
}

.fin-flow__step {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .875rem 1.25rem;
  border-radius: .875rem;
  border: 1px solid transparent;
}

.fin-flow__step--bad {
  background: rgba(248,113,113,.07);
  border-color: rgba(248,113,113,.2);
}

.fin-flow__step--good {
  background: rgba(0,87,255,.07);
  border-color: rgba(0,87,255,.2);
}

.fin-flow__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fin-flow__step--bad .fin-flow__icon {
  background: rgba(248,113,113,.15);
  color: #ef4444;
}

.fin-flow__step--good .fin-flow__icon {
  background: rgba(0,87,255,.15);
  color: var(--brand);
}

.fin-flow__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  color: var(--navy);
  line-height: 1.2;
}

.fin-flow__sub {
  font-size: .75rem;
  color: var(--slate);
  margin-top: .15rem;
}

.fin-flow__arrow {
  color: var(--slate);
  font-size: .875rem;
  opacity: .4;
  padding: .125rem 0;
}

.fin-flow__arrow--vs {
  opacity: 1;
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  color: var(--slate);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .5rem 0;
}

.fin-flow__arrow--vs::before,
.fin-flow__arrow--vs::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,87,255,.2);
}

.fin-flow__arrow--vs span {
  color: var(--brand);
  white-space: nowrap;
}

.fin-impacto-card {
  background: var(--white);
  border: 1px solid rgba(11,30,61,.08);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.fin-impacto-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--brand);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.fin-impacto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,87,255,.12);
  border-color: rgba(0,87,255,.2);
}

.fin-impacto-card:hover::after { transform: scaleX(1); }

.fin-impacto-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}

.fin-impacto-card--featured .fin-impacto-card__title { color: #fff; }
.fin-impacto-card--featured .fin-impacto-card__desc  { color: rgba(255,255,255,.65); }
.fin-impacto-card--featured .fin-impacto-card__icon  { background: rgba(255,255,255,.1); color: var(--brand-lt); border-color: rgba(255,255,255,.15); }
.fin-impacto-card--featured .fin-impacto-card__metric { background: rgba(61,127,255,.2); color: var(--brand-lt); border-color: rgba(61,127,255,.3); }
.fin-impacto-card--featured::after { background: var(--brand-lt); }

.fin-impacto-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
  background: var(--ice);
  border: 1px solid rgba(0,87,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--brand);
}

.fin-impacto-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--navy);
  line-height: 1.25;
}

.fin-impacto-card__desc {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
}

.fin-impacto-card__metric {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  color: var(--brand);
  background: var(--ice);
  border: 1px solid rgba(0,87,255,.2);
  padding: .3rem .85rem;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .fin-problema__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .fin-flow { display: none; }
}
/* ══════════════════════════════════════════
   FONTS
══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ══════════════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════════════ */
:root {
  --navy:      #0B1E3D;
  --brand:     #0057FF;
  --brand-lt:  #3D7FFF;
  --ice:       #EEF4FF;
  --white:     #FFFFFF;
  --slate:     #5A6A85;
  --border:    rgba(0, 87, 255, 0.15);

  --font-head: 'Inter', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-card: 1rem;
  --radius-pill: 9999px;
  --shadow-card: 0 4px 24px rgba(0,87,255,.08);
  --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--navy); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.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; }
.brand       { color: var(--brand); }
.brand-light { color: var(--brand-lt); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}
@keyframes ping {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.8); opacity: 0;  }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.float-anim { animation: float 5s ease-in-out infinite; }
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn--primary       { background: var(--brand);   color: #fff; }
.btn--primary:hover { background: var(--brand-lt); }
.btn--outline-white       { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn--outline-dark       { background: transparent; color: var(--navy); border: 1.5px solid rgba(11,30,61,.25); }
.btn--outline-dark:hover  { border-color: var(--brand); color: var(--brand); background: var(--ice); }
.btn--white-on-brand       { background: #fff; color: var(--brand); }
.btn--white-on-brand:hover { background: var(--ice); }
.btn--pill   { border-radius: var(--radius-pill); padding: .75rem 1.75rem; }
.btn--sm     { padding: .5rem 1.25rem; font-size: .8125rem; }
.btn--full   { width: 100%; }
.btn--shadow { box-shadow: 0 8px 24px rgba(0,87,255,.3); }

/* ══════════════════════════════════════════
   BADGES
══════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  padding: .375rem 1rem;
  border-radius: var(--radius-pill);
}
.badge__dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--brand-lt); animation: pulse 2s infinite; }
.badge--brand         { color: var(--brand);    background: var(--ice); border: 1px solid rgba(0,87,255,.2); }
.badge--white         { color: var(--brand);    background: #fff;       border: 1px solid rgba(0,87,255,.2); }
.badge--outline-white { color: var(--brand-lt); background: rgba(255,255,255,.1); border: 1px solid rgba(61,127,255,.4); }

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 8%; }
.section        { padding: 6rem 0; }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy);  }
.section--ice   { background: var(--ice);   }

.section__header { text-align: center; margin-bottom: 4rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.section__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); color: var(--navy); line-height: 1.15; }
.section__title--white { color: #fff; }
.section__subtitle { font-size: 1.125rem; color: var(--slate); max-width: 38rem; text-align: center; }

.grid    { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ══════════════════════════════════════════
   CARDS
══════════════════════════════════════════ */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(11,30,61,.08);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.card:hover { border-color: rgba(0,87,255,.3); box-shadow: 0 12px 32px rgba(0,87,255,.08); }
.card::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--brand); border-radius: 0 0 var(--radius-card) var(--radius-card); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.card:hover::after { transform: scaleX(1); }
.card__icon { width: 3rem; height: 3rem; border-radius: .75rem; background: var(--ice); border: 1px solid rgba(0,87,255,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.25rem; color: var(--brand); transition: background var(--transition); }
.card:hover .card__icon { background: rgba(0,87,255,.1); }
.card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.0625rem; color: var(--navy); margin-bottom: .5rem; }
.card__desc  { font-size: .875rem; color: var(--slate); line-height: 1.65; }
.card__list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; font-size: .875rem; color: var(--slate); }
.card__list li { display: flex; align-items: flex-start; gap: .5rem; }
.check-icon { color: var(--brand); flex-shrink: 0; margin-top: .15rem; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background var(--transition), box-shadow var(--transition), border-color var(--transition); }
.navbar.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 12px rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,87,255,.1); }
.navbar__inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; height: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.navbar__logo { display: flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: #fff; }
.navbar.scrolled .navbar__logo { color: var(--navy); }
.navbar__logo-icon-img { height: 32px; width: auto; object-fit: contain; }
.navbar__logo-text  { display: flex; align-items: baseline; gap: .05em; }
.navbar__logo-brand { color: var(--brand); }
.navbar__links { display: flex; align-items: center; gap: 2rem; }
.navbar__links a { font-size: .875rem; font-weight: 500; color: var(--slate); transition: color var(--transition); }
.navbar__links a:hover { color: var(--brand); }
.navbar__cta { display: flex; gap: .75rem; }
.navbar__burger { display: none; flex-direction: column; gap: .3rem; background: none; border: none; cursor: pointer; padding: .25rem; }
.navbar__burger span { display: block; width: 1.25rem; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); } .navbar.scrolled .navbar__burger span { background: var(--navy); }
.navbar__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.navbar__mobile { display: none; background: var(--white); border-top: 1px solid rgba(0,87,255,.1); padding: 1rem 1.5rem 1.5rem; max-height: calc(100vh - 4rem); overflow-y: auto; }
.navbar__mobile.open { display: block; }
.navbar__mobile nav { display: flex; flex-direction: column; gap: 1rem; }
.navbar__mobile-link { font-size: 1rem; font-weight: 500; color: var(--navy); transition: color var(--transition); }
.navbar__mobile-link:hover { color: var(--brand); }
.navbar__mobile-cta { margin-top: .5rem; text-align: center; }

/* ══════════════════════════════════════════
   HERO (home)
══════════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; background: var(--navy); color: #fff; overflow: hidden; }
.hero__blobs { position: absolute; inset: 0; pointer-events: none; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero__blob--1 { top: -10%; right: -5%; width: 500px; height: 500px; background: rgba(0,87,255,.2); }
.hero__blob--2 { bottom: -10%; left: -5%; width: 400px; height: 400px; background: rgba(0,87,255,.1); }
.hero__grid { position: relative; z-index: 1; min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; padding: 7rem 8% 4rem; }
.hero__copy { display: flex; flex-direction: column; gap: 1.5rem; }
.hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.75rem); line-height: 1.1; }
.hero__subtitle { font-size: 1.125rem; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 38rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .5rem; }
.hero__card-wrap { display: flex; justify-content: center; align-items: center; }
.hero__card { position: relative; z-index: 3; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 1.25rem; padding: 2rem; width: 340px; box-shadow: 0 24px 60px rgba(0,0,0,.3); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero__card-user { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.hero__card-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(0,87,255,.4); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1.125rem; color: #fff; flex-shrink: 0; }
.hero__card-name { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1rem; line-height: 1.2; }
.hero__card-doc { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .125rem; }
.hero__card-status { display: flex; align-items: center; gap: .75rem; background: rgba(34,197,94,.2); border: 1px solid rgba(74,222,128,.3); border-radius: .75rem; padding: .75rem 1rem; margin-bottom: 1.5rem; }
.ping-dot { position: relative; display: inline-flex; width: .625rem; height: .625rem; flex-shrink: 0; }
.ping-dot__ring { position: absolute; inset: 0; border-radius: 50%; background: #4ade80; animation: ping 1.2s ease-out infinite; opacity: .75; }
.ping-dot__core { position: relative; width: 100%; height: 100%; border-radius: 50%; background: #4ade80; }
.hero__card-status-label { font-weight: 600; font-size: .875rem; color: #86efac; }
.hero__card-status-time  { font-size: .75rem; color: rgba(134,239,172,.7); margin-top: .125rem; }
.hero__card-steps { list-style: none; display: flex; flex-direction: column; gap: .75rem; font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.45; }
.hero__card-steps li { display: flex; align-items: flex-start; gap: .75rem; }
.hero__card-steps .check-icon { color: var(--brand-lt); }
.hero__card-footer { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: rgba(255,255,255,.4); }
.pulse-dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--brand-lt); animation: pulse 2s infinite; }

/* ── HERO MOCKUP SCENE ── */
.hero__mockup-scene { position: relative; width: 560px; height: 500px; display: flex; align-items: center; justify-content: center; }
.hero__mockup { position: absolute; background: rgba(13,24,41,.88); border: 1px solid rgba(255,255,255,.15); border-radius: 1rem; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.4); backdrop-filter: blur(6px); width: 190px; }
.hero__mockup--liveness { left: 0; top: 30px; transform: rotate(-4deg); z-index: 2; }
.hero__mockup--dni      { right: 0; bottom: 30px; transform: rotate(4deg); z-index: 2; }
.hero__mockup-bar { background: rgba(255,255,255,.07); padding: .5rem .75rem; display: flex; align-items: center; gap: .35rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero__mockup-dot { width: .5rem; height: .5rem; border-radius: 50%; flex-shrink: 0; }
.hero__mockup-dot--red    { background: #f87171; }
.hero__mockup-dot--yellow { background: #fbbf24; }
.hero__mockup-dot--green  { background: #4ade80; }
.hero__mockup-title { font-size: .6rem; color: rgba(255,255,255,.45); margin-left: .4rem; font-family: monospace; }
.hero__mockup-body     { padding: .75rem; display: flex; flex-direction: column; gap: .5rem; }
.hero__mockup-label    { font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.85); font-family: var(--font-head); }
.hero__mockup-sublabel { font-size: .6rem; color: rgba(255,255,255,.35); }
.hero__mockup-face-wrap { display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: .5rem 0; }
.hero__mockup-face-oval { position: relative; width: 64px; height: 80px; border: 2px solid var(--brand-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(0,87,255,.1); }
.hero__mockup-face-icon { font-size: 1.75rem; color: rgba(255,255,255,.3); }
.hero__mockup-face-ring { position: absolute; inset: -4px; border-radius: 50%; border: 1.5px dashed rgba(61,127,255,.4); }
.hero__mockup-hint { font-size: .6rem; color: rgba(255,255,255,.5); text-align: center; }
.hero__mockup-dni-wrap { background: rgba(0,87,255,.1); border: 1.5px dashed rgba(61,127,255,.4); border-radius: .5rem; padding: .75rem; display: flex; align-items: center; justify-content: center; }
.hero__mockup-dni-icon { font-size: 2rem; color: var(--brand-lt); }
.hero__mockup-btn-row  { display: flex; justify-content: center; padding-top: .25rem; }
.hero__mockup-pill-btn { background: var(--brand); color: #fff; font-size: .6rem; font-weight: 600; padding: .35rem .9rem; border-radius: 999px; font-family: var(--font-body); }
.hero__badge-float { position: absolute; z-index: 4; display: flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: .75rem; padding: .5rem .85rem; backdrop-filter: blur(8px); color: #fff; white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.hero__badge-float i         { font-size: .95rem; color: var(--brand-lt); flex-shrink: 0; }
.hero__badge-float-title     { font-weight: 700; font-size: .7rem; color: #fff; font-family: var(--font-head); }
.hero__badge-float-sub       { font-size: .6rem; color: rgba(255,255,255,.5); margin-top: .1rem; }
.hero__badge-float--otp  { bottom: 0; left: 20px; }
.hero__badge-float--sign { top: 0; right: 20px; }

/* ══════════════════════════════════════════
   METRICS (sección oscura home)
══════════════════════════════════════════ */
.metric { display: flex; flex-direction: column; align-items: center; text-align: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-card); padding: 2rem; transition: background var(--transition); }
.metric:hover { background: rgba(255,255,255,.1); }
.metric__icon { width: 3rem; height: 3rem; border-radius: .75rem; background: rgba(0,87,255,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.25rem; color: var(--brand-lt); }
.metric__value { font-family: var(--font-head); font-weight: 800; font-size: 2.5rem; color: #fff; line-height: 1; margin-bottom: .25rem; }
.metric__label { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.4; }

/* ══════════════════════════════════════════
   INTEGRATION
══════════════════════════════════════════ */
.integration__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.integration__steps { display: flex; flex-direction: column; gap: 2rem; }
.step { display: flex; gap: 1.5rem; }
.step__number { flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: .875rem; }
.step__title { font-family: var(--font-head); font-weight: 700; font-size: 1.0625rem; color: var(--navy); margin-bottom: .25rem; }
.step__desc  { font-size: .875rem; color: var(--slate); line-height: 1.65; }

/* ══════════════════════════════════════════
   CODE BLOCK
══════════════════════════════════════════ */
.code-block { border-radius: var(--radius-card); overflow: hidden; border: 1px solid rgba(11,30,61,.1); box-shadow: 0 16px 48px rgba(11,30,61,.08); }
.code-block__chrome { background: var(--navy); padding: .75rem 1.25rem; display: flex; align-items: center; gap: .5rem; }
.code-block__dot { width: .75rem; height: .75rem; border-radius: 50%; }
.code-block__dot--red    { background: #f87171; }
.code-block__dot--yellow { background: #fbbf24; }
.code-block__dot--green  { background: #4ade80; }
.code-block__filename { margin-left: 1rem; font-size: .75rem; color: rgba(255,255,255,.4); font-family: monospace; }
.code-block__body { background: #0d1829; padding: 1.5rem; overflow-x: auto; }
.code-block__body code { font-family: 'Courier New', Courier, monospace; font-size: .875rem; color: rgba(255,255,255,.8); line-height: 1.75; white-space: pre; }

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card { position: relative; background: var(--white); border: 1px solid rgba(11,30,61,.08); border-radius: var(--radius-card); padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.pricing-card--highlighted { background: var(--brand); border-color: var(--brand); box-shadow: 0 24px 60px rgba(0,87,255,.3); outline: 2px solid var(--brand); }
.pricing-card__badge { position: absolute; top: -1.125rem; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; font-size: .75rem; font-weight: 700; padding: .375rem 1rem; border-radius: var(--radius-pill); display: flex; align-items: center; gap: .375rem; white-space: nowrap; }
.pricing-card__name        { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--navy); margin-bottom: .25rem; }
.pricing-card__name--white { color: #fff; }
.pricing-card__desc        { font-size: .875rem; color: var(--slate); line-height: 1.5; }
.pricing-card__desc--white { color: rgba(255,255,255,.7); }
.pricing-card__price-block { display: flex; align-items: flex-end; gap: .25rem; }
.pricing-card__price        { font-family: var(--font-head); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--navy); }
.pricing-card__price--white { color: #fff; }
.pricing-card__period        { font-size: .875rem; color: var(--slate); padding-bottom: .375rem; }
.pricing-card__period--white { color: rgba(255,255,255,.6); }
.pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--slate); line-height: 1.45; }
.pricing-card__features--white li   { color: rgba(255,255,255,.9); }
.pricing-card__features--white li i { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact__copy { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1.15; }
.contact__subtitle { font-size: 1.125rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.contact__badges { display: flex; flex-wrap: wrap; gap: .75rem; }
.trust-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.8); font-size: .75rem; font-weight: 500; padding: .375rem 1rem; border-radius: var(--radius-pill); }
.trust-badge i { color: var(--brand-lt); }
.contact__form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-card); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-input { width: 100%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: .75rem; padding: .75rem 1rem; font-family: var(--font-body); font-size: .875rem; color: #fff; outline: none; transition: border-color var(--transition); }
.form-input::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus { border-color: var(--brand-lt); }
.form-textarea { resize: none; }
.btn--submit { padding: .875rem; border-radius: .75rem; font-size: .875rem; cursor: pointer; }
.contact__success { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-card); padding: 2.5rem; text-align: center; color: #fff; }
.contact__success-icon { font-size: 3.5rem; color: #4ade80; margin-bottom: 1rem; display: block; }
.contact__success p { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--navy); color: #fff; }
.footer__inner { max-width: 1280px; margin: 0 auto; padding: 2.5rem 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer__logo { display: flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: 1.125rem; color: #fff; }
.footer__logo-icon { width: 1.75rem; height: 1.75rem; border-radius: .375rem; background: var(--brand); display: flex; align-items: center; justify-content: center; font-size: .8125rem; color: #fff; }
.footer__logo-img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.footer__copy { font-size: .75rem; color: rgba(255,255,255,.4); text-align: center; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { font-size: .75rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__links a:hover { color: #fff; }

/* ══════════════════════════════════════════
   FEATURE HERO (páginas de funcionalidad)
══════════════════════════════════════════ */
.feature-hero { background: var(--navy); color: #fff; padding: 8rem 8% 5rem; min-height: 90vh; display: flex; align-items: center; }
.feature-hero__inner { max-width: 1280px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-hero__back { display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.5); font-size: .875rem; margin-bottom: 1.5rem; transition: color var(--transition); }
.feature-hero__back:hover { color: #fff; }
.feature-hero__copy { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-hero__icon { width: 4rem; height: 4rem; border-radius: 1rem; background: rgba(0,87,255,.3); border: 1px solid rgba(61,127,255,.4); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--brand-lt); }
.feature-hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.feature-hero__subtitle { font-size: 1.125rem; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 36rem; }
.feature-hero__bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; max-width: 36rem; }
.feature-hero__bullets li { display: flex; gap: .6rem; font-size: .975rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.feature-hero__bullets li i { color: var(--brand-lt); margin-top: .2rem; flex-shrink: 0; }
.feature-hero__bullets li strong { color: #fff; }
.feature-hero__visual { display: flex; justify-content: center; }
.feature-hero__mockup { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 1.25rem; padding: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; min-width: 320px; box-shadow: 0 24px 64px rgba(0,0,0,.35); }
.feature-hero__mockup-face { width: 120px; height: 140px; border: 2px solid var(--brand-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: rgba(255,255,255,.3); background: rgba(0,87,255,.1); }
.feature-hero__mockup p { font-size: .875rem; color: rgba(255,255,255,.5); text-align: center; }
.feature-hero__mockup-btn { background: var(--brand); color: #fff; font-size: .8125rem; font-weight: 600; padding: .6rem 1.5rem; border-radius: 999px; }
.feature-hero__mockup-icon { font-size: 4.5rem; color: var(--brand-lt); }
.feature-hero__mockup-progress { width: 100%; height: 4px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.feature-hero__mockup-progress-fill { height: 100%; width: 65%; background: var(--brand-lt); border-radius: 999px; }
.feature-hero__mockup-badge { display: inline-flex; align-items: center; gap: .4rem; font-size: .7rem; font-weight: 700; padding: .35rem .85rem; border-radius: 999px; }
.feature-hero__mockup-badge--green { background: rgba(74,222,128,.15); color: #4ade80; }
.feature-hero__mockup-badge--blue  { background: rgba(61,127,255,.15); color: var(--brand-lt); }
.feature-hero__mockup-compare { display: flex; align-items: center; gap: .75rem; width: 100%; justify-content: center; }
.feature-hero__mockup-circle { width: 80px; height: 80px; border-radius: 50%; border: 2px solid var(--brand-lt); background: rgba(0,87,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: rgba(255,255,255,.4); }
.feature-hero__mockup-arrow { color: var(--brand-lt); font-size: 1.25rem; }
.feature-hero__mockup-otp { display: flex; gap: .4rem; }
.feature-hero__mockup-otp-box { width: 36px; height: 44px; border: 1.5px solid rgba(255,255,255,.2); border-radius: .5rem; background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: #fff; }
.feature-hero__mockup-otp-box--filled { border-color: var(--brand-lt); background: rgba(61,127,255,.15); }
.feature-hero__mockup-form  { width: 100%; display: flex; flex-direction: column; gap: .5rem; }
.feature-hero__mockup-field { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: .5rem; padding: .5rem .75rem; font-size: .75rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: .5rem; }
.feature-hero__mockup-field i { color: var(--brand-lt); font-size: .8rem; }
.feature-hero__mockup-table { width: 100%; display: flex; flex-direction: column; gap: .35rem; }
.feature-hero__mockup-row { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.05); border-radius: .5rem; padding: .4rem .6rem; font-size: .68rem; }
.feature-hero__mockup-row-label { color: rgba(255,255,255,.7); }
.feature-hero__mockup-row-time  { color: rgba(255,255,255,.3); font-size: .62rem; }
.feature-hero__mockup-map { width: 100%; height: 100px; background: rgba(0,87,255,.08); border: 1px solid rgba(61,127,255,.2); border-radius: .75rem; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.feature-hero__mockup-map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(61,127,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(61,127,255,.08) 1px, transparent 1px); background-size: 20px 20px; }
.feature-hero__mockup-map-pin { font-size: 1.75rem; color: var(--brand-lt); position: relative; z-index: 1; }
.feature-hero__mockup-info-row { display: flex; gap: .5rem; width: 100%; }
.feature-hero__mockup-info-chip { flex: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: .5rem; padding: .4rem .5rem; font-size: .62rem; color: rgba(255,255,255,.5); text-align: center; }
.feature-hero__mockup-info-chip strong { display: block; color: var(--brand-lt); font-size: .68rem; }

/* ══════════════════════════════════════════
   PÁGINAS DE SOLUCIÓN — HERO (claro, centrado)
══════════════════════════════════════════ */
.solucion-hero {
  background: linear-gradient(135deg, #EEF4FF 0%, #DBEAFE 60%, #EEF4FF 100%);
  color: var(--navy);
  padding: 9rem 8% 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.solucion-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 350px; height: 350px; border-radius: 50%; background: rgba(0,87,255,.06); pointer-events: none; }
.solucion-hero::after  { content: ''; position: absolute; bottom: -60px; left: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(0,87,255,.04); pointer-events: none; }

.solucion-hero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }

.solucion-hero__breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--slate); margin-bottom: .25rem; }
.solucion-hero__breadcrumb a { color: var(--slate); transition: color var(--transition); }
.solucion-hero__breadcrumb a:hover { color: var(--brand); }
.solucion-hero__breadcrumb-sep { color: rgba(90,106,133,.4); font-size: .7rem; }
.solucion-hero__breadcrumb-current { color: var(--brand); font-weight: 600; }

.solucion-hero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.1; color: var(--navy); margin-top: .25rem; }
.solucion-hero__highlight { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: var(--brand); line-height: 1.3; }
.solucion-hero__desc { font-size: 1rem; color: var(--slate); line-height: 1.75; max-width: 600px; }

.solucion-hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: .5rem; }

.solucion-hero__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: .75rem; }
.solucion-hero__trust-item { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.7); border: 1px solid rgba(11,30,61,.1); border-radius: var(--radius-pill); padding: .35rem .9rem; font-size: .75rem; font-weight: 500; color: var(--navy); backdrop-filter: blur(4px); }
.solucion-hero__trust-item i { color: var(--brand); font-size: .8rem; }

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.solucion-stats { background: var(--white); border-top: 1px solid rgba(11,30,61,.06); border-bottom: 1px solid rgba(11,30,61,.06); padding: 2.5rem 0; }
.solucion-stats__inner { max-width: 860px; margin: 0 auto; padding: 0 8%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.solucion-stat { text-align: center; padding: 0 2rem; }
.solucion-stat + .solucion-stat { border-left: 1px solid rgba(11,30,61,.08); }
.solucion-stat__value { font-family: var(--font-head); font-weight: 800; font-size: 2.25rem; color: var(--brand); line-height: 1; margin-bottom: .35rem; }
.solucion-stat__label { font-size: .8125rem; color: var(--slate); line-height: 1.4; }

/* ══════════════════════════════════════════
   SOLUCION CARDS (hover)
══════════════════════════════════════════ */
.solucion-card { transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.solucion-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(37,99,235,.15); }

/* ══════════════════════════════════════════
   SOLUCION — IMPACTO (lista horizontal)
══════════════════════════════════════════ */
.solucion-impacto { display: flex; flex-direction: column; gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.solucion-impacto__item { display: flex; align-items: flex-start; gap: 1.25rem; background: var(--white); border: 1px solid rgba(11,30,61,.08); border-radius: var(--radius-card); padding: 1.5rem 1.75rem; transition: box-shadow var(--transition), border-color var(--transition); }
.solucion-impacto__item:hover { border-color: rgba(0,87,255,.2); box-shadow: 0 8px 24px rgba(0,87,255,.07); }
.solucion-impacto__icon { width: 3rem; height: 3rem; border-radius: .75rem; background: var(--ice); border: 1px solid rgba(0,87,255,.15); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--brand); flex-shrink: 0; }
.solucion-impacto__title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: .3rem; }
.solucion-impacto__desc  { font-size: .875rem; color: var(--slate); line-height: 1.65; }

/* ══════════════════════════════════════════
   SOLUCION — QUOTE
══════════════════════════════════════════ */
.solucion-quote { background: var(--navy); padding: 5rem 8%; position: relative; overflow: hidden; }
.solucion-quote::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,87,255,.15) 0%, transparent 60%); pointer-events: none; }
.solucion-quote__inner { position: relative; max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.solucion-quote__marks { font-size: 5rem; line-height: .8; color: var(--brand-lt); font-family: Georgia, serif; opacity: .6; }
.solucion-quote__text  { font-family: var(--font-head); font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-style: italic; font-weight: 500; color: rgba(255,255,255,.9); line-height: 1.65; }
.solucion-quote__brand { display: flex; align-items: center; gap: .75rem; padding-top: .5rem; }
.solucion-quote__logo  { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: .6; }

/* ══════════════════════════════════════════
   SOLUCION — CTA FINAL
══════════════════════════════════════════ */
.solucion-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; padding: 2rem 0; }
.solucion-cta__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--navy); line-height: 1.15; }
.solucion-cta__sub   { font-size: 1rem; color: var(--slate); max-width: 36rem; }

/* ══════════════════════════════════════════
   FINANCIERO — PROBLEMA / FLOW
══════════════════════════════════════════ */
.fin-problema__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.fin-problema__copy { display: flex; flex-direction: column; gap: 1.25rem; }
.fin-problema__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.625rem, 3vw, 2.25rem); color: var(--navy); line-height: 1.2; }
.fin-problema__text  { font-size: .9375rem; color: var(--slate); line-height: 1.75; }
.fin-problema__list  { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-top: .25rem; }
.fin-problema__list li { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: var(--slate); }
.fin-problema__list li i { color: #f87171; font-size: 1rem; flex-shrink: 0; }

.fin-flow { display: flex; flex-direction: column; align-items: center; gap: .5rem; background: var(--ice); border: 1px solid rgba(0,87,255,.1); border-radius: 1.25rem; padding: 2rem 1.5rem; }
.fin-flow__step { width: 100%; display: flex; align-items: center; gap: 1rem; padding: .875rem 1.25rem; border-radius: .875rem; border: 1px solid transparent; }
.fin-flow__step--bad  { background: rgba(248,113,113,.07); border-color: rgba(248,113,113,.2); }
.fin-flow__step--good { background: rgba(0,87,255,.07);    border-color: rgba(0,87,255,.2); }
.fin-flow__icon { width: 2.5rem; height: 2.5rem; border-radius: .625rem; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.fin-flow__step--bad .fin-flow__icon  { background: rgba(248,113,113,.15); color: #ef4444; }
.fin-flow__step--good .fin-flow__icon { background: rgba(0,87,255,.15);    color: var(--brand); }
.fin-flow__label { font-family: var(--font-head); font-weight: 700; font-size: .875rem; color: var(--navy); line-height: 1.2; }
.fin-flow__sub   { font-size: .75rem; color: var(--slate); margin-top: .15rem; }
.fin-flow__arrow { color: var(--slate); font-size: .875rem; opacity: .4; padding: .125rem 0; }
.fin-flow__arrow--vs { opacity: 1; display: flex; align-items: center; gap: .75rem; width: 100%; color: var(--slate); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: .5rem 0; }
.fin-flow__arrow--vs::before, .fin-flow__arrow--vs::after { content: ''; flex: 1; height: 1px; background: rgba(0,87,255,.2); }
.fin-flow__arrow--vs span { color: var(--brand); white-space: nowrap; }

/* ══════════════════════════════════════════
   FINANCIERO — IMPACTO CARDS (3 cols)
══════════════════════════════════════════ */
.fin-impacto-card {
  background: var(--white);
  border: 1px solid rgba(11,30,61,.08);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.fin-impacto-card::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--brand); border-radius: 0 0 var(--radius-card) var(--radius-card); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.fin-impacto-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,87,255,.12); border-color: rgba(0,87,255,.2); }
.fin-impacto-card:hover::after { transform: scaleX(1); }

.fin-impacto-card--featured { background: var(--navy); border-color: var(--navy); }
.fin-impacto-card--featured .fin-impacto-card__title  { color: #fff; }
.fin-impacto-card--featured .fin-impacto-card__desc   { color: rgba(255,255,255,.65); }
.fin-impacto-card--featured .fin-impacto-card__icon   { background: rgba(255,255,255,.1); color: var(--brand-lt); border-color: rgba(255,255,255,.15); }
.fin-impacto-card--featured .fin-impacto-card__metric { background: rgba(61,127,255,.2); color: var(--brand-lt); border-color: rgba(61,127,255,.3); }
.fin-impacto-card--featured::after { background: var(--brand-lt); }

.fin-impacto-card__icon { width: 3rem; height: 3rem; border-radius: .75rem; background: var(--ice); border: 1px solid rgba(0,87,255,.15); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--brand); }
.fin-impacto-card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.0625rem; color: var(--navy); line-height: 1.25; }
.fin-impacto-card__desc  { font-size: .875rem; color: var(--slate); line-height: 1.65; flex: 1; }
.fin-impacto-card__metric { display: inline-flex; align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: .75rem; color: var(--brand); background: var(--ice); border: 1px solid rgba(0,87,255,.2); padding: .3rem .85rem; border-radius: 999px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid--4               { grid-template-columns: repeat(2, 1fr); }
  .integration__grid     { grid-template-columns: 1fr; gap: 3rem; }
  .contact__grid         { grid-template-columns: 1fr; gap: 3rem; }
  .fin-problema__grid    { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .navbar__links  { display: none; }
  .navbar__cta    { display: none; }
  .navbar__burger { display: flex; }

  .hero__grid      { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero__card-wrap { display: none; }

  .grid--2       { grid-template-columns: 1fr; }
  .grid--3       { grid-template-columns: 1fr; }
  .grid--4       { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }

  .hero__mockup-scene  { display: none; }
  .feature-hero__inner { grid-template-columns: 1fr; }
  .feature-hero__visual { display: none; }

  .solucion-hero { padding: 7rem 5% 4rem; }
  .solucion-hero__breadcrumb { display: none; }
  .solucion-cards { grid-template-columns: 1fr; }
  .solucion-quote { padding: 4rem 5%; }
  .solucion-stats__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .solucion-stat + .solucion-stat { border-left: none; border-top: 1px solid rgba(11,30,61,.08); padding-top: 1.5rem; }

  .fin-flow { display: none; }
}

@media (max-width: 480px) {
  .grid--4       { grid-template-columns: 1fr; }
  .hero__title   { font-size: 2rem; }
  .hero__ctas    { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-direction: column; align-items: center; gap: .75rem; }
}