:root {
  /* Primary brand colors extracted from Servcal logo */
  --color-primary: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-primary-bright: #60a5fa;
  --color-accent: #06b6d4;
  --color-accent-dark: #0891b2;

  /* Legacy color aliases for component compatibility */
  --navy: #070d19;
  --navy-2: #0b1528;
  --navy-3: #0f2040;
  --blue: #1d4ed8;
  --blue-bright: #3b82f6;
  --blue-neon: #60a5fa;
  --blue-pale: #eff6ff;
  --orange: #06b6d4;
  --orange-dark: #0891b2;
  --paper: #ffffff;
  --mist: #f8fafc;
  --ink: #0f172a;
  --ink-soft: #475569;
  --line: #e2e8f0;
  --line-dark: rgba(59, 130, 246, 0.2);
  --success: #10b981;
  --container: 1220px;

  /* Neutral palette */
  --color-bg: #ffffff;
  --color-bg-muted: #f8fafc;
  --color-ink: #0f172a;
  --color-ink-soft: #475569;
  --color-line: #e2e8f0;
  --color-line-dark: rgba(59, 130, 246, 0.2);
  --color-success: #10b981;

  /* Shadows & radii */
  --shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 25px -10px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.15);
  --radius: 20px;
  --radius-sm: 10px;

  /* Layout */
  --container-max: 1220px;
  --bp-sm: 600px;
  --bp-md: 900px;
  --bp-lg: 1200px;

  /* Typography */
  --font-sans: 'Inter', "Segoe UI Variable", system-ui, -apple-system, sans-serif;
  --font-display: 'Sora', "Segoe UI Variable Display", system-ui, -apple-system, sans-serif;
  --font-mono: 'Fira Code', Consolas, monospace;

  /* Spacing tokens */
  --spacing-xxs: 4px;
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  /* Animation */
  --anim-duration: 300ms;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================================
   SCROLL PROGRESS BAR
   =========================================== */
.scroll-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 1200;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-neon));
  transition: width 0.05s linear;
}

/* ===========================================
   SITE NOISE OVERLAY
   =========================================== */
.site-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}


/* -------------------------------------------------
   Utility helpers (BEM‑friendly, mobile‑first)
   ------------------------------------------------- */
.u-flex { display: flex; }
.u-inline-flex { display: inline-flex; }
.u-grid { display: grid; }
.u-block { display: block; }
.u-inline { display: inline; }
.u-hidden { display: none !important; }
.u-relative { position: relative; }
.u-absolute { position: absolute; }
.u-fixed { position: fixed; }
.u-sticky { position: sticky; }
.u-w-full { width: 100%; }
.u-h-full { height: 100%; }
.u-max-w-container { max-width: var(--container-max); margin-inline: auto; }
.u-gap-xxs { gap: var(--spacing-xxs); }
.u-gap-xs { gap: var(--spacing-xs); }
.u-gap-sm { gap: var(--spacing-sm); }
.u-gap-md { gap: var(--spacing-md); }
.u-gap-lg { gap: var(--spacing-lg); }
.u-p-xxs { padding: var(--spacing-xxs); }
.u-p-xs { padding: var(--spacing-xs); }
.u-p-sm { padding: var(--spacing-sm); }
.u-p-md { padding: var(--spacing-md); }
.u-p-lg { padding: var(--spacing-lg); }
.u-m-xxs { margin: var(--spacing-xxs); }
.u-m-xs { margin: var(--spacing-xs); }
.u-m-sm { margin: var(--spacing-sm); }
.u-m-md { margin: var(--spacing-md); }
.u-m-lg { margin: var(--spacing-lg); }

/* -------------------------------------------------
   Responsive breakpoints (mobile‑first)
   ------------------------------------------------- */
@media (min-width: var(--bp-sm)) {
  /* Example: small screen adjustments */
}
@media (min-width: var(--bp-md)) {
  /* Example: medium screen adjustments */
}
@media (min-width: var(--bp-lg)) {
  /* Example: large screen adjustments */
}

/* -------------------------------------------------
   Reduced‑motion preference
   ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.5vw, 4.5rem);
  font-weight: 620;
}

h3 {
  font-size: 1.45rem;
}

::selection {
  color: #fff;
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid rgba(244, 122, 42, .7);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  color: rgba(255, 255, 255, .78);
  background: var(--navy);
  font-size: .76rem;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner p {
  margin: 0;
  letter-spacing: .02em;
}

.utility-inner p span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 192, 138, .12);
}

.utility-inner div {
  display: flex;
  gap: 24px;
}

.utility-inner a {
  transition: color .2s ease;
}

.utility-inner a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 13, 25, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 13, 25, 0.95);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(59, 130, 246, 0.2);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  filter: brightness(0) invert(1); /* Ensure the dark logo looks white on dark header */
}

.brand img {
  width: 158px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2vw, 29px);
  color: rgba(255, 255, 255, 0.85);
  font-size: .86rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 30px 0;
  transition: color 0.25s ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--blue-neon);
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  border-radius: 99px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5), 0 0 15px rgba(96, 165, 250, 0.3);
}

.nav-cta span {
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button-primary:hover {
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4), 0 0 15px rgba(96, 165, 250, 0.2);
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-neon));
}

.button-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.button-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-bright);
  font-size: .88rem;
  font-weight: 600;
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
  padding-bottom: 2px;
  transition: all 0.25s ease;
}

.text-link:hover {
  gap: 12px;
  color: var(--blue-neon);
  border-color: var(--blue-neon);
}

