/* =============================================================
   1. TOKENS — light editorial theme, brand blue accent
   ============================================================= */
:root {
  --bg:        #f6f4f1;
  --bg-2:      #ede9e3;
  --white:     #f6f4f1;
  --ink:       #0f2340;
  --ink-soft:  #1e3a6a;
  --muted:     #4a6080;
  --blue:      #0f3473;   /* brand blue — from logo */
  --blue-2:    #0b2a5c;
  --blue-light: #1a4a94;
  --blue-bg:   rgba(15, 52, 115, 0.08);
  --coral:     #FF6B5A;
  --coral-2:   #E85A49;
  --coral-bg:  rgba(255, 107, 90, 0.08);
  --wa-green:  #25D366;
  --cream:     #f6f4f1;
  --line:      rgba(12, 26, 43, 0.10);
  --line-mid:  rgba(12, 26, 43, 0.18);
  --shadow-sm: 0 2px 12px rgba(12,26,43,0.08);
  --shadow-md: 0 8px 32px rgba(12,26,43,0.13);
  --shadow-lg: 0 20px 60px rgba(12,26,43,0.16);
  --radius:    16px;
  --radius-sm: 10px;
  --gutter:    clamp(1.25rem, 5vw, 3rem);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --serif:     "Fraunces", Georgia, serif;
  --sans:      "Inter", system-ui, sans-serif;
  --mono:      "Space Mono", "Courier New", monospace;
}

/* =============================================================
   2. RESET
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  text-wrap: balance;
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -0.025em;
}
ul { list-style: none; padding: 0; }
::selection { background: var(--blue); color: var(--white); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. UTILITIES
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .5rem 1rem; background: var(--ink); color: var(--white);
  z-index: 10001; border-radius: 6px; font-size: .875rem;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 1rem;
}

.section-watermark {
  font-family: var(--serif);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 700;
  color: rgba(12,26,43,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: 0; left: var(--gutter);
}

/* =============================================================
   4. BUTTONS
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.875rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .22s var(--ease-out),
              box-shadow .22s var(--ease-out),
              background .22s, color .22s, border-color .22s;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(15,52,115,0.28);
}
.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 8px 28px rgba(15,52,115,0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-mid);
}
.btn-ghost:hover {
  background: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  padding: .7rem 1.5rem;
}
.btn-wa:hover { background: #20BA5A; box-shadow: var(--shadow-sm); }

/* =============================================================
   5. CURSOR
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  opacity: 0; transition: opacity .3s;
  mix-blend-mode: multiply;
}
.cursor.is-ready { opacity: 1; }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  position: absolute; top: -19px; left: -19px;
  transition: transform .2s var(--ease-out);
}
.cursor-label {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: .55rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  white-space: nowrap;
}

/* =============================================================
   6. AURORA
   ============================================================= */
.aurora {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(37,99,235,.06), transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 80%, rgba(37,99,235,.05), transparent 60%),
    radial-gradient(ellipse 50% 40% at 55% 50%, rgba(255,107,90,.03), transparent 60%),
    var(--bg);
  animation: auroraDrift 28s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  from { background-position: 0% 0%; }
  to   { background-position: 100% 100%; }
}

