/* =============================================================
   1. TOKENS — Consultatia Design System
   Paleta: Deep Navy + Cobalt Puro — dark luxury premium
   ============================================================= */
:root {
  /* Deep Navy + Cobalt Puro — poder, inversión, tech */
  --bg:          #050d1f;   /* deep navy — fondo global */
  --bg-2:        #081428;   /* navy ligeramente más claro */
  --bg-3:        #0c1a32;   /* cards / secciones alternas */
  --bg-4:        #0f2040;   /* hover / elevated */
  --bg-dark:     #030810;   /* el más oscuro */
  --bg-dark-2:   #050d1f;
  --ink:         #eef2ff;   /* blanco azulado — texto principal */
  --ink-soft:    #c7d2fe;   /* indigo-200 — texto secundario */
  --ink-mute:    #818cf8;   /* indigo-400 — texto terciario */
  --ink-light:   #4f5f8a;   /* texto muy suave */
  --cream:       #eef2ff;   /* alias de ink para legibilidad */
  --accent:      #0047ff;   /* cobalt puro — el acento principal */
  --accent-dark: #0035cc;   /* cobalt oscuro para hover */
  --accent-mid:  #2563eb;   /* cobalt medio para gradientes */
  --accent-glow: rgba(0,71,255,0.25);
  --accent-soft: rgba(0,71,255,0.10);
  --accent-line: rgba(0,71,255,0.20);
  --navy:        #050d1f;
  --navy-2:      #081428;
  --line:        rgba(99,130,255,0.10);   /* líneas con tinte azul */
  --line-light:  rgba(99,130,255,0.06);

  /* Typography */
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-gap: clamp(80px, 12vw, 160px);
  --gutter:      clamp(20px, 5vw, 80px);
  --container:   1200px;

  /* Easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-accent: 0 0 40px rgba(37,99,235,0.20);
  --radius:      12px;
  --radius-lg:   20px;
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
/* Scrollbar con identidad de marca */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-mid); }
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; line-height: 1.05; letter-spacing: -0.025em; }
::selection { background: var(--accent); color: #fff; }

/* =============================================================
   3. UTILITIES
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--navy); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-size: 14px;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

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

.section {
  padding-block: var(--section-gap);
}

.br-desktop { display: none; }
@media (min-width: 960px) { .br-desktop { display: block; } }

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* =============================================================
   4. TYPOGRAPHY
   ============================================================= */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent) 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--ink-mute);
  max-width: 54ch;
}
.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* =============================================================
   5. COMPONENTS
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 0.06; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,71,255,0.35), 0 0 0 1px rgba(0,71,255,0.20);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,71,255,0.50), 0 0 0 1px rgba(0,71,255,0.30);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid rgba(99,130,255,0.20);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-1px);
  background: rgba(0,71,255,0.06);
}

.btn-nav {
  background: rgba(0,71,255,0.12);
  color: var(--ink-soft);
  border: 1px solid rgba(0,71,255,0.20);
  padding: 10px 20px;
  font-size: 13.5px;
}
.btn-nav:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,71,255,0.35);
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--accent);
  width: 0%;
  z-index: 9999;
  transition: width .05s linear;
}

/* Custom cursor */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity .3s;
  }
  .cursor.is-ready .cursor-dot,
  .cursor.is-ready .cursor-ring { opacity: 1; }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    margin: -3px 0 0 -3px;
    transition: transform .1s var(--ease-out);
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--accent);
    margin: -18px 0 0 -18px;
    opacity: 0;
    mix-blend-mode: normal;
  }
  .cursor.is-ready .cursor-ring { opacity: 0.5; }
  body { cursor: none; }
  a, button, [data-magnetic] { cursor: none; }
}

/* =============================================================
   6. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background .3s var(--ease-out), box-shadow .3s;
}
.nav.is-scrolled {
  background: rgba(5,13,31,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,71,255,0.12);
}
.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0,71,255,0.4);
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
}
.nav-links {
  display: none;
  gap: 32px;
  margin-left: auto;
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
}
.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-link:hover { color: var(--ink); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink-soft);
  transition: all .3s var(--ease-out);
}
.nav-toggle.is-open span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-open span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}
@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .btn-nav { margin-left: auto; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-link {
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 300;
  color: var(--ink);
  padding: 8px 0;
  transition: color .2s;
}
.mobile-link:hover { color: var(--accent); }
.mobile-cta {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--accent);
  margin-top: 24px;
  font-weight: 500;
}

/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--navy);
}

/* Animated gradient background — Deep Navy + Cobalt Puro */
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 65% 40%, rgba(0,71,255,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 90% at 15% 75%, rgba(37,99,235,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 85% 85%, rgba(99,102,241,0.10) 0%, transparent 45%),
    linear-gradient(160deg, #030810 0%, #050d1f 40%, #081428 100%);
  animation: gradientShift 14s ease-in-out infinite alternate;
}
@keyframes gradientShift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 100%; }
}