.text-link-dark {
  color: var(--ink);
  border-color: rgba(15, 23, 42, 0.15);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span:empty {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow > span:not(:empty) {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: .62rem;
}

.eyebrow-dark {
  color: var(--blue);
}

/* Custom cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: rgba(96, 165, 250, 0.4);
  border: 1.5px solid rgba(96, 165, 250, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  z-index: 9999;
  opacity: 0;
}

.custom-cursor.is-active {
  opacity: 1;
}

.custom-cursor.is-hovering {
  width: 36px;
  height: 36px;
  background: rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.7);
}

.hero {
  position: relative;
  min-height: clamp(650px, 80vh, 850px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}

.hero-photo {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: url("../images/hero-profesionales.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.15;
  filter: grayscale(1) brightness(0.8) contrast(1.2);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.18), transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(29, 78, 216, 0.25), transparent 60%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-bright) 0 63%, var(--orange) 63% 100%);
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(59, 130, 246, 0.15) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(59, 130, 246, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 30% 50%, #000 30%, transparent 80%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero-copy {
  width: min(650px, 72%);
  animation: hero-arrive .75s ease-out both;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 32px;
  color: #ffffff;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 em {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-neon), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 800;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.75;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-signals {
  position: absolute;
  right: 0;
  bottom: 45px;
  display: flex;
  gap: 10px;
}

.hero-signals span {
  padding: 8px 16px;
  color: var(--blue-neon);
  background: rgba(15, 29, 54, 0.6);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 99px;
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes hero-arrive {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-accent-line {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-bright) 0 63%, var(--orange) 63% 100%);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
}

.hero-scroll-indicator:hover {
  color: rgba(255, 255, 255, 0.9);
}

.scroll-dot {
  width: 24px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  position: relative;
  overflow: hidden;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(96, 165, 250, 0.8);
  border-radius: 99px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(14px); opacity: 0.1; }
}


.assurance {
  position: relative;
  z-index: 3;
  background: var(--navy-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

/* Alias for assurance items */
.assurance-item {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.assurance-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.assurance-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}


.assurance-grid > div {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.assurance-grid > div:hover {
  background: rgba(255, 255, 255, 0.02);
}

.assurance-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.assurance-grid strong {
  margin-bottom: 6px;
  color: var(--blue-neon);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
}

.assurance-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: .82rem;
  font-weight: 500;
}

.about {
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -260px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(7, 91, 168, .12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 60px rgba(7, 91, 168, .018), inset 0 0 0 120px rgba(7, 91, 168, .018);
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  gap: 72px 84px;
  align-items: center;
}

.section-index {
  position: absolute;
  top: -45px;
  left: -5px;
  color: rgba(7, 91, 168, .06);
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 750;
  line-height: 1;
  pointer-events: none;
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  max-width: 660px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-soft);
}

.about-copy .lead-copy {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.65;
}

.about-copy .text-link {
  margin-top: 16px;
}

.about-visual {
  position: relative;
}

.about-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 58%;
  height: 58%;
  background: var(--blue-pale);
  border-radius: 2px 24px 2px 2px;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 1.17 / .9;
  object-fit: cover;
  border-radius: 3px var(--radius) 3px var(--radius);
  box-shadow: var(--shadow);
}

.image-note {
  position: absolute;
  right: -24px;
  bottom: 24px;
  width: min(310px, 72%);
  padding: 18px 21px;
  color: #fff;
  background: rgba(6, 27, 51, .94);
  border-left: 3px solid var(--orange);
  backdrop-filter: blur(12px);
}

.image-note span {
  display: block;
  margin-bottom: 6px;
  color: #74bbf1;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.image-note strong {
  display: block;
  font-size: .93rem;
  line-height: 1.45;
}

.purpose-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.purpose-card {
  min-height: 260px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  align-items: center;
  padding: 24px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 3px var(--radius) 3px var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}

.purpose-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.purpose-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: 2px 12px 2px 12px;
}

.purpose-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.purpose-card h3 {
  margin-bottom: 13px;
  font-size: 1.45rem;
}

.purpose-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.6;
}

.services {
  position: relative;
  overflow: hidden;
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: linear-gradient(rgba(59, 130, 246, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.2) 1px, transparent 1px);
  background-size: 60px 60px;
}

.services .container {
  position: relative;
}

.section-heading {
  margin-bottom: 58px;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  gap: 70px;
  align-items: end;
}

.heading-split h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.heading-split > p {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px -5px rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 24px 48px -12px rgba(59, 130, 246, 0.15), 0 0 20px rgba(96, 165, 250, 0.1);
  transform: translateY(-10px);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #cbd5e1;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 500;
}

.service-kicker {
  margin-bottom: 14px;
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 300px;
  margin-bottom: 18px;
  color: #0a1628;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-card > p:last-child,
.service-card > p:not(.service-kicker) {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.6;
}

.service-card a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 24px;
  color: #fff;
  font-size: .83rem;
  font-weight: 680;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.service-card-featured {
  grid-column: span 2;
  min-height: 360px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 40px -15px rgba(7, 13, 25, 0.5);
}

.service-card-featured::before {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -90px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 0 40px rgba(59, 130, 246, 0.02), inset 0 0 0 80px rgba(59, 130, 246, 0.01);
}

.service-card-featured .service-number {
  color: rgba(96, 165, 250, 0.5);
}

.service-card-featured .service-kicker {
  color: var(--blue-neon);
}

.service-card-featured h3 {
  position: relative;
  color: #fff;
  font-size: 2.2rem;
}

.service-card-featured > p:not(.service-kicker) {
  position: relative;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.75);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.service-icon {
  position: absolute;
  right: 45px;
  bottom: 42px;
  width: 110px;
  height: 110px;
}

.service-icon i {
  position: absolute;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 50%;
}

.service-icon i:nth-child(1) { inset: 0; }
.service-icon i:nth-child(2) { inset: 16px; }
.service-icon i:nth-child(3) { inset: 32px; background: var(--orange); border-color: var(--orange); }

.telecom-feature {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  padding: 80px 0;
}

.telecom-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .27;
  background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.telecom-feature-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, .75fr);
  gap: 60px;
  align-items: center;
}

.telecom-feature-copy {
  padding: 0;
}

.telecom-feature .eyebrow {
  color: #8bcaf6;
}

.telecom-feature .eyebrow > span:not(:empty) {
  color: var(--navy);
  background: #8bcaf6;
}

.telecom-feature h2 {
  max-width: 720px;
  color: #fff;
}

.telecom-feature-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
}

.tech-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 31px 0 38px;
}

.tech-tags span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .05em;
}

.telecom-feature-media {
  position: relative;
  align-self: end;
}

.telecom-feature-media::before {
  content: "";
  position: absolute;
  top: 5%;
  right: -24%;
  width: 112%;
  aspect-ratio: 1;
  border: 1px solid rgba(73, 164, 226, .27);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px rgba(73, 164, 226, .025), inset 0 0 0 140px rgba(73, 164, 226, .02);
}

.telecom-feature-media img {
  position: relative;
  z-index: 1;
  max-height: 700px;
  margin-left: auto;
  object-fit: contain;
  filter: saturate(.78) contrast(1.05);
}

.telecom-status {
  position: absolute;
  z-index: 2;
  bottom: 60px;
  left: -50px;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(8, 39, 70, .91);
  border: 1px solid rgba(255, 255, 255, .19);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .28);
}

.telecom-status i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(37, 192, 138, .12);
}

.telecom-status span,
.telecom-status strong {
  display: block;
}

.telecom-status span {
  color: rgba(255, 255, 255, .6);
  font-size: .7rem;
}

.telecom-status strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: .84rem;
}

.method {
  background: #fff;
}

.method-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  counter-reset: method;
}

.method-list li {
  position: relative;
  min-height: 270px;
  padding: 28px 28px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-list li:last-child {
  border-right: 1px solid var(--line);
}

.method-list li::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transition: width .3s ease;
}

.method-list li:hover::after {
  width: 100%;
}

.method-list > li > span {
  display: block;
  margin-bottom: 68px;
  color: #9cafbf;
  font-family: var(--font-mono);
  font-size: .68rem;
}

.method-list div > p {
  margin-bottom: 9px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.method-list h3 {
  margin-bottom: 13px;
  font-size: 1.4rem;
}

.method-list small {
  color: var(--ink-soft);
  font-size: .78rem;
}

.clients {
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(310px, .7fr) minmax(0, 1.3fr);
  gap: 85px;
  align-items: center;
}

.clients-copy h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
}

