/* ============================================================
   PARADIGM BIO METAL — Section-Specific Styles
   Second Pass: Impactful hero, premium sections, industrial feel
   ============================================================ */

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #04080f; /* Darker, more cinematic base */
  perspective: 1000px;
}

/* Escenario Industrial Base Iluminado */
.hero__stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #04080f;
}

.hero__water-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50; /* Asegúrate de que esté debajo del texto (z-index de hero__content) */
  pointer-events: none; /* ESTO ES VITAL: permite hacer clic "a través" del video */
  overflow: hidden;
}

.hero__water-effect video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantiene la proporción cubriendo toda el área */
  opacity: 0.3; /* Puedes bajarle la opacidad si el azul es muy intenso */
}

.hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25; /* Visible pero sutil */
  mix-blend-mode: luminosity; /* Adopta el color azul general */
  filter: blur(4px) contrast(1.2);
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-image--1 {
  mask-image: linear-gradient(to right, black 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 60%);
  animation: bgBreathe 10s ease-in-out infinite alternate;
}

.hero__bg-image--2 {
  mask-image: linear-gradient(to left, black 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(to left, black 0%, transparent 60%);
  opacity: 0.15;
}

.hero__bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(12, 61, 143, 0.4) 0%, rgba(4, 8, 15, 0.95) 80%),
    linear-gradient(180deg, transparent 0%, #03060b 100%);
  mix-blend-mode: multiply;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4; /* Sobre las máquinas, detrás del texto */
  background: radial-gradient(ellipse at center, rgba(12, 61, 143, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Máquinas Reales Integradas */
.hero__machine {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
  transition: transform 0.5s ease-out;
  pointer-events: none;
}

.hero__machine img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  /* Darles un look integrado y no solo "pegado" */
  mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
  opacity: 0.85;
}

.hero__machine--left {
  bottom: 5%;
  left: -5%;
  width: 450px;
  transform: rotateY(15deg) rotateZ(-2deg);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.9)) blur(1px);
}

.hero__machine--right {
  top: 15%;
  right: -5%;
  width: 300px;
  transform: rotateY(-15deg) rotateZ(3deg);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.9)) blur(2px);
}

/* ── COMPOSICIÓN EDITORIAL 3D ── */
.hero__composition {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* ── MÁQUINA CENTRAL (Medio plano cinematográfico) ── */
.hero__center-machine {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  height: auto;
  z-index: 3;
  opacity: 0.8;
  filter: blur(2px) drop-shadow(0 40px 80px rgba(0,0,0,0.95));
}

.hero__center-machine img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero__center-machine-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(12, 61, 143, 0.4) 0%, transparent 100%);
  mix-blend-mode: overlay;
  border-radius: 20px;
}

/* ── FLUIDO ORGÁNICO PROTAGONISTA (Mejorado) ── */
/* Múltiples capas animadas para crear volumen líquido real */
.hero__fluid {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  pointer-events: none;
}

.hero__fluid--main {
  width: 120vw;
  height: 350px;
  top: 45%;
  left: -10%;
  z-index: 4; 
  background: linear-gradient(90deg, transparent 0%, rgba(30, 136, 229, 0.4) 20%, rgba(0, 255, 255, 0.3) 50%, rgba(12, 61, 143, 0.4) 80%, transparent 100%);
  filter: blur(10px) drop-shadow(0 20px 50px rgba(0, 255, 255, 0.2));
  mix-blend-mode: color-dodge;
  animation: liquidOrganicFlow 15s ease-in-out infinite alternate;
  box-shadow: inset 0 20px 50px rgba(255,255,255,0.3), inset 0 -20px 50px rgba(0, 255, 255, 0.4);
  border-top: 2px solid rgba(0, 255, 255, 0.15);
  border-bottom: 2px solid rgba(30, 136, 229, 0.2);
}

.hero__fluid--front {
  width: 80vw;
  height: 250px;
  top: 65%;
  right: -5%;
  z-index: 5;
  background: radial-gradient(ellipse at center, rgba(144, 202, 249, 0.4) 0%, transparent 70%);
  animation: liquidOrganicFlow 10s ease-in-out infinite alternate-reverse;
  filter: blur(8px);
  mix-blend-mode: screen;
}

.hero__fluid--back {
  width: 100vw;
  height: 600px;
  top: 15%;
  left: 0;
  z-index: 1; 
  background: radial-gradient(ellipse at center, rgba(12, 61, 143, 0.45) 0%, transparent 60%);
  border-radius: 50%;
  animation: pulseFluid 12s linear infinite alternate;
  filter: blur(40px);
}

/* ── ENGRANES EN PROFUNDIDAD ── */
.hero__gear {
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='url(%23metal)' d='M92 45h-8.5c-1.3-4.5-3.3-8.8-6.1-12.6l6-6c1.6-1.6 1.6-4.1 0-5.7l-4.2-4.2c-1.6-1.6-4.1-1.6-5.7 0l-6 6c-3.8-2.7-8.1-4.8-12.6-6.1V12c0-2.2-1.8-4-4-4h-6c-2.2 0-4 1.8-4 4v8.5c-4.5 1.3-8.8 3.3-12.6 6.1l-6-6c-1.6-1.6-4.1-1.6-5.7 0l-4.2 4.2c-1.6 1.6-1.6 4.1 0 5.7l6 6c-2.7 3.8-4.8 8.1-6.1 12.6H8c-2.2 0-4 1.8-4 4v6c0 2.2 1.8 4 4 4h8.5c1.3 4.5 3.3 8.8 6.1 12.6l-6 6c-1.6 1.6-1.6 4.1 0 5.7l4.2 4.2c1.6 1.6 4.1 1.6 5.7 0l6-6c3.8 2.7 8.1 4.8 12.6 6.1V88c0 2.2 1.8 4 4 4h6c2.2 0 4-1.8 4-4v-8.5c4.5-1.3 8.8-3.3 12.6-6.1l6 6c1.6 1.6 4.1 1.6 5.7 0l4.2-4.2c1.6-1.6 1.6-4.1 0-5.7l-6-6c2.7-3.8 4.8-8.1 6.1-12.6H92c2.2 0 4-1.8 4-4v-6c0-2.2-1.8-4-4-4zM50 65c-8.3 0-15-6.7-15-15s6.7-15 15-15 15 6.7 15 15-6.7 15-15 15z'/%3E%3Cdefs%3E%3ClinearGradient id='metal' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23667'/%3E%3Cstop offset='50%25' stop-color='%23aab'/%3E%3Cstop offset='100%25' stop-color='%23334'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.hero__gear--bg-1 {
  width: 450px;
  height: 450px;
  top: -100px;
  left: -150px;
  z-index: 1;
  opacity: 0.15;
  filter: blur(8px) drop-shadow(0 15px 25px rgba(0,0,0,0.8));
  animation: spinSlow 60s linear infinite;
}