/* Grid lines overlay — cobalt puro tint */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,71,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,71,255,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 40%, black 20%, transparent 100%);
}

/* Film grain noise */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 40px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,247,244,0.45);
  margin-bottom: 32px;
}
.dot-live {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: livePulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

/* Split word animation */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.split-word.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-sub {
  font-size: clamp(16px, 1.3vw, 20px);
  color: rgba(248,247,244,0.65);
  line-height: 1.65;
  max-width: 58ch;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.hero-actions .btn-ghost {
  color: rgba(248,247,244,0.7);
  border-color: rgba(248,247,244,0.15);
}
.hero-actions .btn-ghost:hover {
  border-color: var(--accent);
  color: var(--cream);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(248,247,244,0.08);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.stat-pct {
  font-size: 0.6em;
  vertical-align: super;
}
.stat-label {
  font-size: 12px;
  color: rgba(248,247,244,0.4);
  max-width: 22ch;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(248,247,244,0.1);
}

.hero-footnote {
  font-size: 11px;
  color: rgba(248,247,244,0.25);
  margin-top: 16px;
  font-style: italic;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,247,244,0.2);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(248,247,244,0.2), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(0.6); opacity: 0.8; }
}

/* =============================================================
   8. PROBLEMA
   ============================================================= */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 960px) {
  .problem-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
}
.problem-body {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.problem-body strong { color: var(--ink); }
.problem-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(0,71,255,0.08);
  border: 1.5px solid rgba(0,71,255,0.20);
  border-radius: var(--radius);
  margin-top: 32px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  box-shadow: inset 0 0 40px rgba(0,71,255,0.04);
}
.badge-icon {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================================
   9. SERVICES
   ============================================================= */
.services {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1280px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 0;
  transform: translateY(40px);
}
.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 60px rgba(0,71,255,0.15), 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-8px) rotateX(1deg);
}
.service-card--featured {
  background: linear-gradient(135deg, rgba(0,71,255,0.12) 0%, rgba(0,35,140,0.08) 100%);
  border-color: rgba(0,71,255,0.35);
  color: var(--cream);
  box-shadow: 0 0 0 1px rgba(0,71,255,0.2), 0 0 80px rgba(0,71,255,0.08);
}
.service-card--featured:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 100px rgba(0,71,255,0.25), 0 30px 80px rgba(0,0,0,0.4);
}
.service-badge-top {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.service-card-inner {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card--featured .service-icon { color: var(--accent); }
.service-duration {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.service-card--featured .service-duration { color: rgba(248,247,244,0.45); }
.service-title {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}
.service-card--featured .service-title { color: var(--cream); }
.service-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}
.service-card--featured .service-desc { color: rgba(248,247,244,0.55); }
.service-ideal {
  font-size: 13px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 24px;
}
.service-card--featured .service-ideal { color: rgba(37,99,235,0.9); }
.service-cta { margin-top: auto; }
.service-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  transition: gap .2s;
  display: inline-flex;
  gap: 4px;
}
.service-link:hover { gap: 8px; }

/* Staggered reveal for cards */
.service-card:nth-child(1) { transition-delay: 0.0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }

/* =============================================================
   10. SECTORS MARQUEE
   ============================================================= */
.sectors {
  padding-block: var(--section-gap);
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.sectors-marquee {
  margin-block: 48px;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(0,71,255,0.15);
  border-bottom: 1px solid rgba(0,71,255,0.15);
  padding-block: 20px;
  background: linear-gradient(90deg, transparent, rgba(0,71,255,0.03), transparent);
}
.sectors-track {
  display: inline-flex;
  gap: 32px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.sectors-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.sectors-track .sep {
  color: var(--accent);
  font-style: normal;
}
.sectors-note {
  font-size: 15px;
  color: var(--ink-mute);
  max-width: 60ch;
  line-height: 1.65;
}

/* =============================================================
   11. PROCESS
   ============================================================= */
.process {
  background: var(--bg-dark);
  color: var(--cream);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: visible; /* FIX: overflow:hidden bloquea IntersectionObserver en algunos browsers */
}
/* Clip solo el pseudo-elemento de fondo */
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(0,71,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.process .section-eyebrow { color: var(--accent); }
.process .section-title { color: var(--cream); }

/* Garantía: los pasos siempre visibles independientemente del JS */
.process-step.reveal {
  opacity: 1;
  transform: none;
}
.process-step {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,71,255,0.08);
  opacity: 1 !important;
  transform: none !important;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 960px) {
  .process-steps {
    grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    align-items: start;
  }
  .process-step {
    padding: 0;
    border: none;
  }
}
@media (min-width: 960px) {
  .process-step {
    padding: 0;
    border: none;
  }
}
.process-num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: rgba(37,99,235,0.25);
  line-height: 1;
  margin-bottom: 20px;
}
.process-title {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.process-desc {
  font-size: 14px;
  color: rgba(248,247,244,0.45);
  line-height: 1.7;
}
.process-connector {
  display: none;
}
@media (min-width: 960px) {
  .process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 36px;
    color: rgba(37,99,235,0.3);
    font-size: 20px;
  }
  .process-connector::after {
    content: '→';
    font-family: var(--sans);
  }
}

/* =============================================================
   12. ABOUT
   ============================================================= */
.about {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 320px 1fr;
    gap: 80px;
  }
}
.about-visual {
  display: flex;
  justify-content: center;
}
.about-photo-wrap {
  position: relative;
  width: 260px;
  height: 320px;
}
.about-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #050d1f 0%, #081428 60%, #0c1a32 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 60px rgba(0,71,255,0.06);
}
.about-initials {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(0,71,255,0.25);
  letter-spacing: 0.1em;
}
.about-photo-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(0,71,255,0.30);
  border-radius: calc(var(--radius-lg) + 8px);
  z-index: 0;
  box-shadow: 0 0 40px rgba(0,71,255,0.10);
}
.about-body {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-body strong { color: var(--ink); }
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 28px;
}
.skill-tag {
  background: rgba(0,71,255,0.08);
  color: var(--accent-mid);
  border: 1px solid rgba(0,71,255,0.18);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: all .2s var(--ease-out);
}
.skill-tag:hover {
  background: rgba(0,71,255,0.15);
  border-color: var(--accent);
  color: #fff;
}