.clients-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--line);
  border: 1px solid var(--line);
  gap: 1px;
}

.logo-grid > div {
  min-height: 136px;
  display: grid;
  place-items: center;
  padding: 26px 20px;
  background: #fff;
  transition: background .2s ease;
}

.logo-grid > div:hover {
  background: var(--blue-pale);
}

.logo-grid img {
  width: auto;
  max-width: 118px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .68;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.logo-grid > div:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.clients-reference {
  grid-column: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
}

.clients-reference strong {
  color: var(--ink);
  font-size: .86rem;
}

.clients-reference p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .78rem;
}

.clients-reference a {
  display: inline-flex;
  gap: 10px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.innovation {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f9fbfd 0%, #f0f6fd 100%);
  border-top: 1px solid var(--line);
}

.innovation-map {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: .72;
  background: url("../images/mapa-tecnologia.png") center / cover no-repeat;
  mix-blend-mode: multiply;
}

.innovation::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 251, 253, .98), rgba(249, 251, 253, .72));
}

.innovation-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .65fr);
  gap: 100px;
  align-items: center;
}

.innovation-copy h2 {
  max-width: 720px;
}

.innovation-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.innovation-copy .text-link {
  margin-top: 16px;
}

.innovation-card {
  position: relative;
  padding: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  box-shadow: 0 20px 50px -10px rgba(59, 130, 246, 0.12);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.innovation-card > span {
  display: block;
  margin-bottom: 32px;
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.innovation-card img {
  max-width: 250px;
  margin: 0 auto 25px;
}

.innovation-card p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

.light-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.light-scale i {
  height: 5px;
  background: var(--blue-pale);
  border-radius: 2px;
}

.light-scale i:nth-child(1) { background: #bfe0f8; }
.light-scale i:nth-child(2) { background: #83c3ed; }
.light-scale i:nth-child(3) { background: var(--blue-bright); }
.light-scale i:nth-child(4) { background: #ef9a62; }
.light-scale i:nth-child(5) { background: var(--orange); }

.contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.contact::before {
  content: "";
  position: absolute;
  top: -360px;
  left: -300px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(33, 133, 205, .2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 85px rgba(33, 133, 205, .018), inset 0 0 0 170px rgba(33, 133, 205, .018);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, .74fr);
  gap: 100px;
  align-items: start;
}

.contact .eyebrow {
  color: #8bcaf6;
}

.contact .eyebrow > span:not(:empty) {
  color: var(--navy);
  background: #8bcaf6;
}

.contact-copy h2 {
  max-width: 700px;
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, .64);
  font-size: 1.02rem;
}

.contact-details {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-style: normal;
  border-top: 1px solid var(--line-dark);
}

.contact-details > * {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-details > *:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
}

.contact-details > *:nth-child(even) {
  padding-left: 24px;
}

.contact-details span {
  margin-bottom: 5px;
  color: #75bde9;
  font-family: var(--font-mono);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-details strong {
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-details a:hover strong {
  color: #8bcaf6;
}

.contact-form {
  padding: 36px;
  color: var(--ink);
  background: #fff;
  border-radius: 2px var(--radius) 2px var(--radius);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .25);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-heading strong {
  font-size: .82rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 17px;
  color: #42566b;
  font-size: .73rem;
  font-weight: 680;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #d5dfe8;
  border-radius: 5px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input {
  height: 48px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 91, 168, .1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a4b3;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 13px 0 0;
  color: #718396;
  font-size: .7rem;
  text-align: center;
}

.site-footer {
  color: rgba(255, 255, 255, .6);
  background: #041424;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-main {
  min-height: 250px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
  padding: 55px 0;
}

.footer-brand img {
  width: 165px;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.footer-identity p {
  margin: 0;
  font-size: .82rem;
}

.footer-identity .footer-brand {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.footer-columns > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-columns strong {
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-columns a {
  font-size: .76rem;
  transition: color .2s ease;
}

.footer-columns a:hover,
.footer-columns a[aria-current="page"] {
  color: #fff;
}

.footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .68rem;
}

.footer-bottom p {
  margin: 0;
}

/* Páginas corporativas */
.corporate-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #f4f8fb;
}

.corporate-hero::before,
.news-hero::before,
.document-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(7, 91, 168, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 91, 168, .1) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.corporate-hero-layout {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .78fr);
  gap: 75px;
  align-items: center;
}

.corporate-hero h1,
.service-page-hero h1,
.news-hero h1,
.document-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 6vw, 6.2rem);
  font-weight: 620;
}

.corporate-hero-copy > p:not(.eyebrow),
.news-hero-layout > div:first-child > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.corporate-hero-media {
  position: relative;
}

.corporate-hero-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -24px;
  right: -24px;
  width: 68%;
  height: 78%;
  background: var(--blue-pale);
  border-radius: 2px 24px 2px 2px;
}

.corporate-hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: .92 / 1;
  object-fit: cover;
  border-radius: 2px 20px 2px 20px;
  box-shadow: var(--shadow);
}

.corporate-hero-card {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 30px;
  min-width: 215px;
  padding: 19px 22px;
  color: #fff;
  background: rgba(6, 27, 51, .94);
  border-left: 3px solid var(--orange);
  backdrop-filter: blur(12px);
}

.corporate-hero-card span,
.corporate-hero-card strong,
.corporate-hero-card small {
  display: block;
}

.corporate-hero-card span,
.corporate-hero-card small {
  color: rgba(255, 255, 255, .64);
  font-size: .65rem;
}

.corporate-hero-card strong {
  margin: 2px 0;
  font-size: 1.5rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(380px, .7fr);
  gap: 65px 100px;
}

.story-layout h2 {
  max-width: 720px;
}

.story-copy {
  padding-top: 45px;
}

.story-copy p {
  color: var(--ink-soft);
}

.story-copy .lead-copy {
  color: var(--ink);
  font-size: 1.15rem;
}

.story-facts {
  grid-column: 1 / -1;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.story-facts div {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  border-right: 1px solid var(--line);
}

.story-facts div:last-child {
  border-right: 0;
}

.story-facts dt {
  margin-bottom: 7px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 680;
}

.story-facts dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: .77rem;
}

.purpose-section {
  padding: 115px 0;
  color: #fff;
  background: var(--navy);
}

.purpose-section h2 {
  color: #fff;
}

.purpose-section .eyebrow {
  color: #8bcaf6;
}

.purpose-section .heading-split > p {
  color: rgba(255, 255, 255, .62);
}

.purpose-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.purpose-feature-grid article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line-dark);
  border-radius: 2px 16px 2px 16px;
}

.purpose-feature-grid img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  border-radius: 2px 12px 2px 12px;
}

.purpose-feature-grid span {
  color: #8bcaf6;
  font-family: var(--font-mono);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.purpose-feature-grid h3 {
  margin: 10px 0 14px;
  color: #fff;
}

.purpose-feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .83rem;
}