/* =============================================================
   7. SPLASH
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety { to { opacity: 0; pointer-events: none; visibility: hidden; } }
.splash.is-gone { opacity: 0; pointer-events: none; transition: opacity .55s var(--ease-in); }

.splash-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.splash-logo {
  width: clamp(100px, 20vw, 160px);
  height: clamp(100px, 20vw, 160px);
  border-radius: 20px;
  object-fit: contain;
  background: var(--blue);
  opacity: 0;
  animation: slIn .6s var(--ease-out) .1s forwards;
}
@keyframes slIn { to { opacity: 1; transform: translateY(0); } }
.splash-bar {
  width: 120px; height: 2px;
  background: var(--line);
  border-radius: 2px;
  margin: 1.5rem auto 0;
  overflow: hidden;
}
.splash-bar-fill {
  height: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  animation: barFill 1.4s var(--ease-out) .7s forwards;
}
@keyframes barFill { to { transform: scaleX(1); } }

/* =============================================================
   8. NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 1.1rem;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, padding .3s;
}
.nav--scrolled {
  background: rgba(246,244,241,.94);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: var(--line);
  padding-block: .85rem;
}
.nav-inner { display: flex; align-items: center; gap: 1.5rem; }

/* ---- Logo con imagen ---- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  background: var(--blue);
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: .06rem;
}
.logo-brand {
  font-family: var(--sans);
  font-size: .9375rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
}
.logo-tagline-sm {
  font-family: var(--sans);
  font-size: .56rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .05em;
  line-height: 1;
}

.nav-links {
  display: none; align-items: center; gap: 1.75rem; margin-left: auto;
}
.nav-links a {
  font-family: var(--sans);
  font-size: .8125rem; font-weight: 500;
  color: var(--muted);
  display: flex; align-items: center; gap: .3rem;
  transition: color .2s; position: relative;
}
.nav-num { font-family: var(--mono); font-size: .62rem; color: var(--blue); opacity: .7; }
.nav-links a::after {
  content: "";
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: none; margin-left: 1.5rem; font-size: .8125rem; padding: .6rem 1.25rem; }

.nav-toggle {
  margin-left: auto;
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 28px; height: 28px; padding: 0; flex-shrink: 0;
}
.tb {
  display: block; width: 100%; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease-out), opacity .3s;
  transform-origin: center;
}
.nav-toggle.is-open .tb:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle.is-open .tb:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 999;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem var(--gutter);
  transform: translateX(100%);
  transition: transform .42s var(--ease-out);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer nav { display: flex; flex-direction: column; gap: 1.75rem; }
.nav-drawer a {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  font-weight: 300; letter-spacing: -.03em; color: var(--ink);
}
.nav-drawer a.btn { font-size: 1rem; width: fit-content; margin-top: .5rem; }

/* =============================================================
   9. SIDEBAR MARKER
   ============================================================= */
.sidebar-marker {
  position: fixed; right: -1px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  z-index: 100;
  display: none; align-items: center; gap: .5rem;
  pointer-events: none;
}
.sidebar-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  animation: sidebarPulse 2s ease-in-out infinite;
}
@keyframes sidebarPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}
.sidebar-text {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}

/* =============================================================
   10. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  overflow: hidden; display: flex; align-items: center;
  background: linear-gradient(160deg, #0f3473 0%, #0b2a5c 55%, #081e42 100%);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { display: none; }
.hero-veil { display: none; }

/* Logo en el hero */
.hero-logo {
  width: clamp(70px, 10vw, 100px);
  height: clamp(70px, 10vw, 100px);
  border-radius: 16px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: hfadeUp .8s .15s var(--ease-out) forwards;
}

