:root {
  --navy: #0D1B2A;
  --navy-2: #13263B;
  --cyan: #5BC8E8;
  --cyan-soft: #EAF7FC;
  --paper: #FFFFFF;
  --offwhite: #F4F6F8;
  --text:#0D1B2A;
  --muted: #748293;
  --line: rgba(13, 27, 42, 0.12);
  --header-h: 84px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
  font-weight: 500;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.018em;
  font-weight: 800;
}

p { margin: 0; color: var(--muted); line-height: 1.78; }

.section { padding: clamp(96px, 10vw, 150px) 0; }

.container {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.section-kicker,
.eyebrow {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.section-title {
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
}

.section-title.small { font-size: clamp(2.4rem, 4.5vw, 4.3rem); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}
.btn:hover { transform: translateY(-2px); }

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 34px;
  color: white;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}
.svc-cta-link {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--paper);   font-size: 0.82rem; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase;
      text-decoration: none; margin-top: 10px;
      width: fit-content;
      border-bottom: 1.5px solid #1687B7;
      padding-bottom: 5px;
      transition: border-color .25s, color .25s, gap .25s;
    }
.svc-cta-link:hover { border-color: var(--navy); color:var(--navy); gap: 14px; }

.site-header.scrolled {
  background: rgba(255,255,255,1);
  color: var(--navy);
  border-bottom-color: rgba(13,27,42,0.10);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: currentColor;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-number {
  color:var(--cyan);
}
.brand-mark {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
}

.header-center { justify-self: center; }
.header-actions { justify-self: end;}

.header-link {
  color: currentColor;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-button {
  width: 50px; height: 50px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: currentColor;
  opacity: 0.92;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  content: "";
  width: 18px; height: 1.8px;
  background: currentColor;
  border-radius: 999px;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-lines::before { transform: translateY(-6px); }
.menu-lines::after  { transform: translateY(4px); }
.menu-open .menu-lines { background: transparent; }
.menu-open .menu-lines::before { transform: rotate(45deg) translate(2px, 2px); }
.menu-open .menu-lines::after  { transform: rotate(-45deg) translate(2px, -2px); }

body.nav-open .site-header {
  background: #0D1B2A;
  color: white;
  border-bottom-color: rgba(255,255,255,0.12);
}
body.nav-open .menu-lines,
body.nav-open .menu-lines::before,
body.nav-open .menu-lines::after { background: white; }
body.nav-open .menu-open .menu-lines { background: transparent; }

/* =========================
   NAV DRAWER
========================= */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background:
    radial-gradient(circle at 52% 52%, rgba(91,200,232,0.08), transparent 28%),
    linear-gradient(135deg, #0D1B2A 0%, #081624 100%);
  color: white;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  overflow-x: hidden;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateY(0); }

.nav-drawer::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.28;
  pointer-events: none;
}

.nav-drawer::after {
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%,-50%);
  color: rgba(255,255,255,0.035);
  font-size: clamp(4rem,13vw,13rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
}

.drawer-inner {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 80px));
  min-height: 100vh;
  margin: 0 auto;
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
}

.drawer-nav { list-style: none; padding: 0; margin: 0; display: grid; }
.drawer-nav li { border-bottom: 1px solid rgba(255,255,255,0.14); }

.drawer-nav a {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 0 24px;
  color: white;
  text-decoration: none;
}
.drawer-nav a span:first-child {
  color: var(--cyan);
  font-size: clamp(0.78rem,1vw,0.92rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}
.drawer-nav a span:last-child {
  color: white;
  font-size: clamp(3.6rem,7vw,6.8rem);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.035em;
  transition: color 0.25s ease, transform 0.25s ease;
}
.drawer-nav a:hover span:last-child { color: var(--cyan); transform: translateX(10px); }


/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--navy);
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(91,200,232,0.28), transparent 26%),
    linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.62) 46%, rgba(91,200,232,0.30) 100%),
    linear-gradient(180deg, rgba(13,27,42,0.30), rgba(13,27,42,0.74));
}