.hero__gear--bg-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: 10%;
  z-index: 1;
  opacity: 0.2;
  filter: blur(6px) drop-shadow(0 15px 25px rgba(0,0,0,0.8));
  animation: spinSlow 40s linear infinite reverse;
}

.hero__gear--mid-1 {
  width: 250px;
  height: 250px;
  top: 15%;
  right: -10%;
  z-index: 1;
  opacity: 0.3;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.9)) blur(3px);
  animation: spinSlow 35s linear infinite;
}

.hero__gear--mid-2 {
  width: 180px;
  height: 180px;
  bottom: 5%;
  left: -5%;
  z-index: 1;
  opacity: 0.25;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.9)) blur(4px);
  animation: spinSlow 25s linear infinite reverse;
}

/* Partículas Industriales y Brillos */
.hero__particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: radial-gradient(circle, rgba(144, 202, 249, 0.4) 2px, transparent 2px);
  background-size: 80px 80px;
  opacity: 0.6;
  animation: floatUp 15s linear infinite;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  pointer-events: none;
}

/* Dark vignette for depth */
.hero__vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(6, 10, 16, 0.8) 100%);
  pointer-events: none;
}

/* Luces Ambientales y Brillo Cinematográfico */
.hero__ambient-light {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 300px;
  background: radial-gradient(ellipse at bottom, rgba(30, 136, 229, 0.15) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
  filter: blur(20px);
}

.hero__title-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 150px;
  background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.15) 0%, transparent 60%);
  z-index: -1;
  filter: blur(30px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  padding: 0 var(--section-px);
  padding-top: var(--navbar-height);
  overflow: visible;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(30, 136, 229, 0.08);
  border: 1px solid rgba(30, 136, 229, 0.30);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-blue-300);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ffff;
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
}

.hero__title {
  position: relative;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: var(--fw-black);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  text-align: center;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__title-line {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-shadow: 
    0 1px 2px rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.6),
    0 10px 24px rgba(0, 0, 0, 0.8),
    0 20px 40px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(30, 136, 229, 0.2);
}

/* ── Responsive adjustments for Hero 3D elements ── */
@media (max-width: 768px) {
  .hero__center-machine {
    width: 140%;
    opacity: 0.5;
  }
  
  .hero__fluid--main {
    width: 200vw;
    height: 250px;
    top: 50%;
  }

  .hero__gear--bg-1 {
    width: 200px;
    height: 200px;
  }
  
  .hero__stats-badges {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .hero__stat-badge {
    width: 100%;
    justify-content: center;
  }
}

.text-gradient-hero {
  background: linear-gradient(135deg, #ffffff 0%, var(--clr-blue-200) 40%, var(--clr-blue-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none; /* text-shadow is on parent title-line */
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  padding-bottom: 0.1em; /* Prevent clipping of drop-shadow in some browsers */
  display: inline-block;
}

.hero__subtitle {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-lg));
  color: var(--clr-text-secondary);
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--lh-relaxed);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.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;
  opacity: 0.4;
}

.hero__scroll-indicator span {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(130, 155, 190, 0.3);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--clr-blue-400);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

/* -- HERO PREMIUM MOTION LAYERS ------------------------------------------ */
.hero {
  min-height: 100svh;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(22, 104, 204, 0.18), transparent 52%),
    linear-gradient(180deg, #050b14 0%, #03070d 100%);
  isolation: isolate;
}

.hero__stage {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 20, 36, 0.88), rgba(3, 7, 13, 0.96)),
    radial-gradient(ellipse at 22% 28%, rgba(30, 136, 229, 0.18), transparent 45%),
    radial-gradient(ellipse at 82% 70%, rgba(224, 107, 10, 0.06), transparent 42%);
}

.hero__bg-image {
  opacity: 0.32;
  filter: grayscale(0.2) saturate(0.8) contrast(1.25) brightness(0.68);
  transform: scale(1.03);
}

.hero__bg-image--1 {
  opacity: 0.38;
  mask-image: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0.75) 46%, transparent 78%);
  -webkit-mask-image: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0.75) 46%, transparent 78%);
}

.hero__bg-image--2 {
  opacity: 0.22;
  filter: grayscale(0.35) saturate(0.7) contrast(1.35) brightness(0.62) blur(2px);
}

.hero__bg-gradient {
  background:
    linear-gradient(90deg, rgba(2, 6, 12, 0.72) 0%, rgba(4, 10, 18, 0.36) 44%, rgba(2, 6, 12, 0.78) 100%),
    radial-gradient(ellipse at 48% 46%, rgba(30, 136, 229, 0.2) 0%, rgba(4, 8, 15, 0.92) 72%),
    linear-gradient(180deg, rgba(2, 6, 12, 0.22) 0%, #03060b 100%);
  mix-blend-mode: normal;
}

.hero__metal-grid,
.hero__cold-lights,
.hero__canvas,
.hero__noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__metal-grid {
  z-index: 2;
  inset: -18% -8% -10%;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(144, 202, 249, 0.08) 28% 28.5%, transparent 28.5% 62%, rgba(144, 202, 249, 0.06) 62% 62.5%, transparent 62.5%),
    repeating-linear-gradient(90deg, rgba(144, 202, 249, 0.08) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(144, 202, 249, 0.055) 0 1px, transparent 1px 86px);
  opacity: 0.28;
  transform: perspective(900px) rotateX(63deg) translateY(9%);
  transform-origin: center bottom;
  animation: heroPanelDrift 18s ease-in-out infinite alternate;
}

.hero__cold-lights {
  z-index: 4;
  background:
    linear-gradient(100deg, transparent 0 26%, rgba(144, 202, 249, 0.12) 36%, transparent 47%),
    linear-gradient(180deg, rgba(144, 202, 249, 0.16) 0%, transparent 17%),
    radial-gradient(ellipse at 50% 0%, rgba(144, 202, 249, 0.18), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(30, 136, 229, 0.14), transparent 48%);
  mix-blend-mode: screen;
  opacity: 0.78;
  animation: heroColdSweep 9s ease-in-out infinite alternate;
}

.hero__canvas {
  display: block;
}