.values-section {
  background: var(--mist);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.values-grid article {
  min-height: 290px;
  padding: 30px;
  background: #fff;
}

.values-grid span {
  display: block;
  margin-bottom: 76px;
  color: #94a6b7;
  font-family: var(--font-mono);
  font-size: .65rem;
}

.values-grid h3 {
  margin-bottom: 15px;
}

.values-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .84rem;
}

.team-section {
  color: #fff;
  background: var(--navy);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .8fr);
  gap: 85px;
  align-items: center;
}

.team-media img {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
}

.team-copy {
  padding: 80px 0;
}

.team-copy .eyebrow {
  color: #8bcaf6;
}

.team-copy .eyebrow > span:not(:empty) {
  color: var(--navy);
  background: #8bcaf6;
}

.team-copy h2 {
  color: #fff;
}

.team-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .65);
}

/* Página de servicios */
.service-page-hero {
  position: relative;
  padding: 105px 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .27;
  background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 62px 62px;
}

.service-page-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .55fr);
  gap: 100px;
  align-items: center;
}

.service-page-hero h1 {
  max-width: 850px;
  color: #fff;
}

.service-page-hero-layout > div:first-child > p:not(.eyebrow) {
  max-width: 730px;
  color: rgba(255, 255, 255, .67);
  font-size: 1.08rem;
}

.service-page-hero .button {
  margin-top: 22px;
}

.breadcrumb-light {
  color: rgba(255, 255, 255, .52);
}

.service-page-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
}

.service-page-index span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 14px 15px;
  color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .045);
  font-family: var(--font-mono);
  font-size: .62rem;
  line-height: 1.4;
}

.service-detail-section {
  background: var(--mist);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-detail-card {
  min-height: 430px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px 16px 2px 16px;
}

.service-detail-card > span {
  display: block;
  margin-bottom: 50px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-detail-card h3 {
  margin-bottom: 17px;
  font-size: 1.85rem;
}

.service-detail-card > p,
.service-detail-card li {
  color: var(--ink-soft);
  font-size: .87rem;
}

.service-detail-card ul {
  margin: 23px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 25px;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding-left: 16px;
}

.service-detail-card li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--orange);
}

.service-detail-card a {
  display: inline-flex;
  gap: 12px;
  margin-top: 28px;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
}

.service-detail-card-featured {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #073763);
  border-color: transparent;
}

.service-detail-card-featured > span,
.service-detail-card-featured h3,
.service-detail-card-featured a {
  color: #fff;
}

.service-detail-card-featured > p,
.service-detail-card-featured li {
  color: rgba(255, 255, 255, .72);
}

.service-fit {
  padding: 110px 0;
  color: #fff;
  background: var(--navy);
}

.service-fit-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, .7fr);
  gap: 100px;
  align-items: center;
}

.service-fit h2 {
  color: #fff;
}

.service-fit-layout > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .65);
}

.service-fit ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.service-fit li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-fit li > span {
  color: #76c3f3;
  font-family: var(--font-mono);
  font-size: .65rem;
}

.service-fit strong,
.service-fit small {
  display: block;
}

.service-fit strong {
  color: #fff;
  font-size: .9rem;
}

.service-fit small {
  color: rgba(255, 255, 255, .55);
  font-size: .73rem;
}

.related-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.related-link-grid a {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: end;
  padding: 26px;
  background: var(--mist);
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease;
}

.related-link-grid a:hover {
  border-color: rgba(7, 91, 168, .35);
  transform: translateY(-5px);
}

.related-link-grid span {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.related-link-grid strong {
  font-size: 1.05rem;
}

.related-link-grid i {
  color: var(--orange);
  font-style: normal;
}

/* Actualidad */
.news-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #f4f8fb;
}

.news-map {
  position: absolute;
  inset: 0;
  opacity: .6;
  background: url("../images/mapa-tecnologia.png") center / cover no-repeat;
  mix-blend-mode: multiply;
}

.news-hero-layout {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .45fr);
  gap: 95px;
  align-items: center;
}

.news-hero-note {
  padding: 30px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(7, 91, 168, .18);
  border-left: 3px solid var(--orange);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.news-hero-note span,
.news-hero-note strong {
  display: block;
}

.news-hero-note span {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.news-hero-note strong {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.news-hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .78rem;
}

.featured-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, .55fr);
  gap: 100px;
  align-items: center;
}

.featured-story-copy h2 {
  max-width: 780px;
}

.featured-story-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
}

.featured-story-copy .button {
  margin-top: 18px;
}

.featured-story-card {
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px 18px 2px 18px;
  box-shadow: var(--shadow-soft);
}

.featured-story-card > span,
.featured-story-card > small {
  display: block;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.featured-story-card img {
  max-width: 280px;
  margin: 32px auto 24px;
}

.featured-story-card > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 30px;
}

.featured-story-card i {
  height: 5px;
  background: var(--blue-pale);
}

.featured-story-card i:nth-child(2) { background: #8bcaf6; }
.featured-story-card i:nth-child(3) { background: var(--blue); }
.featured-story-card i:nth-child(4) { background: var(--orange); }

.editorial-roadmap {
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.editorial-grid article {
  min-height: 300px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
}

.editorial-grid span {
  display: block;
  margin-bottom: 70px;
  color: #98a9b8;
  font-family: var(--font-mono);
  font-size: .64rem;
}

.editorial-grid h3 {
  margin-bottom: 14px;
}

.editorial-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .84rem;
}

.news-contact {
  padding: 100px 0;
  color: #fff;
  background: var(--navy);
}

.news-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, .55fr);
  gap: 90px;
  align-items: center;
}

.news-contact h2 {
  color: #fff;
}

.news-contact-layout > div:first-child > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .62);
}

.news-contact-layout > div:last-child {
  border-top: 1px solid var(--line-dark);
}

.news-contact-layout a {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.news-contact-layout a span {
  grid-column: 1 / -1;
  color: #78c1ef;
  font-family: var(--font-mono);
  font-size: .6rem;
  text-transform: uppercase;
}

.news-contact-layout a strong {
  color: #fff;
  font-size: .88rem;
}

.news-contact-layout a i {
  color: var(--orange);
  font-style: normal;
}

/* Documentos y mapa del sitio */
.document-hero {
  position: relative;
  padding: 90px 0 85px;
  overflow: hidden;
  background: #f4f8fb;
}

.document-hero .container {
  position: relative;
}

.document-hero h1 {
  max-width: 850px;
  font-size: clamp(3.2rem, 5.5vw, 5.6rem);
}

.document-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.document-hero small {
  color: #718497;
  font-family: var(--font-mono);
  font-size: .63rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 790px);
  gap: 100px;
  justify-content: center;
  align-items: start;
}