.hero-logo-stage {
  position: relative; z-index: 2;
  display: grid;
  place-items: center;
}
.hero-logo-panel { width: min(420px,68vw); }
.hero-logo { width: 100%; height: auto; }

.hero-scroll-cue {
  position: absolute;
  left: 50%; bottom: 34px;
  transform: translateX(-50%);
  width: 34px; height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.36);
  z-index: 2;
}
.hero-scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%; top: 12px;
  width: 6px; height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  transform: translateX(-50%);
  animation: cue 1.8s infinite;
}
@keyframes cue {
  0%   { opacity: 0; transform: translate(-50%,0); }
  30%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,18px); }
}

/* =========================
   SLOGAN Ã¢â‚¬â€ Always Moving Forward
   Layout alineado + flechas grandes animadas
========================= */
.slogan-section {
  position: relative;
  height: 115vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(91,200,232,0.24), transparent 32%),
    radial-gradient(circle at 16% 78%, rgba(91,200,232,0.12), transparent 28%),
    linear-gradient(135deg, #EAF7FC 0%, #F4F6F8 54%, #FFFFFF 100%);
}

.slogan-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
}

.slogan-section::after {
  position: absolute;
  right: -4vw;
  bottom: 2vh;
  color: rgba(13,27,42,0.035);
  font-size: clamp(5rem, 15vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.8;
  pointer-events: none;
}

.slogan-sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slogan-shell {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 90px);
}

.services-main-title {
  color: var(--navy);
  font-size: clamp(4.8rem, 8.2vw, 9.4rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  font-weight: 800;
  text-align: left;
  margin: 0;
}

/* Entrada desde extremos al centro */
.slogan-left {
  display: block;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}

.slogan-center {
  display: block;
  opacity: 0;
  transform: translateY(54px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1) 0.14s,
              transform 0.85s cubic-bezier(0.22,1,0.36,1) 0.14s;
}

.slogan-right {
  display: block;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1) 0.28s,
              transform 0.85s cubic-bezier(0.22,1,0.36,1) 0.28s;
}

.slogan-visible .slogan-left,
.slogan-visible .slogan-center,
.slogan-visible .slogan-right {
  opacity: 1;
  transform: none;
}

/* Flechas grandes tipo sÃƒÂ­mbolo de avance */
.services-arrow-row {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  min-height: clamp(130px, 17vw, 230px);
  transform: translateX(-8px);
}

.services-arrow-row span {
  display: block;
  width: clamp(86px, 10vw, 160px);
  height: clamp(110px, 13vw, 210px);
  font-size: 0;
  line-height: 0;
  clip-path: polygon(0 0, 58% 0, 100% 50%, 58% 100%, 0 100%, 42% 50%);
  background: linear-gradient(90deg, rgba(91,200,232,0.08), var(--cyan));
  filter: drop-shadow(0 26px 34px rgba(13,27,42,0.10));
  animation: arrowDrive 1.8s ease-in-out infinite;
}

.services-arrow-row span:nth-child(1) {
  opacity: 0.28;
  animation-delay: 0s;
}

.services-arrow-row span:nth-child(2) {
  opacity: 0.52;
  animation-delay: 0.12s;
}

.services-arrow-row span:nth-child(3) {
  opacity: 0.92;
  background: linear-gradient(90deg, #5BC8E8, #1687B7);
  animation-delay: 0.24s;
}

.services-arrow-row span:nth-child(n+4) {
  display: none;
}

@keyframes arrowDrive {
  0%, 100% {
    transform: translateX(0) scale(1);
  }

  50% {
    transform: translateX(16px) scale(1.04);
  }
}

.servicios-tit {
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.42;
  letter-spacing: -0.012em;
  max-width: 100%;
  margin: 12px 0 0;
}

.servicios-scroll {
  position: relative;
  height: 320vh; 
  background:
    radial-gradient(circle at 76% 18%, rgba(91,200,232,0.16), transparent 32%),
    linear-gradient(135deg, #5BC8E8 0%, #9EDFF2 40%, #EAF7FC 100%);
}

.servicios-scroll::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,27,42,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,27,42,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.38;
  pointer-events: none;
}

.servicios-sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.servicios-shell {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: clamp(16px, 2.4vh, 28px);
  height: 100%;
  padding: clamp(26px, 4vh, 42px) 0;
}

/* Cabecera: eyebrow + intro */
.servicios-header {
  margin-top: 0;
  max-width: 100%;
}

.servicios-header .eyebrow {
  color: var(--paper);
  margin-bottom: 20px;
}

.servicios-intro {
  color: rgba(13,27,42,0.68);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.68;
  font-weight: 500;
  max-width: 640px;
}

/* Stage: copy + dots lado a lado */
.servicios-stage {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 56px);
}