.hero__canvas--back {
  z-index: 3;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.hero__canvas--front {
  z-index: 7;
  opacity: 0.52;
  mix-blend-mode: screen;
  filter: saturate(1.08);
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 76%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 76%, transparent 100%);
}

.hero__composition {
  z-index: 5;
}

.hero__overlay {
  z-index: 8;
  background:
    radial-gradient(ellipse at center, rgba(12, 61, 143, 0.12) 0%, transparent 58%),
    linear-gradient(90deg, rgba(3, 7, 13, 0.48), rgba(3, 7, 13, 0.22), rgba(3, 7, 13, 0.5));
}

.hero__vignette {
  z-index: 9;
  background:
    radial-gradient(ellipse at center, transparent 36%, rgba(2, 6, 12, 0.7) 86%),
    linear-gradient(180deg, rgba(2, 6, 12, 0.2) 0%, rgba(2, 6, 12, 0.82) 100%);
}

.hero__noise {
  z-index: 10;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(144, 202, 249, 0.28) 0 1px, transparent 1px);
  background-size: 72px 72px, 116px 116px;
  animation: heroMist 16s linear infinite;
}

.hero__center-machine {
  top: 54%;
  max-width: 1040px;
  opacity: 0.56;
  filter: blur(1px) saturate(0.86) contrast(1.1) drop-shadow(0 32px 64px rgba(0, 0, 0, 0.9));
  animation: heroMachineFloat 16s ease-in-out infinite alternate;
}

.hero__center-machine-overlay {
  background:
    radial-gradient(ellipse at center, rgba(30, 136, 229, 0.32) 0%, transparent 62%),
    linear-gradient(90deg, rgba(2, 6, 12, 0.45), transparent, rgba(2, 6, 12, 0.56));
}

.hero__gear {
  opacity: 0.24;
}

.hero__gear--bg-1,
.hero__gear--bg-2 {
  opacity: 0.18;
}

.hero__gear--mid-1 {
  top: 10%;
  right: -6%;
  opacity: 0.28;
}

.hero__gear--mid-2 {
  bottom: 8%;
  left: -3%;
  opacity: 0.2;
}

.hero__fluid--back {
  opacity: 0.28;
  filter: blur(22px);
}

.hero__fluid--main {
  top: 50%;
  height: 280px;
  opacity: 0.34;
  background: linear-gradient(90deg, transparent 0%, rgba(30, 136, 229, 0.2) 18%, rgba(90, 205, 255, 0.18) 50%, rgba(12, 61, 143, 0.2) 82%, transparent 100%);
  filter: blur(7px);
  mix-blend-mode: screen;
  box-shadow: none;
  border-top-color: rgba(0, 255, 255, 0.06);
  border-bottom-color: rgba(30, 136, 229, 0.08);
  will-change: transform, border-radius, opacity;
}

.hero__fluid--front {
  opacity: 0.28;
  filter: blur(6px);
  will-change: transform, border-radius, opacity;
}

.hero__particles {
  z-index: 6;
  opacity: 0.14;
  background-image: radial-gradient(circle, rgba(144, 202, 249, 0.42) 1px, transparent 1px);
  background-size: 92px 92px;
}

.hero__ambient-light {
  z-index: 6;
  width: min(92%, 1180px);
  height: 360px;
  background:
    radial-gradient(ellipse at bottom, rgba(63, 160, 240, 0.18) 0%, transparent 68%),
    linear-gradient(90deg, transparent, rgba(224, 107, 10, 0.05), transparent);
}

.hero__content {
  z-index: 12;
  max-width: 1080px;
}

.hero__content::before {
  content: '';
  position: absolute;
  inset: -28px -48px -34px;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(3, 7, 13, 0.7) 0%, rgba(3, 7, 13, 0.42) 42%, transparent 72%),
    radial-gradient(ellipse at center, rgba(30, 136, 229, 0.12), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__badge {
  position: relative;
  overflow: hidden;
  background: rgba(7, 18, 36, 0.44);
  border-color: rgba(144, 202, 249, 0.24);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__badge-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(144, 202, 249, 0.18) 48%, transparent 70%);
  transform: translateX(-120%);
  animation: heroBadgeSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.hero__subtitle {
  color: rgba(239, 243, 248, 0.82);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
}

.hero__actions {
  position: relative;
  z-index: 1;
}

.hero__stats-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
}

.hero__stat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(144, 202, 249, 0.14);
  border-radius: var(--radius-full);
  background: rgba(7, 18, 36, 0.48);
  color: rgba(239, 243, 248, 0.82);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero__stat-icon {
  display: inline-flex;
  color: var(--clr-blue-300);
  filter: drop-shadow(0 0 10px rgba(63, 160, 240, 0.24));
}

.hero__scroll-indicator {
  left: clamp(24px, 5vw, 72px);
  right: auto;
  transform: none;
  align-items: flex-start;
  z-index: 12;
  opacity: 0.58;
}

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(144, 202, 249, 0.42), transparent);
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
  background: var(--clr-blue-200);
  box-shadow: 0 0 16px rgba(144, 202, 249, 0.82);
  animation: heroLineScan 2.4s ease-in-out infinite;
}

@keyframes heroPanelDrift {
  from { transform: perspective(900px) rotateX(63deg) translateY(9%) translateX(-1.5%); }
  to { transform: perspective(900px) rotateX(63deg) translateY(6%) translateX(1.5%); }
}

@keyframes heroColdSweep {
  from { opacity: 0.56; transform: translateX(-2%); }
  to { opacity: 0.82; transform: translateX(2%); }
}

@keyframes heroMist {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(28px, -28px, 0); }
}

@keyframes heroMachineFloat {
  from { transform: translate(-50%, -50%) scale(1.02); }
  to { transform: translate(-49%, -51.5%) scale(1.06); }
}

@keyframes heroBadgeSweep {
  0%, 45% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@keyframes heroLineScan {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translateY(64px); opacity: 0; }
}