.legal-layout > aside {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-layout > aside strong {
  margin-bottom: 13px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .63rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-layout > aside a {
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: .76rem;
}

.legal-layout > aside a:hover {
  color: var(--blue);
}

.legal-copy > section {
  scroll-margin-top: 115px;
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-copy > section:last-child {
  margin-bottom: 0;
}

.legal-copy span {
  display: block;
  margin-bottom: 15px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .63rem;
  font-weight: 700;
}

.legal-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.legal-copy p {
  color: var(--ink-soft);
}

.legal-copy a {
  color: var(--blue);
  border-bottom: 1px solid rgba(7, 91, 168, .25);
}

.sitemap-section {
  background: var(--mist);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sitemap-grid article {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 31px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px 15px 2px 15px;
}

.sitemap-grid article > span {
  margin-bottom: 50px;
  color: #94a6b7;
  font-family: var(--font-mono);
  font-size: .64rem;
}

.sitemap-grid h2 {
  margin-bottom: 20px;
  font-size: 1.65rem;
}

.sitemap-grid a {
  padding: 5px 0;
  color: var(--ink-soft);
  font-size: .82rem;
}

.sitemap-grid a:hover {
  color: var(--blue);
}

.sitemap-grid p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: .8rem;
}

/* Página de telecomunicaciones */
.inner-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #f4f8fb;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: linear-gradient(rgba(7, 91, 168, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 91, 168, .1) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.inner-hero-layout {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .75fr);
  gap: 80px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
  color: #75889b;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.inner-hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 6vw, 6.15rem);
  font-weight: 620;
}

.inner-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.inner-tech-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.inner-tech-tags span {
  padding: 8px 11px;
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(7, 91, 168, .22);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: .64rem;
  font-weight: 700;
}

.inner-hero-media {
  position: relative;
  align-self: end;
}

.inner-hero-media::before {
  content: "";
  position: absolute;
  right: -25%;
  bottom: 8%;
  width: 115%;
  aspect-ratio: 1;
  background: var(--blue);
  border-radius: 50%;
  opacity: .07;
}

.inner-hero-media img {
  position: relative;
  max-height: 585px;
  margin-left: auto;
  object-fit: contain;
  filter: saturate(.82);
}

.inner-hero-note {
  position: absolute;
  right: 20px;
  bottom: 55px;
  padding: 14px 17px;
  color: #fff;
  background: rgba(6, 27, 51, .9);
  border-left: 3px solid var(--orange);
  font-size: .74rem;
  backdrop-filter: blur(10px);
}

.technical-intro {
  padding-bottom: 85px;
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.technical-card {
  min-height: 340px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px 15px 2px 15px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.technical-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.technical-card > span {
  display: block;
  margin-bottom: 65px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.technical-card h3 {
  margin-bottom: 20px;
  font-size: 1.65rem;
}

.technical-card ul,
.network-copy ul,
.commitment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.technical-card li,
.network-copy li,
.commitment-list li {
  position: relative;
  margin-top: 11px;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.58;
}

.technical-card li::before,
.network-copy li::before,
.commitment-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--orange);
}

.network-depth {
  padding: 115px 0;
  color: #fff;
  background: var(--navy);
}

.network-depth-layout {
  display: grid;
  grid-template-columns: minmax(400px, .82fr) minmax(0, 1.18fr);
  gap: 95px;
  align-items: center;
}

.network-copy .eyebrow {
  color: #8bcaf6;
}

.network-copy h2 {
  color: #fff;
}

.network-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .66);
}

.network-copy ul {
  margin-top: 28px;
}

.network-copy li {
  color: rgba(255, 255, 255, .72);
}

.network-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.network-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px 14px 2px 14px;
}

.network-gallery figure:first-child {
  grid-row: span 2;
}

.network-gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .45s ease;
}

.network-gallery figure:first-child img {
  min-height: 474px;
}

.network-gallery figure:hover img {
  transform: scale(1.035);
}

.network-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, .8);
  background: rgba(6, 27, 51, .8);
  font-family: var(--font-mono);
  font-size: .59rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.commitment-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.02fr);
  gap: 90px;
  align-items: center;
}

.commitment-media {
  position: relative;
}

.commitment-media img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 2px var(--radius) 2px var(--radius);
  box-shadow: var(--shadow);
}

.commitment-list {
  margin: 28px 0 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 25px;
}

.commitment-list li {
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--line);
}