/* ÃƒÂrea de paneles apilados */
.servicios-copy {
  position: relative;
  flex: 1;
  min-height: clamp(340px, 42vh, 440px);
}

/* Cada panel de servicio */
.servicio-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  justify-items: start;
  opacity: 0;
  pointer-events: none;
  transform: translateY(32px);
  filter: blur(6px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1),
              filter 0.6s ease;
}
.servicio-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  filter: blur(0);
}

.servicio-num {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.45;
}

.servicio-panel h3 {
  color: var(--navy);
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  max-width: 820px;
}

.servicio-panel > p {
  color: rgba(13,27,42,0.62);
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.76;
  font-weight: 500;
  max-width: 620px;
}
.service-tags-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 8px; }
/* Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  border: 1.2px solid #1687B7; 
  color: #1687B7;
  border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 16px;
  font-size: .72rem; font-weight: 800;
  transition: background .22s, color .22s, border-color .22s, transform .22s;
}
.service-tags:hover { transform:scale(1.05);  }

/* Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.service-link::after {
  content: "";
  width: 48px; height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.service-link:hover::after { width: 70px; }

/* Progress dots Ã¢â‚¬â€ lado derecho */
.servicios-dots {
  display: grid;
  gap: 12px;
  flex-shrink: 0;
  padding-right: 8px;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(13,27,42,0.18);
  transition: height 0.35s cubic-bezier(0.22,1,0.36,1),
              background 0.35s ease;
  display: block;
}
.sdot.active {
  height: 38px;
  background: var(--navy);
}

/* =========================
   VALUES
========================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  min-height: 90vh;
}
.value-card {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border-right: 1px solid rgba(255,255,255,0.16);
}
.value-card:last-child { border-right: none; }

.value-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.72) brightness(0.42);
  transform: scale(1.02);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.value-card:hover .value-bg { transform: scale(1.06); filter: saturate(0.82) brightness(0.38); }

.value-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(91,200,232,0.20) 0%, rgba(17,35,56,0.36) 28%, rgba(13,27,42,0.82) 100%);
  z-index: 1;
}

.value-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 42px 34px 46px;
}

.value-index {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.38);
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.84);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.value-content h3 { color: white; font-size: clamp(2rem,3vw,3.1rem); letter-spacing: -0.015em; margin-bottom: 14px; }
.value-content p  { color: rgba(255,255,255,0.88); font-size: 1rem; line-height: 1.78; max-width: 360px; }

/* =========================
   PROCESS
========================= */
.process-band {
  position: relative;
  overflow: hidden;
  background-color: #091624;
  background-image:
    linear-gradient(rgba(91,200,232,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,200,232,0.055) 1px, transparent 1px),
    radial-gradient(circle at 18% 22%, rgba(91,200,232,0.13), transparent 28%),
    linear-gradient(180deg, #091624 0%, #0D1B2A 100%);
  background-size: 64px 64px, 64px 64px, auto, auto;
  color: white;
  padding: clamp(100px,10vw,150px) 0;
}
.process-band::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9,22,36,0.94) 0%, rgba(9,22,36,0.52) 45%, rgba(9,22,36,0.92) 100%),
    radial-gradient(circle at 78% 18%, rgba(91,200,232,0.10), transparent 30%);
  z-index: 0;
}
.process-band .container { position: relative; z-index: 1; }
.process-band .section-kicker { color: var(--cyan); }
.process-band .section-title  { color: white; }