@media (max-width: 900px) {
  .hero__content {
    max-width: 760px;
    padding-top: calc(var(--navbar-height) + 1.25rem);
  }

  .hero__canvas--front {
    opacity: 0.38;
  }

  .hero__center-machine {
    width: 132%;
    opacity: 0.42;
  }

  .hero__metal-grid {
    opacity: 0.2;
    transform: perspective(760px) rotateX(66deg) translateY(13%);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
    align-items: center;
  }

  .hero__content {
    padding-top: calc(var(--navbar-height) + 0.75rem);
  }

  .hero__content::before {
    inset: -18px -14px -24px;
  }

  .hero__badge {
    max-width: 100%;
    padding-inline: 14px;
  }

  .hero__badge-text {
    font-size: 0.64rem;
    white-space: normal;
  }

  .hero__title {
    font-size: clamp(2rem, 11vw, 3.15rem);
    line-height: 1.12;
  }

  .hero__subtitle {
    font-size: 0.98rem;
    max-width: 34rem;
    margin-bottom: var(--space-xl);
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__actions .btn {
    width: min(100%, 320px);
  }

  .hero__stats-badges {
    margin-top: var(--space-xl);
  }

  .hero__stat-badge {
    width: min(100%, 330px);
  }

  .hero__gear--mid-1,
  .hero__gear--mid-2 {
    opacity: 0.12;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__canvas,
  .hero__metal-grid,
  .hero__cold-lights,
  .hero__noise,
  .hero__center-machine {
    animation: none !important;
  }
}

/* ── PROPOSAL / QUÉ HACEMOS ───────────────────────────────── */
.proposal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.proposal__item {
  position: relative;
  padding: var(--space-2xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-align: center;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0px);
  transition: transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

/* Accent line on top of proposal items */
.proposal__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-blue-500), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.proposal__item:hover {
  border-color: var(--clr-border-blue);
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(30, 136, 229, 0.15);
}

.proposal__item:hover::before {
  opacity: 1;
}

.proposal__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(30, 136, 229, 0.05));
  border: 1px solid rgba(30, 136, 229, 0.2);
  border-radius: var(--radius-lg);
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-out);
}

.proposal__item:hover .proposal__icon {
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(30, 136, 229, 0.15);
}

.proposal__icon svg {
  width: 34px;
  height: 34px;
  color: var(--clr-blue-400);
}

.proposal__item h4 {
  margin-bottom: var(--space-sm);
  font-size: var(--fs-lg);
}

.proposal__item p {
  font-size: var(--fs-sm);
  margin: 0 auto;
}

/* ── BENEFITS ──────────────────────────────────────────────── */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* ── SOLUTIONS ─────────────────────────────────────────────── */
.solutions__grid {
  display: grid;
  gap: var(--space-2xl);
}

.solution-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.solution-block:hover {
  border-color: rgba(30, 136, 229, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.solution-block:nth-child(even) {
  direction: rtl;
}

.solution-block:nth-child(even) > * {
  direction: ltr;
}

.solution-block__visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.solution-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.solution-block:hover .solution-block__visual img {
  transform: scale(1.04);
}

.solution-block__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 61, 143, 0.18), transparent);
}

.solution-block__content h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
}

.solution-block__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.solution-block__step-marker {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
}

.step-problem .solution-block__step-marker {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.step-solution .solution-block__step-marker {
  background: rgba(30, 136, 229, 0.15);
  color: var(--clr-blue-400);
  border: 1px solid rgba(30, 136, 229, 0.3);
}

.step-result .solution-block__step-marker {
  background: rgba(34, 197, 94, 0.15);
  color: var(--clr-success);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.solution-block__step-text h5 {
  font-size: var(--fs-sm);
  margin-bottom: 4px;
}

.solution-block__step-text p {
  font-size: var(--fs-sm);
}

/* ── EQUIPOS ───────────────────────────────────────────────── */
.equipos-section {
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(rgba(30, 136, 229, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 136, 229, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
}

.equipos-section__bg-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  animation: ambientPulse 12s ease-in-out infinite alternate;
}

.equipos-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.equipo-showcase-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
  transform-style: preserve-3d;
  perspective: 1000px;
  /* Dynamic 3D tilt properties set by JS */
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0px);
}

.equipo-showcase-card:hover {
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.75), 0 0 30px rgba(30, 136, 229, 0.15);
  border-color: rgba(30, 136, 229, 0.35);
}

/* Card industrial corners overlay */
.equipo-showcase-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(30, 136, 229, 0.03);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  z-index: 2;
  transition: border-color var(--duration-normal) var(--ease-out);
}

.equipo-showcase-card:hover::before {
  border-color: rgba(30, 136, 229, 0.08);
}

.equipo-showcase-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(30, 136, 229, 0.06), transparent 80%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  pointer-events: none;
  z-index: 1;
}

.equipo-showcase-card:hover .equipo-showcase-card__glow {
  opacity: 1;
}

.equipo-showcase-card__border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(130, 155, 190, 0.05);
  pointer-events: none;
  z-index: 3;
  transition: all var(--duration-normal) var(--ease-out);
}

.equipo-showcase-card:hover .equipo-showcase-card__border {
  border-color: rgba(30, 136, 229, 0.4);
  box-shadow: inset 0 0 20px rgba(30, 136, 229, 0.08);
}

.equipo-showcase-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid rgba(130, 155, 190, 0.08);
  background: var(--clr-navy-deep);
}

.equipo-showcase-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out),
              filter var(--duration-slow) var(--ease-out);
  filter: grayscale(15%) brightness(0.85) contrast(1.05);
}

.equipo-showcase-card:hover .equipo-showcase-card__image img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(0.95) contrast(1.1);
}

.equipo-showcase-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 10, 16, 0.95) 0%, rgba(6, 10, 16, 0.3) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Image telemetry scanlines and sweep */
.equipo-showcase-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 2px, rgba(0, 0, 0, 0) 4px);
  z-index: 2;
  pointer-events: none;
  opacity: 0.3;
}

.equipo-showcase-card__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-blue-400), var(--clr-blue-200), var(--clr-blue-400), transparent);
  box-shadow: 0 0 10px var(--clr-blue-400);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.equipo-showcase-card:hover .equipo-showcase-card__image::after {
  animation: scannerSweep 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.equipo-showcase-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-blue-300);
  background: rgba(7, 18, 36, 0.85);
  border: 1px solid rgba(30, 136, 229, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.equipo-showcase-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 70%, transparent 100%);
  transform: skewX(-25deg) translateX(-150%);
  transition: transform var(--duration-slower) var(--ease-out);
  pointer-events: none;
  z-index: 2;
}

.equipo-showcase-card:hover .equipo-showcase-card__shine {
  transform: skewX(-25deg) translateX(150%);
}

.equipo-showcase-card__body {
  padding: var(--space-xl);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.equipo-showcase-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.equipo-showcase-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--clr-text-primary);
  letter-spacing: var(--ls-tight);
}

.equipo-showcase-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  color: var(--clr-text-secondary);
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.equipo-showcase-card__status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--clr-success);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.equipo-showcase-card__status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--clr-success);
  border-radius: 50%;
  animation: radarPulse 2s infinite;
}