/* Sutil malla de puntos sobre el azul */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
/* Glow azul central */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(15,52,115,.25), transparent 65%);
  pointer-events: none;
}
#hero-canvas {
  position: absolute; right: 0; top: 0;
  width: 50%; height: 100%;
  pointer-events: none;
}
.hero-3d-fallback {
  display: none;
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 35vw, 420px);
  opacity: .45; pointer-events: none;
  animation: fallbackFloat 8s ease-in-out infinite;
}
@keyframes fallbackFloat {
  0%,100% { transform: translateY(-50%) rotate(0deg); }
  50%      { transform: translateY(calc(-50% - 12px)) rotate(4deg); }
}
.hero-content {
  position: relative; z-index: 2;
  padding-block: clamp(8rem, 16vh, 12rem) clamp(4rem, 8vh, 6rem);
  max-width: min(680px, 58%);
}
.hero-kicker {
  font-family: var(--mono);
  font-size: clamp(.6rem, 1vw, .72rem);
  letter-spacing: .14em; text-transform: uppercase;
  color: #c8deff; margin-bottom: 1.5rem;
  opacity: 0; animation: hfadeUp .8s .3s var(--ease-out) forwards;
}
.hero-title {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 300; color: #FFFFFF; line-height: .97;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  opacity: 0; animation: hfadeUp .9s .45s var(--ease-out) forwards;
}
.hero-title em { font-style: italic; color: #93C5FD; }
.hero-offset { display: block; padding-left: clamp(1.5rem, 5vw, 4rem); }
.hero-tagline {
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  color: rgba(246,244,241,.78); max-width: 50ch; line-height: 1.65;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  opacity: 0; animation: hfadeUp .9s .6s var(--ease-out) forwards;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .875rem;
  opacity: 0; animation: hfadeUp .9s .75s var(--ease-out) forwards;
}
/* Ghost button sobre fondo oscuro */
.hero .btn-ghost {
  color: rgba(246,244,241,.9);
  border-color: rgba(246,244,241,.3);
}
.hero .btn-ghost:hover {
  background: rgba(246,244,241,.1);
  border-color: rgba(246,244,241,.55);
}
@keyframes hfadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   11. MARQUEE HERO
   ============================================================= */
.marquee-bar {
  background: var(--ink);
  overflow: hidden; padding-block: .7rem;
}
.marquee-track {
  display: flex; align-items: center; gap: 1.75rem;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  animation: marqueeLeft 35s linear infinite;
  width: max-content;
}
.mq-sep { color: var(--blue); }
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   12. WHY SECTION
   ============================================================= */
.why {
  padding-block: clamp(5rem, 10vw, 8rem);
  position: relative; overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.why-inner {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem); align-items: center;
}
.why-left { position: relative; }
.why-collage { position: relative; height: 280px; max-width: 380px; }
.collage-img {
  position: absolute;
  border: 5px solid var(--white); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.collage-img img { width: 100%; height: 100%; object-fit: cover; }
.collage-img--a { width: 200px; height: 155px; left: 0; top: 20px; transform: rotate(-4deg); z-index: 2; }
.collage-img--b { width: 175px; height: 135px; right: 0; top: 50px; transform: rotate(3deg); z-index: 1; }
.collage-img--c { width: 160px; height: 120px; left: 50px; top: 140px; transform: rotate(-1.5deg); z-index: 3; }
.collage-tape {
  position: absolute; bottom: 8px; right: 8px;
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--blue); color: #fff;
  padding: .2rem .5rem; border-radius: 3px;
}
.why-right { display: flex; flex-direction: column; gap: 1.25rem; }
.why-title { font-size: clamp(1.75rem, 4vw, 3rem); color: var(--ink); }
.why-title em { font-style: italic; color: var(--blue); }
.why-aside {
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  border-left: 2.5px solid var(--blue); padding-left: .75rem;
}
.why-lead { font-size: clamp(1rem, 1.6vw, 1.1rem); color: var(--ink-soft); font-weight: 500; }
.why-body { font-size: .9375rem; color: var(--muted); }
.why-defs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .75rem 1.5rem;
  border-top: 1px solid var(--line); padding-top: 1.25rem;
}
.why-defs > div { display: flex; flex-direction: column; gap: .15rem; }
.why-defs dt {
  font-family: var(--mono); font-size: .62rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.why-defs dd { font-size: .9rem; font-weight: 600; color: var(--ink); }

/* =============================================================
   13. SERVICES GRID — 8 servicios, 4 columnas desktop
   ============================================================= */
.services-grid-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-grid-header { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.services-grid-title { font-size: clamp(2rem, 4.5vw, 3.5rem); color: var(--ink); }
.services-grid-title em { font-style: italic; color: var(--blue); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.svc-box {
  background: var(--white);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex; flex-direction: column; gap: .875rem;
  position: relative; overflow: hidden;
  transition: background .3s;
}
/* Accent color strip on top */
.svc-box::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ac, var(--blue));
  opacity: 0;
  transition: opacity .3s;
}
.svc-box:hover { background: rgba(15,52,115,.04); }
.svc-box:hover::before { opacity: 1; }

.svc-box-header {
  display: flex; align-items: center; justify-content: space-between;
}
.svc-box-tier {
  font-family: var(--mono); font-size: .56rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ac, var(--blue));
  border: 1.5px solid currentColor;
  border-radius: 100px; padding: .2rem .6rem; opacity: .85;
  font-weight: 700;
}
.svc-box-num {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .06em; color: var(--muted); opacity: .5;
}
.svc-box-icon { color: var(--ac, var(--blue)); }
.svc-box-icon svg,
.svc-box-svg {
  width: clamp(52px, 8vw, 80px);
  height: auto;
}
/* Pre-set traced paths */
[data-trace] {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: none;
}
.svc-box-name {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700; color: var(--ink);
  letter-spacing: -.02em; line-height: 1.2;
}
.svc-box-sub {
  font-family: var(--serif);
  font-size: .88rem; font-style: italic; color: var(--muted);
}
.svc-box-list { display: flex; flex-direction: column; gap: .3rem; }
.svc-box-list li {
  font-size: .8125rem; color: var(--ink-soft);
  padding-left: 1.1rem; position: relative; line-height: 1.45;
}
.svc-box-list li::before {
  content: "";
  position: absolute; left: 0; top: .52em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ac, var(--blue));
}
.svc-box-desc {
  font-size: .8rem; color: var(--muted);
  font-style: italic; line-height: 1.6;
  margin-top: auto; padding-top: .5rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 600px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   14. PROCESS
   ============================================================= */
.process-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  position: relative; overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.process-header { position: relative; margin-bottom: clamp(3rem, 6vw, 5rem); }
.process-title { font-size: clamp(2rem, 5vw, 3.75rem); color: var(--ink); }
.process-title em { font-style: italic; color: var(--blue); }
.process-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.process-step {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-out);
  border-top: 3px solid var(--step-ac, var(--blue));
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-mid); }
.step-icon { width: 40px; height: 40px; color: var(--step-ac, var(--blue)); }
.step-icon svg { width: 100%; height: 100%; }
.step-num {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .1em; color: var(--step-ac, var(--blue));
}
.process-step h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.375rem);
  font-weight: 700; font-family: var(--sans);
  color: var(--ink); letter-spacing: -.02em;
}
.process-step p { font-size: .9rem; color: var(--muted); }