.process-lead { max-width: 900px; margin-bottom: 76px; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px,1fr));
  gap: 42px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 18px; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.20);
}
.step-card { position: relative; padding-top: 54px; }
.step-dot {
  position: absolute;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 9px rgba(91,200,232,0.16);
}
.step-no   { color: rgba(255,255,255,0.62); font-size: 0.86rem; font-weight: 700; letter-spacing: 0.12em; margin-bottom: 14px; }
.step-card h3 { color: white; font-size: 2rem; margin-bottom: 12px; }
.step-card p  { color: rgba(255,255,255,0.74); font-size: 1.02rem; line-height: 1.82; max-width: 350px; }

/* =========================
   METRICS
========================= */
.metrics-world-section {
  background:
    radial-gradient(circle at 76% 18%, rgba(91,200,232,0.12), transparent 30%),
    linear-gradient(135deg, #EAF7FC 0%, #F4F6F8 58%, #FFFFFF 100%);
  padding: clamp(64px, 7vw, 96px) 0;
}
.metrics-world-header { max-width: 900px; margin-bottom: clamp(44px,6vw,70px); }
.metrics-world-eyebrow {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.metrics-world-title {
  font-size: clamp(2rem,3.8vw,3.65rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
  font-weight: 800;
  max-width: 900px;
  color: var(--navy);
}
.metrics-world-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px,1fr));
  gap: clamp(22px,4vw,42px);
}
.world-metric-value { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 18px; }
.world-prefix, .world-number, .world-suffix { color: var(--cyan); line-height: 0.9; }
.world-prefix { font-size: clamp(2rem,2.6vw,2.9rem); font-weight: 600; transform: translateY(10px); }
.world-number { font-size: clamp(4rem,5.8vw,6.4rem); font-weight: 600; letter-spacing: -0.01em; }
.world-suffix { font-size: clamp(2rem,3vw,3.1rem); font-weight: 600; transform: translateY(12px); }
.world-metric h3 { font-size: 1.12rem; line-height: 1.4; margin-bottom: 10px; }
.world-metric p  { max-width: 240px; font-size: 1rem; line-height: 1.76; }

/* =========================
   CTA CYAN
========================= */
.cta-cyan {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.5), transparent 28%),
    linear-gradient(135deg, #5BC8E8 0%, #EAF7FC 100%);
  color: var(--navy);
}
.cta-cyan::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,27,42,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,27,42,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  pointer-events: none;
}
.cta-cyan-row {
  display: grid;
  gap: clamp(40px,8vw,120px);
}
.cta-cyan .eyebrow { color: var(--paper); }
.cta-cyan .section-title { color: var(--navy); max-width: 900px; }
.cta-cyan-copy p:last-child {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(13,27,42,0.72);
  font-weight: 500;
}
.cta-cyan-btn {
  background: var(--navy);
  color: white;
  border: 1px solid var(--navy);
  white-space: nowrap;
}
.cta-cyan-btn:hover { background: transparent; color: var(--navy); }

/* =========================
   FOOTER
========================= */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(91,200,232,0.12), transparent 26%),
    linear-gradient(135deg, #081624 0%, #0D1B2A 100%);
  color: white;
  padding: clamp(72px,8vw,110px) 0 32px;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.24;
  pointer-events: none;
}
.footer-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px,1.2fr) minmax(180px,0.45fr) minmax(260px,0.7fr);
  gap: clamp(42px,7vw,100px);
  align-items: start;
}
.footer-logo { width: clamp(130px,12vw,190px); height: auto; margin-bottom: 28px; }
.footer-brand-block p { max-width: 430px; color: rgba(255,255,255,0.68); line-height: 1.75; }
.footer-label { color: var(--cyan); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 22px; }
.footer-nav, .footer-contact { display: grid; gap: 14px; list-style: none; padding: 0; margin: 0; }
.footer-nav a, .footer-contact a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.22s ease, transform 0.22s ease;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--cyan); transform: translateX(4px); }
.footer-bottom {
  position: relative; z-index: 1;
  margin-top: clamp(56px,7vw,90px);
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.13);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,0.48);
  font-size: 0.9rem;
}