.page-cta {
  padding: 84px 0;
  background: linear-gradient(115deg, var(--blue), #073c70);
  color: #fff;
}

.page-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.page-cta p {
  margin-bottom: 8px;
  color: #9fd5f7;
  font-family: var(--font-mono);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.page-cta h2 {
  max-width: 850px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

/* Página 404 */
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  color: #fff;
  background: var(--navy);
  text-align: center;
}

.error-page img {
  width: 175px;
  margin: 0 auto 42px;
  filter: brightness(0) invert(1);
}

.error-page span {
  color: #75bde9;
  font-family: var(--font-mono);
  font-size: .75rem;
}

.error-page h1 {
  margin: 16px 0 20px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

.error-page p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .66);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
    font-size: .8rem;
  }

  .about-layout {
    gap: 60px 50px;
  }

  .purpose-card {
    grid-template-columns: 145px 1fr;
  }

  .clients-layout,
  .innovation-layout,
  .contact-layout,
  .network-depth-layout,
  .commitment-layout {
    gap: 55px;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    gap: 45px;
  }

  .footer-columns {
    gap: 28px;
  }

  .corporate-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr);
    gap: 45px;
  }

  .purpose-feature-grid article {
    grid-template-columns: 140px 1fr;
  }

  .service-page-hero-layout,
  .featured-story-layout,
  .news-contact-layout {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px 50px;
    overflow-y: auto;
    background: rgba(255, 255, 255, .99);
    clip-path: inset(0 0 0 100%);
    visibility: hidden;
    transition: clip-path .28s ease, visibility .28s ease;
  }

  .main-nav.is-open {
    clip-path: inset(0);
    visibility: visible;
  }

  .main-nav > a:not(.nav-cta) {
    padding: 18px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 25px;
    justify-content: space-between;
    padding: 16px 18px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-photo {
    background-position: 64% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(248, 250, 251, .98), rgba(248, 250, 251, .86) 57%, rgba(248, 250, 251, .28));
  }

  .hero-copy {
    width: 72%;
  }

  .hero-signals {
    left: 24px;
    right: auto;
  }

  .assurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .assurance-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .assurance-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .about-layout,
  .clients-layout,
  .innovation-layout,
  .contact-layout,
  .inner-hero-layout,
  .network-depth-layout,
  .commitment-layout,
  .corporate-hero-layout,
  .story-layout,
  .team-layout,
  .service-page-hero-layout,
  .service-fit-layout,
  .news-hero-layout,
  .featured-story-layout,
  .news-contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 52px;
  }

  .about-copy {
    max-width: 700px;
  }

  .about-visual {
    max-width: 680px;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .heading-split {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .heading-split > p {
    max-width: 650px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-featured {
    grid-column: 1 / -1;
  }

  .telecom-feature,
  .telecom-feature-layout {
    min-height: auto;
  }

  .telecom-feature-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .telecom-feature-copy {
    padding-bottom: 20px;
  }

  .telecom-feature-media {
    width: min(520px, 75%);
    margin-left: auto;
  }

  .method-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-list li:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .method-list li:nth-child(3),
  .method-list li:nth-child(4) {
    border-top: 0;
  }

  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .clients-reference {
    grid-column: auto;
  }

  .innovation-layout,
  .contact-layout {
    gap: 65px;
  }

  .innovation-card {
    max-width: 520px;
  }

  .footer-main {
    grid-template-columns: 170px 1fr;
  }

  .footer-columns {
    gap: 22px;
  }

  .corporate-hero-layout {
    padding: 75px 0;
  }

  .corporate-hero-copy {
    max-width: 760px;
  }

  .corporate-hero-media {
    width: min(620px, 82%);
  }

  .story-copy {
    padding-top: 0;
  }

  .story-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-facts div:nth-child(2) {
    border-right: 0;
  }

  .story-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .purpose-feature-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-media {
    max-width: 760px;
  }

  .team-copy {
    padding-top: 0;
  }

  .service-page-index {
    max-width: 650px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    min-height: auto;
  }

  .news-hero-layout {
    padding: 75px 0;
  }

  .news-hero-note {
    max-width: 520px;
  }

  .legal-layout {
    gap: 55px;
  }

  .legal-layout > aside {
    position: static;
    flex-flow: row wrap;
    gap: 5px 20px;
  }

  .legal-layout > aside strong {
    width: 100%;
  }

  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-hero-copy {
    padding: 80px 0 20px;
  }

  .inner-hero-media {
    width: min(500px, 75%);
    margin-left: auto;
  }

  .technical-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-depth-layout {
    gap: 60px;
  }

  .network-gallery {
    max-width: 760px;
  }

  .commitment-media {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-photo {
    background-position: 69% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(248, 250, 251, .98) 0%, rgba(248, 250, 251, .94) 60%, rgba(248, 250, 251, .56) 100%);
  }

  .hero-layout {
    align-items: flex-start;
    padding-top: 70px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(3rem, 12.5vw, 3.5rem);
  }

  .hero-lead {
    max-width: 500px;
    color: #30465c;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-signals {
    display: none;
  }

  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .assurance-grid > div {
    min-height: 90px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .assurance-grid > div:not(:first-child) {
    border-top: 0;
  }

  .about-layout {
    display: block;
  }

  .about-visual {
    margin-top: 52px;
  }

  .image-note {
    right: -8px;
    bottom: -18px;
  }

  .purpose-grid {
    margin-top: 62px;
  }

  .purpose-card {
    display: block;
  }

  .purpose-card img {
    height: 160px;
    margin-bottom: 24px;
  }

  .services-grid,
  .method-list,
  .technical-grid {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-column: auto;
  }

  .service-icon {
    width: 85px;
    height: 85px;
    right: 24px;
    bottom: 34px;
    opacity: .7;
  }

  .telecom-feature-copy {
    padding-top: 82px;
  }

  .telecom-feature-media {
    width: 94%;
  }

  .telecom-status {
    left: 0;
    bottom: 28px;
  }

  .method-list li,
  .method-list li:nth-child(2),
  .method-list li:nth-child(3),
  .method-list li:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .method-list li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .method-list > li > span {
    margin-bottom: 35px;
  }

  .clients-layout {
    gap: 45px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid > div {
    min-height: 120px;
  }

  .innovation {
    padding: 82px 0;
  }

  .innovation-layout {
    gap: 48px;
  }

  .innovation-card {
    padding: 28px;
  }

  .contact {
    padding: 86px 0;
  }

  .contact-layout {
    gap: 55px;
  }

  .contact-details,
  .form-row,
  .commitment-list {
    grid-template-columns: 1fr;
  }

  .contact-details > *:nth-child(odd) {
    border-right: 0;
  }

  .contact-details > *:nth-child(even) {
    padding-left: 0;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 55px 0 35px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 20px 0;
  }

  .inner-hero,
  .inner-hero-layout {
    min-height: auto;
  }

  .inner-hero-copy {
    padding-top: 60px;
  }

  .inner-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .inner-hero-media {
    width: 95%;
  }

  .technical-card > span {
    margin-bottom: 40px;
  }

  .network-depth {
    padding: 82px 0;
  }

  .network-gallery {
    grid-template-columns: 1fr;
  }

  .clients-reference {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .corporate-hero,
  .corporate-hero-layout,
  .news-hero,
  .news-hero-layout {
    min-height: auto;
  }

  .corporate-hero h1,
  .service-page-hero h1,
  .news-hero h1,
  .document-hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .corporate-hero-media {
    width: 95%;
    margin-top: 20px;
  }

  .corporate-hero-card {
    right: -10px;
  }

  .story-facts,
  .values-grid,
  .service-page-index,
  .service-detail-card ul,
  .related-link-grid,
  .editorial-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .story-facts div,
  .story-facts div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-facts div:last-child {
    border-bottom: 0;
  }

  .purpose-section,
  .service-fit,
  .news-contact {
    padding: 82px 0;
  }

  .purpose-feature-grid article {
    display: block;
  }

  .purpose-feature-grid img {
    height: 180px;
    margin-bottom: 24px;
  }

  .values-grid span,
  .editorial-grid span {
    margin-bottom: 45px;
  }

  .team-media img {
    min-height: 330px;
  }

  .service-page-hero {
    padding: 75px 0;
  }

  .service-page-hero-layout {
    gap: 50px;
  }

  .service-detail-card {
    padding: 28px 24px;
  }

  .service-detail-card > span {
    margin-bottom: 36px;
  }

  .featured-story-card {
    padding: 30px 24px;
  }

  .legal-section {
    padding-top: 65px;
  }

  .network-gallery figure:first-child {
    grid-row: auto;
  }

  .network-gallery figure:first-child img,
  .network-gallery img {
    min-height: 250px;
    max-height: 360px;
  }

  .page-cta-inner {
    grid-template-columns: 1fr;
  }
/* Interactive Solutions Configurator Styles */
.configurator {
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.configurator-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  margin-top: 48px;
}
.configurator-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #ffffff;
  border: 2px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
.tab-btn div {
  display: flex;
  flex-direction: column;
}
.tab-btn strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}
.tab-btn small {
  color: var(--ink-soft);
  font-size: 0.76rem;
  margin-top: 2px;
}
.tab-icon {
  font-size: 1.5rem;
}
.tab-btn.active, .tab-btn:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 28px -8px rgba(59, 130, 246, 0.25);
}
.tab-btn.active {
  background: linear-gradient(135deg, #ffffff 0%, var(--blue-pale) 100%);
  border: 2px solid var(--blue-bright);
  border-left: 5px solid var(--blue);
}

.configurator-content {
  background: #ffffff;
  border: 2px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 20px 50px -10px rgba(59, 130, 246, 0.08);
}
.config-panel {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.config-panel.active {
  opacity: 1;
  transform: translateY(0);
}
.panel-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.panel-copy h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 14px 0 20px;
  color: var(--ink);
  line-height: 1.2;
}
.panel-tag {
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.panel-copy p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 24px;
}
.panel-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.panel-features li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 0.92rem;
}
.panel-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.panel-visual {
  display: flex;
  justify-content: center;
}
.tech-card-glow {
  position: relative;
  width: 100%;
  max-width: 280px;
  padding: 36px 28px;
  background: var(--navy);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), var(--shadow-glow);
  text-align: center;
}
.tech-card-glow.cyan {
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(6, 182, 212, 0.15);
}
.tech-card-glow.gold {
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(245, 158, 11, 0.15);
}
.tech-card-glow.purple {
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(168, 85, 247, 0.15);
}
.metric-big {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--blue-neon);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
}
.tech-card-glow.cyan .metric-big {
  color: #22d3ee;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}
.tech-card-glow.gold .metric-big {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}
.tech-card-glow.purple .metric-big {
  color: #c084fc;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
}
.tech-card-glow strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.tech-card-glow p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}
.hologram-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(59, 130, 246, 0.15) 50%, rgba(59, 130, 246, 0.3) 52%, transparent 54%);
  background-size: 100% 200%;
  animation: scan 4s linear infinite;
  pointer-events: none;
}
@keyframes scan {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}