/* =============================================================
   15. STATS SECTION
   ============================================================= */
.stats-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: linear-gradient(135deg, #0f3473 0%, #0b2a5c 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
/* Sutil textura de puntos */
.stats-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(246,244,241,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.stats-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
}
.stats-header .section-label { justify-content: center; color: rgba(246,244,241,.5); }
.stats-header .section-label::before { background: #c8deff; }
.stats-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: #f6f4f1;
}
.stats-title em { font-style: italic; color: #c8deff; }
.stats-desc {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(246,244,241,.65);
  max-width: 52ch;
  margin-inline: auto;
  margin-top: .75rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(246,244,241,.08);
  border: 1px solid rgba(246,244,241,.08);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.stat-card {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: rgba(255,255,255,.03);
  transition: background .3s;
  position: relative;
}
.stat-card:hover { background: rgba(255,255,255,.07); }
/* Borde acento azul claro arriba en hover */
.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #c8deff;
  opacity: 0;
  transition: opacity .35s;
}
.stat-card:hover::before { opacity: 1; }

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  line-height: 1;
}
.stat-count {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  color: #f6f4f1;
  letter-spacing: -.04em;
  line-height: .95;
}
.stat-suf {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #c8deff;
  line-height: 1;
}
.stat-label {
  font-family: var(--sans);
  font-size: clamp(.95rem, 1.6vw, 1.125rem);
  font-weight: 700;
  color: #f6f4f1;
  letter-spacing: -.02em;
}
.stat-detail {
  font-size: .8375rem;
  color: rgba(246,244,241,.55);
  line-height: 1.6;
  max-width: 28ch;
}

@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* =============================================================
   16. OFFER SECTION (sin compromiso)
   ============================================================= */
.offer-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.offer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 7vw, 5rem);
  align-items: center;
}
.offer-text { display: flex; flex-direction: column; gap: 1.5rem; }
.offer-title { font-size: clamp(2.25rem, 5.5vw, 4.25rem); color: var(--ink); line-height: 1.0; }
.offer-title em { font-style: italic; color: var(--blue); }
.offer-lead { font-size: clamp(1rem, 1.6vw, 1.125rem); color: var(--muted); max-width: 48ch; line-height: 1.7; }
.offer-cta { font-size: 1.0625rem; padding: .9rem 2rem; width: fit-content; gap: .6rem; }
.offer-note {
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.offer-steps { display: flex; flex-direction: column; gap: 0; }
.offer-step {
  display: flex; gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-out);
}
.offer-step:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateX(4px); }
.offer-step-line {
  width: 2px; height: 1.25rem;
  background: linear-gradient(to bottom, var(--blue), transparent);
  margin-left: 2.3rem; opacity: .25;
}
.offer-step-num {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
  color: var(--blue); font-weight: 700; flex-shrink: 0; padding-top: .15rem; min-width: 1.8rem;
}
.offer-step-body { display: flex; flex-direction: column; gap: .4rem; }
.offer-step-body h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.offer-step-body p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* =============================================================
   17. CONTACT
   ============================================================= */