/* =========================
   REVEAL
========================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .services-main-title {
    text-align: center;
    font-size: clamp(4rem, 15vw, 7rem);
  }
  .services-arrow-row {
    justify-content: center;
    transform: none;
    min-height: clamp(90px, 24vw, 160px);
  }
  .services-arrow-row span {
    width: clamp(64px, 18vw, 120px);
    height: clamp(82px, 22vw, 150px);
  }

  /* Servicios mobile: sin sticky, apilados */
  .servicios-scroll { height: auto; }
  .servicios-sticky {
    position: relative;
    top: auto;
    height: auto;
    padding: 0;
    align-items: flex-start;
  }
  .servicios-shell {
    width: min(100% - 36px, 1320px);
    grid-template-rows: auto;
    height: auto;
    gap: 28px;
    padding: 0;
  }
  .servicios-header {
    padding-top: clamp(64px, 8vw, 96px);
    padding-bottom: 0;
  }
  .servicios-stage { flex-direction: column; gap: 28px; align-items: flex-start; }
  .servicios-copy {
    position: relative;
    min-height: auto;
    padding-bottom: clamp(64px, 8vw, 96px);
    width: 100%;
  }
  .servicio-panel {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    filter: none;
    margin-bottom: 48px;
  }
  .servicio-panel:last-child { margin-bottom: 0; }
  .servicios-dots { display: none; }
  .metrics-world-row { grid-template-columns: repeat(2, minmax(220px,1fr)); }
}

@media (max-width: 980px) {
  .container { width: min(100% - 36px, 1320px); }
  .footer-layout { grid-template-columns: 1fr; }

  /* Slogan mobile */
  .slogan-section { height: auto; overflow: visible; }
  .slogan-sticky {
    position: relative;
    top: auto;
    height: auto;
    padding: clamp(64px, 10vw, 96px) 0 clamp(32px, 5vw, 48px);
  }
  .slogan-shell {
    width: min(100% - 36px, 1320px);
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .services-main-title {
    text-align: center;
    font-size: clamp(4rem, 15vw, 7rem);
  }
  .services-arrow-row {
    justify-content: center;
    transform: none;
    min-height: clamp(90px, 24vw, 160px);
  }
  .services-arrow-row span {
    width: clamp(64px, 18vw, 120px);
    height: clamp(82px, 22vw, 150px);
  }

  /* Servicios mobile: sin sticky, apilados */
  .servicios-scroll { height: auto; }
  .servicios-sticky {
    position: relative;
    top: auto;
    height: auto;
    padding: 0;
    align-items: flex-start;
  }
  .servicios-shell {
    width: min(100% - 36px, 1320px);
    grid-template-rows: auto;
    height: auto;
    gap: 28px;
    padding: 0;
  }
  .servicios-header {
    padding-top: clamp(64px, 8vw, 96px);
    padding-bottom: 0;
  }
  .servicios-stage { flex-direction: column; gap: 28px; align-items: flex-start; }
  .servicios-copy {
    position: relative;
    min-height: auto;
    padding-bottom: clamp(64px, 8vw, 96px);
    width: 100%;
  }
  .servicio-panel {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    filter: none;
    margin-bottom: 48px;
  }
  .servicio-panel:last-child { margin-bottom: 0; }
  .servicios-dots { display: none; }

  .values-grid, .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .value-card { min-height: 420px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.16); }

  .cta-cyan-row { grid-template-columns: 1fr; align-items: start; }
  .cta-cyan-btn { width: fit-content; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 760px) {
  .drawer-inner {
    width: min(100% - 36px, 1180px);
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: calc(var(--header-h) + 52px);
    padding-bottom: 52px;
    align-items: start;
  }
  .drawer-nav a { grid-template-columns: 48px 1fr; gap: 16px; padding: 18px 0 22px; }
  .drawer-nav a span:last-child { font-size: clamp(3rem,16vw,5rem); }
.nav-drawer::after { font-size: 24vw; top: 62%; }
}

@media (max-width: 680px) {
  .site-header { padding: 0 16px; }
  .quote-link { display: none; }
  .services-main-title { font-size: clamp(3.8rem,16vw,6rem); }
  .section-title, .metrics-world-title { font-size: clamp(2.3rem,10vw,3.8rem); }
  .metrics-world-row { grid-template-columns: 1fr; }
}

@media (max-height: 760px) and (min-width: 981px) {
  .services-main-title { font-size: clamp(3.8rem,7vw,7rem); }
  .services-arrow-row span {
    width: clamp(76px, 8vw, 130px);
    height: clamp(96px, 10vw, 170px);
  }
  .servicios-shell { padding: clamp(20px,3vh,32px) 0; gap: clamp(14px,2vh,24px); }
  .servicio-panel h3 { font-size: clamp(2rem,3.5vw,3.6rem); }
  .servicios-copy { min-height: 260px; }
}
/* =========================
   SERVICIOS: panel-row + SVG illustrations
   SVGs grandes, centrados y sin texto interno
========================= */
.servicios-stage {
  align-items: center;
}

.servicios-copy {
  min-height: clamp(430px, 52vh, 560px);
}

.servicio-panel {
  align-content: center;
}

.panel-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 30vw, 430px);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  width: 100%;
}

