/* ===================================================================
   FADSA — Bienestar Corporativo · Vanilla CSS (portable a Wix)
   =================================================================== */

:root {
  /* Brand palette (libro de marca) */
  --navy: #0F1B3F;
  --navy-2: #0A1A3D;
  --teal: #2EC4B6;
  --lime: #8BC53F;
  --orange: #F2A007;
  --white: #FFFFFF;
  --gray-bg: #F5F5F5;
  --ink: #14213a;
  --muted: #5a6478;

  /* Signature gradient: orange -> lime -> teal diagonal */
  --grad-signature: linear-gradient(135deg, #F2A007 0%, #8BC53F 50%, #2EC4B6 100%);
  --grad-text: linear-gradient(100deg, #8BC53F 0%, #F2A007 100%);
  --grad-soft: linear-gradient(160deg, #ffffff 0%, #f3faf2 100%);

  /* Type scale */
  --text-hero: clamp(2.2rem, 4.8vw, 4.8rem);
  --text-h2: clamp(2rem, 4.4vw, 3.6rem);
  --text-h3: clamp(1.3rem, 2.2vw, 1.8rem);
  --text-lead: clamp(1.05rem, 1.5vw, 1.3rem);

  /* Spacing */
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --container: 1240px;
  --radius: 20px;
  --radius-lg: 28px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-int: 220ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-md: 0 18px 40px -16px rgba(15, 27, 63, 0.22);
  --shadow-lg: 0 30px 70px -24px rgba(15, 27, 63, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "General Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  font-weight: 400;
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top var(--t-int);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ---------- Shared type ---------- */
.h2 { font-size: var(--text-h2); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: var(--navy); }
.h2.center { text-align: center; }
.h2.light { color: #fff; }
.lead { font-size: var(--text-lead); color: var(--muted); max-width: 56ch; }
.lead.light { color: rgba(255,255,255,.92); }
.kicker {
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700;
  font-size: 0.82rem; color: var(--teal); margin-bottom: 0.9rem;
}
.grad-text, .grad-word {
  background-image: var(--grad-text); background-size: 100% 100%;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important; color: transparent;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: 1rem; padding: 0.95rem 1.6rem; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent; line-height: 1;
  transition: transform var(--t-int), box-shadow var(--t-int), background var(--t-int), color var(--t-int), border-color var(--t-int);
}
.btn--solid { background: var(--grad-signature); color: #08122e; box-shadow: var(--shadow-md); }
.btn--solid:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--solid:active { transform: translateY(0); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--mini { padding: 0.6rem 1.1rem; font-size: 0.9rem; background: var(--grad-signature); color: #08122e; }
.btn--mini:hover { transform: translateY(-1px); }

/* ---------- Decorative spheres ---------- */
.sphere {
  position: absolute; left: var(--x); top: var(--y); width: var(--s); height: var(--s);
  border-radius: 50%; pointer-events: none; z-index: 2;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,.25);
}
.sphere--orange { background: radial-gradient(circle at 30% 30%, #ffce6e, #F2A007); }
.sphere--lime  { background: radial-gradient(circle at 30% 30%, #c3e88a, #8BC53F); }
.sphere--teal  { background: radial-gradient(circle at 30% 30%, #7fe0d6, #2EC4B6); }

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--t-int), box-shadow var(--t-int), backdrop-filter var(--t-int);
}
.nav.scrolled {
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(15,27,63,.08), 0 10px 30px -20px rgba(15,27,63,.4);
}
.nav__inner {
  width: min(100% - 2.6rem, var(--container)); margin-inline: auto;
  display: flex; align-items: center; gap: 1.4rem; padding: 1rem 0;
}
.nav__logo { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.nav__logo { position: relative; }
.nav__logo-img {
  display: block; height: 44px; width: auto; flex: none;
  transition: transform .25s ease, opacity .3s ease, filter .3s ease;
}
.nav__logo:hover .nav__logo-img { transform: scale(1.04); }
.nav__logo--light .nav__logo-img { height: 56px; }
.nav .nav__logo-img--light { filter: drop-shadow(0 1px 4px rgba(0,0,0,.5)) drop-shadow(0 0 12px rgba(0,0,0,.25)); }

/* Dual-logo swap in nav: white logo over hero, navy logo when scrolled */
.nav .nav__logo-img--color {
  position: absolute; top: 0; left: 0; opacity: 0; pointer-events: none;
}
.nav.scrolled .nav__logo-img--light { opacity: 0; }
.nav.scrolled .nav__logo-img--color { opacity: 1; position: static; }
.nav.scrolled .nav__logo-img--light { position: absolute; top: 0; left: 0; pointer-events: none; }
.nav__logo-text {
  display: flex; flex-direction: column; font-weight: 800; line-height: 1; color: var(--navy);
  font-size: 1.25rem; letter-spacing: -0.02em;
}
.nav__logo-text small { font-weight: 500; font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav:not(.scrolled) .nav__logo-text, .nav:not(.scrolled) .nav__logo-text small { color: #fff; }
.nav:not(.scrolled) .nav__logo-text small { color: rgba(255,255,255,.8); }

.nav__links { display: flex; gap: 1.6rem; font-weight: 600; }
.nav__links a { position: relative; color: #fff; padding: 4px 0; transition: color var(--t-int); }
.nav.scrolled .nav__links a { color: var(--navy); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--grad-signature); transition: width var(--t-int);
}
.nav__links a:hover::after { width: 100%; }

.nav__burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__burger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: var(--t-int); }
.nav.scrolled .nav__burger span { background: var(--navy); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: .2rem; background: #fff;
  padding: 1rem 1.3rem 1.6rem; box-shadow: var(--shadow-md);
}
.nav__mobile a { padding: .85rem .2rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid #eef0f4; }
.nav__mobile .btn { margin-top: .8rem; }
.nav__mobile.open { display: flex; }

/* ===================================================================
   1. HERO
   =================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; color: #fff; padding-top: 5rem;
}
.hero__bg { position: absolute; inset: -8% 0 -8% 0; z-index: 0; will-change: transform; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: var(--grad-signature); opacity: .82; mix-blend-mode: multiply; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,18,46,.35), rgba(8,18,46,.55)); z-index: 1; }

.hero__content {
  position: relative; z-index: 3;
  width: min(100% - 2.6rem, var(--container)); margin-inline: auto;
  display: block;
  max-width: 880px;
}
.hero__headline {
  font-size: var(--text-hero); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em;
  max-width: 20ch; text-shadow: 0 2px 30px rgba(8,18,46,.35);
}
.hero__sub { margin-top: 1.6rem; font-size: var(--text-lead); max-width: 48ch; color: rgba(255,255,255,.95); }
.hero__cta { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__isotype { display: none; }

.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: .6rem; color: #fff;
}
.hero__scroll-line { width: 2px; height: 46px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; border-radius: 2px; }
.hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: #fff; animation: scrollPulse 1.8s var(--ease-out) infinite; }
.hero__scroll-txt { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; }
@keyframes scrollPulse { 0% { top: -50%; } 100% { top: 110%; } }

/* ===================================================================
   2. TRUST BAR
   =================================================================== */
.trust {
  background: var(--navy); color: #fff; display: flex; align-items: center; gap: 2rem;
  padding: 1.4rem 0; overflow: hidden; position: relative;
}
.trust__metric {
  flex: none; padding-left: clamp(1.3rem, 5vw, 6rem); display: flex; flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.16); padding-right: 2rem;
}
.trust__metric strong { font-size: 1.5rem; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.trust__metric span { font-size: .82rem; color: rgba(255,255,255,.75); max-width: 32ch; line-height: 1.35; }
.trust__metric { max-width: 380px; }
.trust__marquee { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.trust__track { display: flex; gap: 1.2rem; width: max-content; will-change: transform; align-items: center; }
.logo-chip { display: inline-flex; align-items: center; justify-content: center; background: #fff; border-radius: 8px; padding: 0 12px; height: 40px; opacity: .94; transition: opacity var(--t-int), transform var(--t-int); flex: 0 0 auto; overflow: hidden; }
.logo-chip:hover { opacity: 1; transform: translateY(-1px); }
.logo-chip img { height: 26px; width: auto; max-width: 140px; display: block; object-fit: contain; }

/* ===================================================================
   3. PROPÓSITO
   =================================================================== */
.purpose { padding: var(--section-y) 0; background: var(--grad-soft); position: relative; overflow: hidden; }
.purpose__grid {
  width: min(100% - 2.6rem, var(--container)); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.purpose__media { position: relative; }
.purpose__img-mask { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.purpose__img-mask img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.purpose__text { padding: 1rem 0; }
.purpose__text .h2 { margin: .3rem 0 1.2rem; }

/* ===================================================================
   4. BENEFICIOS
   =================================================================== */
.benefits { padding: var(--section-y) 0; position: relative; background: #fff; overflow: hidden; }
.benefits .h2 { margin-bottom: clamp(2.4rem, 5vw, 3.8rem); }
.benefits__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.4rem; }
.bcard {
  grid-column: span 2; background: #fff; border: 1.5px solid #eaecf2; border-radius: var(--radius);
  padding: 2rem 1.8rem; position: relative; overflow: hidden;
  transition: transform var(--t-int), box-shadow var(--t-int), border-color var(--t-int);
}
/* 5 cards en grilla 6col: 3 arriba (span 2) + 2 abajo centradas (span 2 con offset) */
.bcard:nth-child(1) { grid-column: 1 / span 2; }
.bcard:nth-child(2) { grid-column: 3 / span 2; }
.bcard:nth-child(3) { grid-column: 5 / span 2; }
.bcard:nth-child(4) { grid-column: 2 / span 2; }
.bcard:nth-child(5) { grid-column: 4 / span 2; }
.bcard::before {
  content: ""; position: absolute; inset: 0; padding: 1.5px; border-radius: inherit;
  background: var(--grad-signature); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity var(--t-int);
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.bcard:hover::before { opacity: 1; }
.bcard__icon { width: 56px; height: 56px; margin-bottom: 1.1rem; }
.bcard h3 { font-size: var(--text-h3); font-weight: 700; color: var(--navy); margin-bottom: .5rem; line-height: 1.1; }
.bcard p { color: var(--muted); font-size: .98rem; }
.benefits__cta { text-align: center; margin-top: clamp(2.4rem, 5vw, 3.4rem); }

/* ===================================================================
   5. PROCESO (horizontal pinned)
   =================================================================== */
.process { background: var(--gray-bg); position: relative; }
.process__header { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; padding: var(--section-y) 0 2.2rem; }
.process__header .lead { margin-top: .6rem; }
.process__progress { margin-top: 2rem; max-width: 520px; }
.process__progress-line { height: 4px; background: #dfe2ea; border-radius: 4px; overflow: hidden; }
.process__progress-line span { display: block; height: 100%; width: 8%; background: var(--grad-signature); border-radius: 4px; }
.process__dots { display: flex; justify-content: space-between; margin-top: .9rem; }
.process__dots span { width: 12px; height: 12px; border-radius: 50%; background: #cfd4df; transition: var(--t-int); }
.process__dots span.active { background: var(--orange); transform: scale(1.25); }

.process__pin { height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: stretch; position: relative; }
.process__track { display: flex; height: 100%; gap: 0; will-change: transform; }
.panel {
  flex: none; width: 100vw; height: 100%; display: flex; align-items: center;
  position: relative; overflow: hidden; color: #fff; padding: 0 clamp(1.5rem, 8vw, 9rem);
}
.panel--teal { background: var(--teal); }
.panel--lime { background: var(--lime); color: #0b2912; }
.panel--limeorange { background: linear-gradient(120deg, var(--lime), var(--orange)); color: #2a1a00; }
.panel--orange { background: var(--orange); color: #2a1a00; }
.panel--navy { background: var(--navy); }
.panel__num {
  position: absolute; right: 3vw; bottom: 2vh; font-size: 38vh; font-weight: 800;
  line-height: 1; opacity: .13; letter-spacing: -0.05em; pointer-events: none;
}
.panel__body { position: relative; z-index: 2; max-width: 32ch; padding-right: 2rem; }
.panel__step { text-transform: uppercase; letter-spacing: .2em; font-weight: 700; font-size: .8rem; opacity: .75; }
.panel__body h3 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em; margin: .4rem 0 1.1rem; }
.panel__body p { font-size: var(--text-lead); max-width: 34ch; }

/* ===================================================================
   6. SERVICIOS
   =================================================================== */
.services { background: #fff; padding-bottom: var(--section-y); }
.services__head { position: relative; overflow: hidden; padding: clamp(5rem, 12vw, 9rem) 0; color: #fff; }
.services__head-bg { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; }
.services__head-bg img { width: 100%; height: 100%; object-fit: cover; }
.services__head-overlay { position: absolute; inset: 0; background: var(--grad-signature); opacity: .85; mix-blend-mode: multiply; }
.services__head::after { content: ""; position: absolute; inset: 0; background: rgba(8,18,46,.35); }
.services__head .container { position: relative; z-index: 2; }
.services__head .lead { margin-top: .6rem; }

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: clamp(-3.5rem, -4vw, -1.5rem); position: relative; z-index: 5; }
.scard {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; transform-style: preserve-3d;
  transition: transform var(--t-int), box-shadow var(--t-int);
}
.scard:hover { box-shadow: var(--shadow-lg); }
.scard__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.scard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.scard:hover .scard__img img { transform: scale(1.06); }
.scard__num { position: absolute; top: 14px; left: 16px; font-size: 2.2rem; font-weight: 800; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.scard__body { padding: 1.8rem 1.6rem 2rem; display: flex; flex-direction: column; flex: 1; }
.scard__icon { width: 46px; height: 46px; margin-bottom: 1rem; }
.scard__body h3 { font-size: var(--text-h3); font-weight: 700; color: var(--navy); line-height: 1.08; margin-bottom: .6rem; }
.scard__desc { color: var(--muted); margin-bottom: 1rem; }
.scard__list { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.4rem; }
.scard__list li { position: relative; padding-left: 1.5rem; font-size: .95rem; color: var(--ink); }
.scard__list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 9px; height: 9px; border-radius: 50%; background: var(--grad-signature); }
.scard__cta { margin-top: auto; font-weight: 700; color: var(--navy); align-self: flex-start; border-bottom: 2px solid transparent; transition: border-color var(--t-int), color var(--t-int); }
.scard__cta:hover { color: var(--teal); border-color: var(--teal); }

/* ===================================================================
   7. CLIENTES + TESTIMONIOS
   =================================================================== */
.clients { padding: var(--section-y) 0; background: var(--grad-soft); }
.clients__head { text-align: center; margin-bottom: clamp(2.4rem, 5vw, 3.4rem); }
.clients__head .lead { margin: .5rem auto 0; }
.clients__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.clients__grid .logo-cell {
  background: #fff; border: 1px solid #eaecf2; border-radius: 14px; aspect-ratio: 16/7;
  display: flex; align-items: center; justify-content: center; padding: 1rem 1.2rem;
  transition: transform var(--t-int), box-shadow var(--t-int);
}
.clients__grid .logo-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.clients__grid .logo-cell img { max-height: 44px; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }

.testi { margin-top: clamp(3rem, 6vw, 5rem); }
.testi__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.testi__track { display: flex; will-change: transform; transition: transform 600ms var(--ease-out); }
.testi__card {
  flex: none; width: 100%; display: grid; grid-template-columns: 160px 1fr; gap: 2rem; align-items: center;
  background: #fff; padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow-md);
}
.testi__card img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 5px rgba(46,196,182,.18); }
.testi__card blockquote { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 600; color: var(--navy); line-height: 1.3; letter-spacing: -0.01em; }
.testi__card figcaption { margin-top: 1.2rem; display: flex; flex-direction: column; }
.testi__card figcaption strong { color: var(--ink); }
.testi__card figcaption span { color: var(--muted); font-size: .92rem; }
.testi__dots { display: flex; gap: .6rem; justify-content: center; margin-top: 1.4rem; }
.testi__dots button { width: 11px; height: 11px; border-radius: 50%; border: 0; background: #cfd4df; cursor: pointer; transition: var(--t-int); padding: 0; }
.testi__dots button.active { background: var(--orange); transform: scale(1.2); }
.testi__disclaimer { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 1rem; opacity: .8; }

/* ===================================================================
   8. CONTACTO
   =================================================================== */
.contact { background: var(--navy); color: #fff; padding: var(--section-y) 0; position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; top: -20%; right: -10%; width: 480px; height: 480px; border-radius: 50%; background: var(--grad-signature); opacity: .22; filter: blur(40px); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); position: relative; z-index: 2; align-items: start; }
.contact__left .h2 { margin: .3rem 0 1rem; }
.contact__channels { display: flex; flex-direction: column; gap: .8rem; margin: 2rem 0 1.6rem; }
.chcard { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: .9rem 1.1rem; transition: var(--t-int); }
.chcard:hover { background: rgba(255,255,255,.12); transform: translateX(3px); }
.chcard__ic { width: 38px; height: 38px; border-radius: 10px; background: var(--grad-signature); display: grid; place-items: center; flex: none; }
.chcard__ic svg { width: 20px; height: 20px; }
.chcard span:last-child { display: flex; flex-direction: column; font-size: .95rem; }
.chcard strong { font-size: .82rem; opacity: .7; font-weight: 600; }
.contact__badges { display: flex; gap: .7rem; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: .5rem .9rem; border-radius: 999px; font-size: .85rem; font-weight: 600; }

.contact__right { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label { font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.field input, .field textarea {
  font: inherit; padding: .85rem 1rem; border: 1.5px solid #e2e5ec; border-radius: 12px; background: #fafbfc; color: var(--ink);
  transition: border-color var(--t-int), box-shadow var(--t-int);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(46,196,182,.15); }
.field textarea { resize: vertical; }
.form__note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: .9rem; }
.form__success { background: #effaf1; color: #1f7a3d; border: 1px solid #bfe9c9; padding: 1rem; border-radius: 12px; margin-top: 1rem; font-weight: 600; text-align: center; }

/* ===================================================================
   9. FOOTER
   =================================================================== */
.footer { background: var(--navy-2); color: rgba(255,255,255,.78); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.nav__logo--light .nav__logo-text, .nav__logo--light .nav__logo-text small { color: #fff !important; }
.footer__brand p { margin-top: 1rem; max-width: 24ch; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: var(--t-int); }
.footer__social a:hover { background: var(--grad-signature); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.footer__col a, .footer__col p { display: block; padding: .3rem 0; font-size: .92rem; transition: color var(--t-int); }
.footer__col a:hover { color: var(--teal); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); text-align: center; padding: 1.6rem; font-size: .85rem; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .purpose__grid { grid-template-columns: 1fr; }
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .bcard, .bcard:nth-child(1), .bcard:nth-child(2), .bcard:nth-child(3), .bcard:nth-child(4), .bcard:nth-child(5) { grid-column: auto; }
  .bcard:nth-child(5) { grid-column: 1 / -1; max-width: 50%; margin-inline: auto; }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav .btn--mini { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; margin-top: 2rem; }
  .services__head { padding: clamp(4rem, 10vw, 6rem) 0; }
  .scard__img { aspect-ratio: 16/8; }
  .contact__grid { grid-template-columns: 1fr; }
  .testi__card { grid-template-columns: 1fr; text-align: center; padding: 1.8rem 1.4rem; }
  .testi__card img { margin-inline: auto; width: 110px; height: 110px; }
  .process__header { padding: clamp(3.5rem, 8vw, 5rem) 0 1.6rem; }

  /* Mobile/tablet: cancelar pin horizontal, mostrar paneles en stack vertical */
  .process__pin { height: auto; min-height: 0; overflow: visible; display: block; }
  .process__track { display: flex; flex-direction: column; height: auto; }
  .panel { width: 100%; min-height: clamp(360px, 60vh, 520px); padding: clamp(2.5rem, 8vw, 4rem) clamp(1.5rem, 5vw, 3rem); }
  .panel__num { font-size: clamp(8rem, 22vw, 16rem); right: 4vw; bottom: -1vh; }
  .panel__body { max-width: 100%; }
  .process__progress { display: none; }
}
@media (max-width: 768px) {
  .benefits__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .bcard, .bcard:nth-child(1), .bcard:nth-child(2), .bcard:nth-child(3), .bcard:nth-child(4), .bcard:nth-child(5) { grid-column: auto; max-width: none; margin-inline: 0; padding: 1.6rem 1.3rem; }
  .bcard:nth-child(5) { grid-column: 1 / -1; }
  .bcard__icon { width: 44px; height: 44px; margin-bottom: .8rem; }
  .trust { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.2rem 1.3rem; }
  .trust__metric { border-right: 0; padding-right: 0; padding-bottom: .6rem; padding-left: 0; }
  .trust__marquee { width: 100%; max-width: 100%; }
  .purpose { padding: clamp(3.5rem, 7vw, 5rem) 0; }
  .clients { padding: clamp(3.5rem, 7vw, 5rem) 0; }
  .contact { padding: clamp(3.5rem, 7vw, 5rem) 0; }
  .footer__grid { gap: 1.6rem; }
  .panel__body h3 { font-size: clamp(2rem, 9vw, 3rem); }
  .panel__body p { font-size: 1rem; }
}
@media (max-width: 560px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .bcard:nth-child(5) { grid-column: auto; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .testi__card blockquote { font-size: 1.05rem; }
  .process__progress { max-width: 100%; }
  .panel__body h3 { font-size: clamp(1.9rem, 10vw, 2.6rem); }
  .panel__body { max-width: 100%; }
}

/* ===================================================================
   HISTORIA — Founder story
   =================================================================== */
.story {
  position: relative; padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  overflow: hidden;
}
.story__grid {
  width: min(100% - 2.6rem, var(--container)); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.story__media {
  position: relative; aspect-ratio: 4/5; border-radius: 28px; overflow: hidden;
  box-shadow: 0 28px 60px -28px rgba(10,26,61,.28);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__media::after {
  content: ""; position: absolute; inset: auto -10% -8% auto; width: 60%; aspect-ratio: 1;
  background: var(--grad-signature); border-radius: 50%; filter: blur(60px); opacity: .35; z-index: -1;
}
.story__quote {
  position: absolute; left: -18px; bottom: 26px; max-width: 78%;
  background: #fff; padding: 1rem 1.2rem; border-radius: 16px;
  box-shadow: 0 18px 40px -18px rgba(10,26,61,.22);
  font-size: .9rem; font-weight: 500; color: var(--navy); line-height: 1.4;
}
.story__quote::before {
  content: ""; display: inline-block; width: 28px; height: 3px; background: var(--teal);
  vertical-align: middle; margin-right: .6rem; border-radius: 2px;
}
.story__text { max-width: 56ch; }
.story__text .kicker { color: var(--teal); }
.story__text .h2 { margin: .7rem 0 1.4rem; }
.story__text p { font-size: 1.02rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 1rem; }
.story__text p strong { color: var(--navy); font-weight: 600; }
.story__signature {
  display: inline-flex; align-items: center; gap: .8rem; margin-top: 1.6rem;
  padding: .9rem 1.2rem; border-radius: 999px; background: rgba(46,196,182,.08);
  border: 1px solid rgba(46,196,182,.22);
}
.story__signature strong { color: var(--navy); font-weight: 700; }
.story__signature span { color: var(--muted); font-size: .85rem; }
.story__signature::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 4px rgba(46,196,182,.18);
}
@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .story__media { max-width: 460px; margin-inline: auto; aspect-ratio: 4/4.4; }
  .story__text { max-width: 100%; }
  .story__quote { font-size: .82rem; left: 12px; bottom: 16px; max-width: 80%; }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero__scroll-line::after { display: none; }
}