.contact-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--bg); border-top: 1px solid var(--line);
}
.contact-inner { display: grid; grid-template-columns: 1fr; gap: clamp(3rem, 6vw, 5rem); }
.contact-left { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-title { font-size: clamp(2rem, 5vw, 3.75rem); color: var(--ink); }
.contact-title em { font-style: italic; color: var(--blue); }
.contact-body { font-size: .9375rem; color: var(--muted); }
.contact-meta {
  display: flex; flex-direction: column; gap: .65rem;
  border-top: 1px solid var(--line); padding-top: 1.25rem;
}
.contact-meta li { display: flex; gap: 1rem; align-items: baseline; font-size: .875rem; }
.meta-label {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); min-width: 72px; flex-shrink: 0;
}
.contact-meta span, .contact-meta a { color: var(--ink-soft); }
.contact-meta a { transition: color .2s; }
.contact-meta a:hover { color: var(--blue); }
.contact-form {
  display: flex; flex-direction: column; gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field label {
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: .4rem;
}
.f-num { color: var(--blue); }
.f-opt { opacity: .6; font-size: .6rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: .75rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--line-mid);
  border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: .9375rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  outline: none; resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); opacity: .6; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.btn-submit { width: 100%; justify-content: center; font-size: 1rem; padding: .9rem; }
.form-note { font-size: .75rem; color: var(--muted); text-align: center; font-style: italic; }

/* =============================================================
   18. FOOTER
   ============================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,.65); border-top: 1px solid rgba(255,255,255,.06); }
.footer-marquee { overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.06); padding-block: 1.25rem; }
.footer-mq-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  font-family: var(--serif); font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 300; letter-spacing: -.04em;
  color: rgba(255,255,255,.1);
  animation: marqueeLeft 20s linear infinite;
  width: max-content;
}
.fmq-sep { color: var(--blue); opacity: .5; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; padding-block: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-col h4 {
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .875rem; font-weight: 400;
}
.footer-col p { font-size: .875rem; line-height: 1.7; }
.footer-col a { display: block; font-size: .875rem; margin-bottom: .4rem; transition: color .2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; flex-direction: column; gap: .5rem; padding-block: 1.5rem; }
.footer-bottom p { font-size: .8125rem; opacity: .45; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .8125rem; opacity: .45; transition: opacity .2s; }
.footer-links a:hover { opacity: 1; }

/* =============================================================
   19. WHATSAPP FLOTANTE
   ============================================================= */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: .75rem 1.25rem .75rem .9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  animation-play-state: paused;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

@media (max-width: 480px) {
  .wa-float-label { display: none; }
  .wa-float { padding: .85rem; border-radius: 50%; }
}

/* =============================================================
   20. REVEALS
   ============================================================= */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-split]  { opacity: 1; transform: none; }

/* =============================================================
   20. RESPONSIVE — ≥ 720px
   ============================================================= */
@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-cta   { display: inline-flex; }
  .nav-toggle { display: none; }
  .sidebar-marker { display: flex; }
  .why-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .offer-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   21. MOBILE OVERRIDES
   ============================================================= */
@media (max-width: 767px) {
  #hero-canvas { display: none; }
  .hero-3d-fallback { display: block; }
  .hero-content { max-width: 100%; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   22. REDUCED-MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora { animation: none; }
  .splash-bar-fill { animation-duration: .1s; }
}