.panel-text {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.service-illustration {
  width: 100%;
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
  opacity: 1;
}

.service-illustration svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.servicio-panel.active .service-illustration {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.service-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* lÃ­neas sutiles: sin efecto neÃ³n fuerte */
.route-subtle,
.service-orbit {
  stroke: rgba(13,27,42,0.22);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  animation: routeMove 5s linear infinite;
}

.route-subtle-2,
.service-orbit-2 {
  stroke: rgba(91,200,232,0.42);
  animation-delay: 0.8s;
}

/* Animaciones orgÃ¡nicas */
.float-slow,
.warehouse-float,
.dashboard-float,
.globe-soft {
  transform-origin: center;
}

.plane-float {
  animation: planeFloat 4.2s ease-in-out infinite;
  transform-origin: center;
}

.truck-drive,
.truck-pulse,
.mini-truck {
  animation: truckSoft 3.8s ease-in-out infinite;
  transform-origin: center;
}

.pin-pop,
.node,
.floating-card {
  animation: iconPop 3.2s ease-in-out infinite;
  transform-origin: center;
}

.pin-delay,
.n2,
.card-b {
  animation-delay: 0.55s;
}

.n3,
.card-a {
  animation-delay: 0.95s;
}

.ship-anim,
.forklift-move {
  animation: miniMove 3s ease-in-out infinite alternate;
  transform-origin: center;
}

.box-stack-a {
  animation: boxesA 3.8s ease-in-out infinite;
  transform-origin: center;
}

.box-stack-b {
  animation: boxesB 4.2s ease-in-out infinite;
  transform-origin: center;
}

.chart-line {
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: drawChart 2.8s ease-in-out infinite;
}

.chart-dot {
  animation: dotBlink 2.8s ease-in-out infinite;
  transform-origin: center;
}

.chart-dot.d2 { animation-delay: 0.15s; }
.chart-dot.d3 { animation-delay: 0.3s; }
.chart-dot.d4 { animation-delay: 0.45s; }
.chart-dot.d5 { animation-delay: 0.6s; }

.progress-load {
  transform-origin: right center;
  animation: loadBar 3s ease-in-out infinite;
}

.donut-spin {
  transform-origin: 196px 152px;
  animation: donutPulse 3.2s ease-in-out infinite;
}

.donut-delay {
  animation-delay: 0.4s;
}

/* Compatibilidad con clases viejas */
@keyframes dashFlow  { to { stroke-dashoffset: -20; } }
@keyframes ndPulse   { 0%,100%{opacity:.65} 50%{opacity:1} }
@keyframes shipSail  { 0%{transform:translateX(-3px)} 100%{transform:translateX(3px)} }
@keyframes spokeGlow { 0%,100%{opacity:.4} 50%{opacity:1} }
@keyframes ringOut   { 0%{r:8;opacity:.8} 100%{r:16;opacity:0} }

.flow-dash  { stroke-dasharray:5 4; animation: dashFlow 1.3s linear infinite; }
.nd-pulse   { animation: ndPulse 2s ease-in-out infinite; }
.spoke-glow { animation: spokeGlow 2.2s ease-in-out infinite; }
.ring-out   { animation: ringOut 2s ease-out infinite; }

/* Nuevos keyframes */
@keyframes routeMove {
  to { stroke-dashoffset: -48; }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes planeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -8px) rotate(1deg); }
}