.equipo-showcase-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.equipo-showcase-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.equipo-showcase-card__spec {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(14, 20, 32, 0.6);
  border: 1px solid rgba(30, 136, 229, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.equipo-showcase-card:hover .equipo-showcase-card__spec {
  border-color: rgba(30, 136, 229, 0.25);
  background: rgba(30, 136, 229, 0.04);
}

.equipo-showcase-card__spec svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--clr-blue-400);
  transition: transform var(--duration-normal) var(--ease-spring),
              color var(--duration-normal) var(--ease-out);
}

.equipo-showcase-card__spec:hover svg {
  transform: scale(1.1) rotate(5deg);
  color: var(--clr-blue-300);
}

.equipo-showcase-card__spec-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 2px;
  display: block;
}

.equipo-showcase-card__spec-value {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-primary);
}

.equipo-showcase-card__load {
  font-size: var(--fs-xs);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-secondary);
  padding: var(--space-md);
  background: rgba(7, 18, 36, 0.4);
  border-left: 3px solid rgba(30, 136, 229, 0.25);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.equipo-showcase-card:hover .equipo-showcase-card__load {
  border-left-color: var(--clr-blue-400);
  background: rgba(30, 136, 229, 0.04);
  color: var(--clr-text-primary);
}

.equipo-showcase-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--clr-blue-900) 0%, var(--clr-navy) 100%);
  color: var(--clr-blue-300);
  border: 1px solid rgba(30, 136, 229, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  text-decoration: none;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.equipo-showcase-card__cta:hover {
  background: linear-gradient(135deg, var(--clr-blue-800) 0%, var(--clr-blue-900) 100%);
  color: var(--clr-white);
  border-color: var(--clr-blue-400);
  box-shadow: 0 8px 24px rgba(30, 136, 229, 0.25);
  transform: translateY(-2px);
}

/* Featured Card overrides (PL-200) */
.equipo-showcase-card--featured {
  border-color: rgba(224, 107, 10, 0.2);
}

.equipo-showcase-card--featured::before {
  border-color: rgba(224, 107, 10, 0.03);
}

.equipo-showcase-card--featured:hover {
  border-color: rgba(224, 107, 10, 0.4);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.75), 0 0 30px rgba(224, 107, 10, 0.15);
}

.equipo-showcase-card--featured .equipo-showcase-card__glow {
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(224, 107, 10, 0.06), transparent 80%);
}

.equipo-showcase-card--featured .equipo-showcase-card__border {
  border-color: rgba(224, 107, 10, 0.1);
}

.equipo-showcase-card--featured:hover .equipo-showcase-card__border {
  border-color: rgba(224, 107, 10, 0.4);
  box-shadow: inset 0 0 20px rgba(224, 107, 10, 0.08);
}

.equipo-showcase-card--featured .equipo-showcase-card__featured-tag {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 10;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-white);
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-light) 100%);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-accent);
  animation: badgeGlow 3s infinite alternate;
}

.equipo-showcase-card--featured .equipo-showcase-card__badge--accent {
  color: var(--clr-accent-light);
  border-color: rgba(224, 107, 10, 0.4);
  background: rgba(224, 107, 10, 0.1);
}

.equipo-showcase-card--featured .equipo-showcase-card__status {
  background: rgba(224, 107, 10, 0.06);
  border-color: rgba(224, 107, 10, 0.15);
}

.equipo-showcase-card--featured .equipo-showcase-card__status-dot {
  background-color: var(--clr-accent);
}

.equipo-showcase-card--featured .equipo-showcase-card__status-dot::after {
  border-color: var(--clr-accent);
  animation: radarPulseFeatured 2s infinite;
}

.equipo-showcase-card--featured .equipo-showcase-card__load {
  border-left-color: rgba(224, 107, 10, 0.25);
  background: rgba(224, 107, 10, 0.02);
}

.equipo-showcase-card--featured:hover .equipo-showcase-card__load {
  border-left-color: var(--clr-accent);
  background: rgba(224, 107, 10, 0.04);
}

.equipo-showcase-card--featured .equipo-showcase-card__cta {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-light) 100%);
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-accent);
}

.equipo-showcase-card--featured .equipo-showcase-card__cta:hover {
  background: linear-gradient(135deg, var(--clr-accent-light) 0%, var(--clr-accent) 100%);
  box-shadow: 0 8px 24px rgba(224, 107, 10, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Showcase comparison table overrides */
.equipos-section .table-wrap {
  border: 1px solid rgba(30, 136, 229, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  background: rgba(10, 15, 24, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  z-index: 1;
}

.equipos-section .table thead {
  background: linear-gradient(to right, rgba(11, 34, 64, 0.6) 0%, rgba(7, 18, 36, 0.6) 100%);
}

.equipos-section .table th {
  border-bottom: 2px solid rgba(30, 136, 229, 0.25);
  color: var(--clr-blue-300);
  font-size: 11px;
}

.equipos-section .table td {
  border-bottom: 1px solid rgba(130, 155, 190, 0.05);
  padding: var(--space-md) var(--space-lg);
  font-size: var(--fs-sm);
}

.equipos-section .table tbody tr {
  transition: all var(--duration-fast) var(--ease-out);
}

.equipos-section .table tbody tr:hover {
  background: rgba(30, 136, 229, 0.08);
}

.equipos-section .table tbody tr:hover td {
  color: var(--clr-text-primary);
}

/* Keyframes for premium animations */
@keyframes scannerSweep {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes radarPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes radarPulseFeatured {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes badgeGlow {
  0% { box-shadow: 0 0 8px rgba(224, 107, 10, 0.2); }
  100% { box-shadow: 0 0 18px rgba(224, 107, 10, 0.5); }
}

@keyframes ambientPulse {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

/* ── BIO METAL 3000 ────────────────────────────────────────── */
.biometal__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.biometal__visual {
  position: relative;
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  align-items: flex-end;
}

.biometal__visual img {
  border-radius: var(--radius-md);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.biometal__visual img:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(30, 136, 229, 0.15);
}

.biometal__bidon {
  max-height: 380px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.biometal__tambo {
  max-height: 420px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.biometal__content h2 {
  margin-bottom: var(--space-md);
}

.biometal__content > p {
  margin-bottom: var(--space-xl);
}

.biometal__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.biometal__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  background: rgba(30, 136, 229, 0.04);
  border: 1px solid var(--clr-border);
  transition: border-color var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}

.biometal__feature:hover {
  border-color: var(--clr-border-blue);
  background: rgba(30, 136, 229, 0.07);
}

.biometal__feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 136, 229, 0.12);
  border-radius: var(--radius-sm);
  transition: transform var(--duration-fast) var(--ease-spring);
}

.biometal__feature:hover .biometal__feature-icon {
  transform: scale(1.08);
}

.biometal__feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--clr-blue-400);
}

.biometal__feature h5 {
  margin-bottom: 2px;
}

.biometal__feature p {
  font-size: var(--fs-sm);
}

/* Comparison table */
.biometal__comparison {
  margin-top: var(--space-3xl);
}

.biometal__comparison h3 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ── PRODUCTOS QUÍMICOS ────────────────────────────────────── */
.productos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

/* ── SOPORTE TÉCNICO ───────────────────────────────────────── */
.soporte__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.soporte-item {
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
  position: relative;
}

/* Accent line */
.soporte-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-blue-500), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.soporte-item:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-blue);
  box-shadow: 0 12px 40px rgba(30, 136, 229, 0.08);
}

.soporte-item:hover::before {
  opacity: 1;
}

.soporte-item__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.14), rgba(30, 136, 229, 0.04));
  border: 1px solid rgba(30, 136, 229, 0.15);
  border-radius: var(--radius-md);
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-out);
}