/* PLEP Hologram Cards Styles */
.innovation-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  box-shadow: 0 20px 45px rgba(7, 13, 25, 0.4), var(--shadow-glow) !important;
}
.hologram-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), transparent 60%);
  pointer-events: none;
}
.hologram-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.12), transparent 45%);
  pointer-events: none;
  animation: float-glow 8s ease-in-out infinite alternate;
}
@keyframes float-glow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(5%, 5%); }
}

/* Responsive adjustment for configurator */
@media (max-width: 900px) {
  .configurator-layout {
    grid-template-columns: 1fr;
  }
  .panel-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Modern Scroll Reveal System */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===========================================
   HERO — CANVAS PARTÍCULAS & ELEMENTOS NUEVOS
   =========================================== */
.hero-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-layout {
  z-index: 2;
}

.hero-eyebrow {
  color: rgba(96, 165, 250, 0.85);
}

.hero-eyebrow > span:empty {
  background: rgba(96, 165, 250, 0.6);
}

.hero-accent-line {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-bright) 0 63%, var(--orange) 63% 100%);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s ease;
  text-decoration: none;
}

.hero-scroll-indicator:hover {
  color: rgba(255, 255, 255, 0.9);
}

.scroll-dot {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ===========================================
   HAMBURGER MENU — ESTILOS CORREGIDOS
   =========================================== */
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================================
   UTILITY BAR — WHATSAPP LINK
   =========================================== */
.utility-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 99px;
  color: #25d166;
  font-size: .7rem;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}

.utility-wa:hover {
  background: rgba(37, 211, 102, 0.22);
  color: #4de887;
}

/* ===========================================
   ASSURANCE — ITEMS AJUSTADOS
   =========================================== */
.assurance-item {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  transition: background .3s ease;
}

.assurance-item:first-child { border-left: 0; }
.assurance-item:hover { background: rgba(255, 255, 255, 0.02); }

/* ===========================================
   METHOD TIMELINE — NUEVO LAYOUT VISUAL
   =========================================== */
.method-timeline {
  position: relative;
  margin-top: 20px;
}

.timeline-track {
  position: absolute;
  top: 60px;
  left: calc(50% - 600px);
  right: calc(50% - 600px);
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.timeline-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  width: 0;
  transition: width 1s ease;
}

.method-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  gap: 0;
}

.method-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 40px;
}

.method-step {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.method-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  border-radius: 50%;
  margin-bottom: 24px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  transition: transform .3s ease, box-shadow .3s ease;
}

.method-list li:hover .method-icon {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.4);
}

.method-body .method-label {
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.method-body h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.method-body small {
  color: var(--ink-soft);
  font-size: .8rem;
  line-height: 1.5;
}

/* ===========================================
   SECTORES ATENDIDOS
   =========================================== */
.sectors {
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sectors .lead-text {
  max-width: 680px;
  color: var(--ink-soft);
  margin-top: 16px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.sector-card {
  padding: 30px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.sector-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.08);
  transform: translateY(-6px);
}

.sector-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--blue);
  transition: background .3s ease, color .3s ease;
}

.sector-card:hover .sector-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
}

.sector-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.sector-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.55;
}

/* ===========================================
   CLIENTES — MARQUEE ANIMADO
   =========================================== */
.clients {
  background: #fff;
  border-top: 1px solid var(--line);
  padding-bottom: 80px;
}

.clients-intro {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 56px;
  padding-top: 0;
}

.clients-intro .eyebrow {
  justify-content: center;
}

.clients-intro h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.clients-intro p {
  color: var(--ink-soft);
}

.logo-marquee-wrap {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
  margin-bottom: 48px;
}

.logo-marquee {
  display: flex;
  width: 100%;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.logo-marquee-wrap:hover .logo-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-right: 1px solid var(--line);
}

.logo-item img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter .3s ease, opacity .3s ease;
}

.logo-marquee-wrap:hover .logo-item img {
  filter: none;
  opacity: 1;
}

.clients-cta {
  padding: 24px 28px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px 24px;
  align-items: center;
}

.clients-cta strong {
  font-size: .95rem;
  grid-column: 1;
  grid-row: 1;
}

.clients-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .82rem;
  grid-column: 2;
  grid-row: 1 / 3;
}

.clients-cta a {
  grid-column: 3;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ===========================================
   TESTIMONIOS — SLIDER ACCESIBLE
   =========================================== */
.testimonials {
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 48px 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}

.testimonial-quote {
  color: var(--blue-pale);
  margin-bottom: 24px;
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
}

.testimonial-card blockquote p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-card blockquote footer {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.testimonial-card blockquote footer strong {
  display: block;
  color: var(--ink);
  font-size: .95rem;
  margin-bottom: 4px;
}

.testimonial-card blockquote footer span {
  color: var(--ink-soft);
  font-size: .82rem;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  transition: all .25s ease;
}

.testimonial-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--line);
  border-radius: 50%;
  transition: all .25s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ===========================================
   CTA BANNER
   =========================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: var(--navy-2);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(29, 78, 216, 0.3), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.2), transparent 40%);
}

.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.2) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-banner-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.cta-banner-copy .eyebrow {
  color: rgba(96, 165, 250, 0.8);
}

.cta-banner-copy h2 {
  max-width: 640px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-banner-copy p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 520px;
  margin: 0;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.cta-banner-btn {
  white-space: nowrap;
}

/* ===========================================
   FORMULARIO — SELECT & CONSENTIMIENTO
   =========================================== */
.contact-form select {
  width: 100%;
  height: 48px;
  margin-top: 7px;
  padding: 0 13px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #d5dfe8;
  border-radius: 5px;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form select:focus {
  background-color: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 91, 168, .1);
}

.consent-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px !important;
  color: var(--ink-soft) !important;
  font-size: .8rem !important;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--blue);
}