@keyframes truckSoft {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

@keyframes iconPop {
  0%, 100% { transform: scale(1); opacity: 0.88; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes miniMove {
  0% { transform: translateX(-5px); }
  100% { transform: translateX(7px); }
}

@keyframes boxesA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes boxesB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes drawChart {
  0% { stroke-dashoffset: 170; opacity: 0.35; }
  45%, 75% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0.55; }
}

@keyframes dotBlink {
  0%, 30% { opacity: 0.2; transform: scale(0.85); }
  55%, 100% { opacity: 1; transform: scale(1); }
}

@keyframes loadBar {
  0%, 100% { transform: scaleX(0.45); }
  50% { transform: scaleX(1); }
}

@keyframes donutPulse {
  0%, 100% { opacity: 0.6; transform: rotate(0deg); }
  50% { opacity: 1; transform: rotate(12deg); }
}

/* Responsive */
@media (max-width: 1180px) {
  .panel-row {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: clamp(28px, 4vw, 56px);
  }

  .service-illustration {
    width: clamp(300px, 32vw, 440px);
    min-height: 280px;
  }
}

@media (max-width: 980px) {
  .servicios-copy {
    min-height: auto;
  }

  .panel-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-illustration {
    width: min(460px, 92vw);
    min-height: auto;
    justify-self: center;
    opacity: 1;
    transform: none;
    margin-top: 10px;
  }
}

@media (max-width: 680px) {
  .service-illustration {
    width: min(360px, 94vw);
  }
}


/* =========================
   PÃGINAS INTERNAS â€” estilos compartidos
========================= */

/* Header con fondo claro desde el inicio */
body.light-header .site-header {
  background: #ffffff;
  color: var(--navy);
  border-bottom-color: rgba(13,27,42,0.10);
}
body.light-header .menu-lines,
body.light-header .menu-lines::before,
body.light-header .menu-lines::after { background: var(--navy); }

/* Hero de pÃ¡ginas internas */
.page-hero {
  padding: calc(var(--header-h) + clamp(72px, 10vw, 120px)) 0 clamp(72px, 10vw, 110px);
  background:
    radial-gradient(circle at 80% 20%, rgba(91,200,232,0.18), transparent 34%),
    linear-gradient(135deg, #EAF7FC 0%, #F4F6F8 54%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,27,42,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,27,42,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.30;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero.dark {
  background:
    radial-gradient(circle at 78% 22%, rgba(91,200,232,0.22), transparent 32%),
    linear-gradient(135deg, #0D1B2A 0%, #081624 100%);
}
.page-hero.dark::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
}
.page-hero.dark .section-title { color: white; }
.page-hero.dark .eyebrow { color: var(--cyan); }

.section-copy {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.78;
  color: var(--muted);
  max-width: 640px;
  margin-top: 28px;
  font-weight: 500;
}


/* =========================
   SERVICIOS (pÃ¡gina)
========================= */
.tagline {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.chip-list span {
  border: 1px solid var(--line);
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--offwhite);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.chip-list span:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan);
}

/* =========================
   CONTACTO
========================= */

/* Honeypot anti-spam */
.hp { display: none; }

/* =========================
   RESPONSIVE â€” pÃ¡ginas internas
========================= */
@media (max-width: 980px) {
  .servicios-header { margin-top: 0; max-width: 100%; }
}
/* =========================
   FOOTER SOCIAL - IGUAL QUE SERVICES
========================= */

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-social a {
  display: inline-flex;
  transition: opacity .2s ease;
}

.footer-social a:hover {
  opacity: .7;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-social a[aria-label="Instagram"] svg {
  fill: none;
}