.soporte-item:hover .soporte-item__icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(30, 136, 229, 0.12);
}

.soporte-item__icon svg {
  width: 26px;
  height: 26px;
  color: var(--clr-blue-400);
}

.soporte-item h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-sm);
}

.soporte-item p {
  font-size: var(--fs-sm);
  margin: 0 auto;
}

/* ── NOSOTROS ──────────────────────────────────────────────── */
.nosotros__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.nosotros__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.nosotros__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform var(--duration-slow) var(--ease-out);
}

.nosotros__visual:hover img {
  transform: scale(1.03);
}

.nosotros__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 61, 143, 0.25), transparent);
  border-radius: var(--radius-lg);
}

/* Border accent on nosotros image */
.nosotros__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(30, 136, 229, 0.15);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.nosotros__content h2 {
  margin-bottom: var(--space-md);
}

.nosotros__text {
  margin-bottom: var(--space-lg);
  line-height: var(--lh-relaxed);
}

.nosotros__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.nosotros__value {
  padding: var(--space-md);
  background: rgba(30, 136, 229, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}

.nosotros__value:hover {
  border-color: var(--clr-border-blue);
  background: rgba(30, 136, 229, 0.06);
}

.nosotros__value h5 {
  font-size: var(--fs-sm);
  color: var(--clr-blue-400);
  margin-bottom: 4px;
}

.nosotros__value p {
  font-size: var(--fs-xs);
}

/* Highlight "paradigma" word */
.word-paradigma {
  position: relative;
  display: inline-block;
  color: var(--clr-blue-400);
  font-weight: var(--fw-extrabold);
  font-style: italic;
}

.word-paradigma::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-blue-400), var(--clr-accent));
  border-radius: 2px;
  animation: glowLine 3s ease-in-out infinite;
}

/* ── GALERÍA ───────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  background: var(--clr-surface);
  border: 1px solid transparent;
  transition: border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.gallery__item:hover {
  border-color: rgba(30, 136, 229, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery__item:hover img,
.gallery__item:hover video {
  transform: scale(1.06);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-out);
  backdrop-filter: blur(8px);
}

.gallery__item:hover .gallery__item-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: all var(--duration-normal) var(--ease-out);
}

.gallery__item:hover .gallery__play-icon {
  background: rgba(30, 136, 229, 0.6);
  transform: translate(-50%, -50%) scale(1.15);
  border-color: rgba(30, 136, 229, 0.5);
}

.gallery__play-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 3px;
}

/* ── CONTACTO ──────────────────────────────────────────────── */
.contacto__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contacto__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contacto__info h2 {
  margin-bottom: var(--space-sm);
}

.contacto__info > p {
  margin-bottom: var(--space-md);
}

.contacto__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(30, 136, 229, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}

.contacto__detail:hover {
  border-color: var(--clr-border-blue);
  background: rgba(30, 136, 229, 0.06);
}

.contacto__detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 136, 229, 0.1);
  border-radius: var(--radius-sm);
}

.contacto__detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--clr-blue-400);
}

.contacto__detail h5 {
  font-size: var(--fs-sm);
  margin-bottom: 2px;
}

.contacto__detail p,
.contacto__detail a {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

.contacto__form-wrap {
  padding: var(--space-2xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur));
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.contacto__form-wrap:hover {
  border-color: var(--clr-border-blue);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(30, 136, 229, 0.12);
}

/* Top accent line on contact form */
.contacto__form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-blue-600), var(--clr-accent), var(--clr-blue-600));
}

.contacto__form-wrap h3 {
  margin-bottom: var(--space-lg);
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: var(--space-3xl);
  background: linear-gradient(135deg, var(--clr-blue-900), var(--clr-navy));
  border: 1px solid var(--clr-border-blue);
  border-radius: var(--radius-xl);
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 107, 10, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.cta-banner h2 {
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ── Responsive Sections ───────────────────────────────────── */
@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipos-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

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

  .biometal__visual {
    order: -1;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(2rem, 9vw, 3.1rem);
    line-height: 1.12;
  }

  .hero__scroll-indicator {
    display: none;
  }

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

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

  .solution-block {
    grid-template-columns: 1fr;
  }

  .solution-block:nth-child(even) {
    direction: ltr;
  }

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

  .nosotros__visual {
    order: -1;
  }

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

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

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

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

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

  .equipo-showcase-card__specs {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* ── SECTION CONNECTORS ────────────────────────────────────── */
.section-connector {
  position: relative;
  width: 100%;
  height: 80px;
  background: var(--clr-bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 5;
}

.section-connector-line {
  width: 2px;
  height: 100%;
  background: rgba(30, 136, 229, 0.08);
  position: relative;
  border-radius: var(--radius-full);
}

.section-connector-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--scroll-percent, 0%);
  background: linear-gradient(to bottom, var(--clr-blue-500), var(--clr-blue-300));
  box-shadow: 0 0 8px var(--clr-blue-400), 0 0 16px rgba(30, 136, 229, 0.4);
  border-radius: var(--radius-full);
  transition: height 0.1s ease-out;
}

/* ── SOLUCIONES — Datos Duros ─────────────────────────────── */
.soluciones__datos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding: var(--space-2xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.soluciones__dato {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.soluciones__dato-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 136, 229, 0.1);
  border: 1px solid rgba(30, 136, 229, 0.2);
  border-radius: var(--radius-sm);
}

.soluciones__dato-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--clr-blue-400);
}