/* =============================================================
   13. FAQS
   ============================================================= */
.faqs {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
}
.faqs-list {
  max-width: 780px;
  margin-top: 20px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  list-style: none;
  transition: color .2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--ink); }
.faq-arrow {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
details[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.75;
  padding-bottom: 24px;
  max-width: 65ch;
}

/* =============================================================
   14. CTA FINAL
   ============================================================= */
.cta-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 90%, rgba(0,71,255,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 85% 15%, rgba(37,99,235,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 15% 20%, rgba(99,102,241,0.08) 0%, transparent 50%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}
.cta-section .section-eyebrow { color: rgba(248,247,244,0.4); }
.cta-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.cta-sub {
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(248,247,244,0.55);
  line-height: 1.65;
  margin-bottom: 44px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
}
.cta-actions .btn-ghost {
  color: rgba(248,247,244,0.6);
  border-color: rgba(248,247,244,0.12);
}
.cta-actions .btn-ghost:hover {
  border-color: var(--accent);
  color: var(--cream);
}
.cta-reassurance {
  font-size: 13px;
  color: rgba(248,247,244,0.25);
  font-style: italic;
}

/* =============================================================
   15. FOOTER
   ============================================================= */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--line);
  padding-block: 60px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-tagline {
  font-size: 14px;
  color: var(--ink-mute);
  margin-block: 12px;
}
.footer-copy {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 14px;
  color: var(--ink-mute);
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.footer-legal {
  font-size: 12px;
  color: var(--ink-light);
  max-width: 70ch;
  line-height: 1.6;
}

/* =============================================================
   16. RESPONSIVE (mobile first adjustments)
   ============================================================= */
@media (max-width: 540px) {
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .about-photo-wrap { width: 200px; height: 250px; }
}
@media (min-width: 960px) {
  .btn-nav { display: inline-flex; }
}

/* =============================================================
   17. REDUCED MOTION (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  @keyframes gradientShift { from {} to {} }
  @keyframes marqueeScroll { from {} to {} }
  .sectors-track { animation: none; }
  .dot-live { animation: none; }
  .scroll-line { animation: none; }
}

/* =============================================================
   18. TILT EFFECT (JS-enhanced)
   ============================================================= */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}