.consent-label a {
  color: var(--blue);
  text-decoration: underline;
}

.form-error {
  display: block;
  margin-top: 4px;
  color: #ef4444;
  font-size: .72rem;
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: #fca5a5;
}

.contact-form input:valid:not(:placeholder-shown),
.contact-form textarea:valid:not(:placeholder-shown) {
  border-color: #86efac;
}

/* ===========================================
   FOOTER — SOCIAL LINKS & SCROLL-TOP
   =========================================== */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  transition: all .25s ease;
}

.social-link:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.footer-main {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
  padding: 55px 0;
  min-height: 250px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
}

/* ===========================================
   SERVICE ICON MINI — CARDS SECUNDARIAS
   =========================================== */
.service-icon-mini {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--blue);
  transition: background .3s ease, color .3s ease;
}

.service-card:hover .service-icon-mini {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
}

/* ===========================================
   CUSTOM CURSOR — SOLO DESKTOP
   =========================================== */
@media (pointer: fine) {
  .custom-cursor {
    position: fixed;
    z-index: 9999;
    width: 12px;
    height: 12px;
    background: var(--blue-bright);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease, opacity .2s ease;
    mix-blend-mode: difference;
    opacity: 0;
  }

  .custom-cursor.is-active {
    opacity: 1;
  }

  .custom-cursor.is-hovering {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.3);
  }
}

/* ===========================================
   RESPONSIVE — MEDIA QUERIES COMPLETAS
   =========================================== */

@media (max-width: 1200px) {
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 200px 1fr;
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-featured {
    grid-column: span 2;
  }

  .method-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .method-list li {
    padding: 28px;
    border: 1px solid var(--line);
  }

  .timeline-track {
    display: none;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-banner-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .innovation-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-details {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 200;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 80px 40px 40px;
    background: rgba(7, 13, 25, 0.97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a:not(.nav-cta) {
    width: 100%;
    padding: 18px 0;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    text-align: center;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-signals {
    position: relative;
    right: auto;
    bottom: auto;
    flex-wrap: wrap;
    margin-top: 32px;
  }

  .assurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heading-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .telecom-feature-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
    padding: 60px 0;
  }

  .telecom-feature-media img {
    max-height: 400px;
    margin: 0 auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 72px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-column: span 1;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .method-list {
    grid-template-columns: 1fr;
  }

  .purpose-card {
    grid-template-columns: 1fr;
  }

  .purpose-card img {
    width: 100%;
    height: 160px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner-actions {
    flex-direction: column;
  }

  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .clients-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .clients-cta p { grid-column: 1; grid-row: auto; }
  .clients-cta a { grid-column: 1; grid-row: auto; margin-inline: auto; }

  .scroll-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  h2 {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }

  .hero-scroll-indicator .scroll-dot::after {
    animation: none;
  }

  .hologram-glow {
    animation: none;
  }

  .hologram-scan {
    animation: none;
  }
}

/* Scroll reveal animation styles */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   HERO — ORBITAS, CORE CENTRAL, DATA CARDS
   =========================================== */
.hero-visual-elements {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.tech-core {
  position: absolute;
  right: 8%;
  top: 48%;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.13), rgba(29,78,216,.12) 45%, rgba(7,13,25,.88));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 0 60px rgba(59,130,246,.08), 0 0 100px rgba(29,78,216,.17);
  transform: translateY(-50%);
}

.core-ring {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(59,130,246,.36);
  border-radius: 50%;
  animation: spin 26s linear infinite;
}

.core-ring::before,
.core-ring::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-neon);
  box-shadow: 0 0 16px var(--blue-neon);
}

.core-ring::before { left: 14px; top: 14px; }
.core-ring::after { right: 14px; bottom: 14px; }

.core-logo {
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 790;
  letter-spacing: -.1em;
  color: white;
  text-shadow: 0 0 32px rgba(96,165,250,.35);
}

.orbit {
  position: absolute;
  right: 8%;
  top: 48%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  transform: translateY(-50%);
}

.orbit-one {
  width: 340px;
  height: 340px;
  margin-left: -90px;
  margin-top: -90px;
  transform: rotate(24deg);
}

.orbit-two {
  width: 440px;
  height: 260px;
  margin-left: -140px;
  margin-top: -60px;
  transform: rotate(-22deg);
}

.data-card {
  position: absolute;
  min-width: 160px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(7,20,38,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
  animation: float 7s ease-in-out infinite;
}

.data-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  width: 40px;
  height: 1px;
  background: var(--blue-neon);
}

.card-a { left: 5%; top: 20%; }
.card-b { right: 2%; top: 34%; animation-delay: -2s; }
.card-c { left: 10%; bottom: 15%; animation-delay: -4s; }

.data-label {
  display: block;
  color: rgba(255,255,255,.43);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.data-card strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: .82rem;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 24px;
  margin-top: 12px;
}

.mini-bars i {
  flex: 1;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(var(--blue-neon), rgba(96,165,250,.15));
  animation: barPulse 2.5s ease-in-out infinite;
}

.mini-bars i:nth-child(1) { height: 35%; }
.mini-bars i:nth-child(2) { height: 70%; animation-delay: -.2s; }
.mini-bars i:nth-child(3) { height: 55%; animation-delay: -.4s; }
.mini-bars i:nth-child(4) { height: 90%; animation-delay: -.6s; }
.mini-bars i:nth-child(5) { height: 75%; animation-delay: -.8s; }

.signal {
  display: flex;
  gap: 5px;
  margin-top: 12px;
}

.signal i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-neon);
  animation: signal 1.7s infinite;
}

.signal i:nth-child(2) { animation-delay: .2s; }
.signal i:nth-child(3) { animation-delay: .4s; }

.card-c svg {
  width: 110px;
  margin-top: 8px;
  overflow: visible;
}

.card-c path {
  fill: none;
  stroke: var(--blue-neon);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 220;
  animation: draw 5s linear infinite;
}

.node {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid var(--blue-neon);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 6px rgba(96,165,250,.06);
}

.n1 { left: 22%; top: 35%; }
.n2 { right: 20%; top: 22%; }
.n3 { right: 25%; bottom: 20%; }
.n4 { left: 33%; bottom: 30%; }

.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .18;
  pointer-events: none;
}

.hero-glow-a { right: -120px; top: 16%; background: var(--blue-neon); }
.hero-glow-b { left: -160px; bottom: 0; background: var(--blue); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes barPulse { 50% { opacity: .45; transform: scaleY(.74); } }
@keyframes signal { 0%, 100% { opacity: .25; } 50% { opacity: 1; box-shadow: 0 0 12px var(--blue-neon); } }
@keyframes draw { 0% { stroke-dashoffset: 220; } 55%, 100% { stroke-dashoffset: 0; } }

@media (max-width: 900px) {
  .hero-visual-elements { display: none; }
  .hero-glow { display: none; }
}