.soluciones__dato h4 {
  font-size: var(--fs-md);
  color: var(--clr-text-primary);
  margin-bottom: var(--space-xs);
}

.soluciones__dato p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

/* ── SOLUCIONES — CTA ─────────────────────────────────────── */
.soluciones__cta {
  margin-top: var(--space-3xl);
}

.soluciones__cta-inner {
  background: linear-gradient(135deg, rgba(12, 61, 143, 0.3), rgba(30, 136, 229, 0.1));
  border: 1px solid var(--clr-border-blue);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  text-align: center;
}

.soluciones__cta-inner h3 {
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl));
  margin-bottom: var(--space-md);
  color: var(--clr-text-primary);
}

.soluciones__cta-inner p {
  color: var(--clr-text-secondary);
  max-width: 60ch;
  margin: 0 auto var(--space-xl);
}

@media (max-width: 768px) {
  .soluciones__datos {
    grid-template-columns: 1fr;
  }
}

/* ── BIO METAL 3000 — Versatilidad ───────────────────────── */
.biometal__versatilidad {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(30, 136, 229, 0.05);
  border: 1px solid rgba(30, 136, 229, 0.15);
  border-radius: var(--radius-md);
}

.biometal__versatilidad-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--clr-blue-400);
  margin-bottom: var(--space-md);
}

.biometal__usos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.biometal__uso {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

.biometal__uso-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── SOPORTE — Planes de Mantenimiento ─────────────────────── */
.soporte__planes {
  margin-top: var(--space-4xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid var(--clr-border);
}

.soporte__planes-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.soporte__planes-header h3 {
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl));
  margin-bottom: var(--space-md);
}

.soporte__planes-header p {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--clr-text-secondary);
}

.soporte__planes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.soporte__plan {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.soporte__plan--featured {
  background: linear-gradient(135deg, rgba(12, 61, 143, 0.25), rgba(30, 136, 229, 0.1));
  border-color: var(--clr-border-blue);
  box-shadow: 0 0 30px rgba(30, 136, 229, 0.1);
}

.soporte__plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  gap: var(--space-sm);
}

.soporte__plan-header h4 {
  font-size: var(--fs-lg);
  color: var(--clr-text-primary);
}

.soporte__plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.soporte__plan-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

.soporte__plan-list li::before {
  content: '✓';
  color: var(--clr-blue-400);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .soporte__planes-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ── NOSOTROS — Cobertura Nacional ────────────────────────── */
.nosotros__cobertura {
  margin-top: var(--space-4xl);
  padding: var(--space-3xl);
  background: linear-gradient(135deg, rgba(12, 61, 143, 0.2), rgba(30, 136, 229, 0.08));
  border: 1px solid var(--clr-border-blue);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3xl);
  align-items: center;
}

.nosotros__cobertura-content h3 {
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl));
  margin-bottom: var(--space-md);
}

.nosotros__cobertura-content p {
  color: var(--clr-text-secondary);
  max-width: 60ch;
}

.nosotros__cobertura-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.nosotros__cobertura-stat {
  text-align: center;
}

.nosotros__cobertura-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-black);
  color: var(--clr-blue-400);
  font-family: var(--font-heading);
  line-height: 1;
}

.nosotros__cobertura-label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-top: var(--space-xs);
}

@media (max-width: 768px) {
  .nosotros__cobertura {
    grid-template-columns: 1fr;
  }

  .nosotros__cobertura-stats {
    flex-direction: row;
    justify-content: space-around;
  }
}

/* Final hero-only mobile containment. Keep decorative layers from creating
   sideways pressure and make the conversion controls fit narrow screens. */
@media (max-width: 768px) {
  .hero {
    width: 100vw;
    max-width: 100vw;
  }

  .hero__content {
    width: 100vw;
    max-width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__title {
    font-size: clamp(1.85rem, 7.4vw, 2.55rem);
    line-height: 1.12;
  }

  .hero__title-line {
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: min(100%, 22rem);
    font-size: 0.96rem;
  }

  .hero__actions,
  .hero__stats-badges {
    width: 100%;
  }

  .hero__actions .btn,
  .hero__stat-badge {
    width: 100%;
    max-width: 300px;
  }

  .hero__actions .btn {
    padding-left: 20px;
    padding-right: 20px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero__content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero__title {
    font-size: clamp(1.75rem, 7.2vw, 2.18rem);
  }

  .hero__badge {
    max-width: calc(100vw - 28px);
  }

  .hero__stats-badges {
    align-items: flex-start;
    padding-left: 20px;
  }

  .hero__stat-badge {
    max-width: 250px;
  }
}

/* Mobile overflow refinements */
@media (max-width: 768px) {
  .section,
  .container,
  .section-header,
  .section-title,
  .section-subtitle,
  .proposal__grid,
  .benefits__grid,
  .solutions__grid,
  .solution-block,
  .solution-block__content,
  .equipos-showcase,
  .productos__grid,
  .soporte__grid,
  .soporte__planes-grid,
  .nosotros__layout,
  .nosotros__values,
  .contacto__layout,
  .gallery__grid,
  .biometal__layout,
  .biometal__content,
  .biometal__features,
  .biometal__comparison,
  .biometal__versatilidad,
  .biometal__usos,
  .nosotros__cobertura,
  .cta-banner {
    max-width: 100%;
    min-width: 0;
  }

  .section-title,
  .section-subtitle,
  .section-label,
  .solution-block__content,
  .solution-block__step-text,
  .equipo-showcase-card__body,
  .card__body,
  .biometal__content,
  .biometal__content h2,
  .biometal__content p,
  .biometal__feature h5,
  .biometal__feature p,
  .biometal__versatilidad-title,
  .biometal__uso,
  .nosotros__cobertura-content,
  .nosotros__cobertura-content h3,
  .nosotros__cobertura-content p,
  .nosotros__cobertura-label,
  .cta-banner h2,
  .cta-banner p {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero__badge {
    max-width: calc(100vw - 40px);
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
  }

  .hero__badge-text {
    min-width: 0;
    white-space: normal;
    overflow-wrap: break-word;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  .soluciones__cta-inner,
  .nosotros__cobertura,
  .cta-banner {
    padding: clamp(1.25rem, 6vw, var(--space-2xl));
  }

  .soluciones__cta-inner .btn,
  .biometal__content > .btn,
  .cta-banner .btn,
  .contacto__form-wrap .btn {
    width: 100%;
    max-width: 100%;
  }

  .biometal__layout {
    gap: var(--space-2xl);
  }

  .biometal__visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: var(--space-md);
    overflow: hidden;
  }

  .biometal__visual img {
    min-width: 0;
    max-width: calc(50% - var(--space-sm));
    object-fit: contain;
  }

  .biometal__bidon {
    max-height: 280px;
  }

  .biometal__tambo {
    max-height: 300px;
  }

  .biometal__feature {
    min-width: 0;
    padding: var(--space-md);
  }

  .biometal__feature > div:last-child {
    min-width: 0;
  }

  .biometal__versatilidad {
    padding: var(--space-md);
  }

  .biometal__versatilidad-title {
    letter-spacing: 0.08em;
    line-height: 1.25;
  }

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

  .biometal__uso {
    min-width: 0;
    align-items: flex-start;
    padding: var(--space-sm) var(--space-md);
  }

  .biometal__uso span:last-child {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .biometal__comparison .table-wrap {
    width: 100%;
    max-width: 100%;
  }

  .biometal__comparison .table-wrap {
    overflow: visible;
  }

  .biometal__comparison .table,
  .biometal__comparison .table thead,
  .biometal__comparison .table tbody,
  .biometal__comparison .table tr,
  .biometal__comparison .table th,
  .biometal__comparison .table td {
    display: block;
    width: 100%;
  }

  .biometal__comparison .table thead {
    display: none;
  }

  .biometal__comparison .table tr {
    padding: var(--space-md);
    border-bottom: 1px solid var(--clr-border);
  }

  .biometal__comparison .table tr:last-child {
    border-bottom: 0;
  }

  .biometal__comparison .table td {
    padding: 0;
    border-bottom: 0;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .biometal__comparison .table td + td {
    margin-top: var(--space-sm);
  }

  .biometal__comparison .table td:nth-child(2)::before,
  .biometal__comparison .table td:nth-child(3)::before {
    display: block;
    margin-bottom: 2px;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-blue-400);
  }

  .biometal__comparison .table td:nth-child(2)::before {
    content: 'Bio Metal 3000';
  }

  .biometal__comparison .table td:nth-child(3)::before {
    content: 'Diesel Convencional';
  }

  #equipos .table-wrap,
  #productos .table-wrap {
    overflow: visible;
  }

  #equipos .table,
  #equipos .table thead,
  #equipos .table tbody,
  #equipos .table tr,
  #equipos .table th,
  #equipos .table td,
  #productos .table,
  #productos .table thead,
  #productos .table tbody,
  #productos .table tr,
  #productos .table th,
  #productos .table td {
    display: block;
    width: 100%;
  }

  #equipos .table thead,
  #productos .table thead {
    display: none;
  }

  #equipos .table tr,
  #productos .table tr {
    padding: var(--space-md);
    border-bottom: 1px solid var(--clr-border);
  }

  #equipos .table tr:last-child,
  #productos .table tr:last-child {
    border-bottom: 0;
  }

  #equipos .table td,
  #productos .table td {
    padding: 0;
    border-bottom: 0;
    white-space: normal;
    overflow-wrap: break-word;
  }

  #equipos .table td + td,
  #productos .table td + td {
    margin-top: var(--space-sm);
  }

  #equipos .table td::before,
  #productos .table td::before {
    display: block;
    margin-bottom: 2px;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-blue-400);
  }

  #equipos .table td:nth-child(1)::before {
    content: 'Modelo';
  }

  #equipos .table td:nth-child(2)::before {
    content: 'Capacidad de Operaci\00f3n';
  }

  #equipos .table td:nth-child(3)::before {
    content: 'Material / Calibre';
  }

  #equipos .table td:nth-child(4)::before {
    content: 'Uso Ideal';
  }

  #equipos .table td:nth-child(5)::before {
    content: 'Tipo de Carga';
  }

  #productos .table td:nth-child(1)::before {
    content: 'Necesidad / Aplicaci\00f3n';
  }

  #productos .table td:nth-child(2)::before {
    content: 'Producto Recomendado';
  }

  #productos .table td:nth-child(3)::before {
    content: 'Base';
  }

  .nosotros__cobertura {
    gap: var(--space-xl);
  }

  .nosotros__cobertura-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    min-width: 0;
  }

  .nosotros__cobertura-stat {
    flex: 1 1 92px;
    min-width: 0;
  }

  .nosotros__cobertura-num {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }

  .nosotros__cobertura-label {
    letter-spacing: 0.06em;
    line-height: 1.25;
  }

  .cta-banner .section-subtitle {
    max-width: 100%;
  }

  .cta-banner::before {
    width: 280px;
    height: 280px;
    top: -26%;
    right: -36%;
  }

  .cta-banner::after {
    width: 240px;
    height: 240px;
    bottom: -24%;
    left: -32%;
  }
}

@media (max-width: 430px) {
  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .section-label {
    max-width: 100%;
    letter-spacing: 0.08em;
    line-height: 1.25;
    white-space: normal;
  }

  .solution-block,
  .proposal__item,
  .card__body,
  .card__footer,
  .equipo-showcase-card__body,
  .soporte-item,
  .soporte__plan,
  .soluciones__cta-inner,
  .nosotros__cobertura,
  .cta-banner,
  .contacto__form-wrap {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .hero__badge {
    max-width: calc(100vw - 32px);
    gap: 8px;
    padding: 8px 12px;
  }

  .hero__badge-text {
    font-size: 0.6rem;
    letter-spacing: 0.03em;
  }

  .biometal__visual {
    gap: var(--space-sm);
  }

  .biometal__bidon {
    max-height: 230px;
  }

  .biometal__tambo {
    max-height: 250px;
  }

  .biometal__feature {
    gap: var(--space-sm);
    padding: var(--space-sm);
  }

  .biometal__feature-icon {
    width: 38px;
    height: 38px;
  }

  .biometal__versatilidad {
    padding: var(--space-md);
  }

  .biometal__uso {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  .nosotros__cobertura-stats {
    gap: var(--space-sm);
  }

  .nosotros__cobertura-stat {
    flex-basis: 100%;
  }
}

@media (max-width: 375px) {
  .solution-block,
  .proposal__item,
  .card__body,
  .card__footer,
  .equipo-showcase-card__body,
  .soporte-item,
  .soporte__plan,
  .soluciones__cta-inner,
  .nosotros__cobertura,
  .cta-banner,
  .contacto__form-wrap {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .biometal__content > .btn,
  .soluciones__cta-inner .btn,
  .cta-banner .btn {
    font-size: var(--fs-sm);
  }
}
