/* styles.css - Hoja de Estilos Premium de LeadForgeIA v2.1 */

:root {
  /* Matriz Cromática HSL Oficial - Navy y Acentos Eléctricos */
  --bg-navy-deep: hsl(225, 60%, 8%);      /* #050814 - Fondo principal base */
  --bg-navy-dark: hsl(225, 60%, 10%);     /* #0A1028 - Fondo secundario y bloques */
  --bg-navy-card: hsl(225, 45%, 15%);     /* #152051 - Fondo de tarjetas y paneles */
  
  --text-white: hsl(210, 20%, 98%);       /* #F5F7FA - Claridad premium, texto principal */
  --text-secondary: hsl(210, 100%, 92%);  /* #D6EBFF - Azul hielo/azul claro, texto descriptivo */
  --text-muted: hsl(210, 10%, 85%);       /* #D9DFE8 - Gris claro de lectura */
  --text-faint: hsl(210, 10%, 65%);       /* #9CA6B8 - Gris apagado de soporte */
  
  --accent-cyan: hsl(185, 95%, 45%);      /* El "Alma Digital" - Cian tecnológico */
  --accent-blue: hsl(210, 100%, 50%);     /* #0082FF - Azul eléctrico para énfasis */
  --accent-purple: hsl(260, 60%, 65%);    /* Púrpura secundario de Stitch */
  
  /* Fuentes Corporativas */
  --font-title: 'Montserrat', system-ui, sans-serif;
  --font-subtitle: 'Inter', system-ui, sans-serif;
  --font-body: 'Roboto', system-ui, sans-serif;

  /* Bordes y Sombras de Cristal y Metal Pulido */
  --border-metal-pulido: 1.5px solid hsla(210, 100%, 92%, 0.09);
  --shadow-premium: 0 25px 50px rgba(0, 0, 0, 0.65);
  --shadow-cyan-glow: 0 0 25px hsla(185, 95%, 45%, 0.25);
  
  /* Glassmorphism */
  --glass-bg: hsla(225, 45%, 15%, 0.45);
  --glass-border: 1px solid hsla(210, 100%, 92%, 0.08);
  --glass-blur: blur(24px);
}

/* Reset y Estilos Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, p, ul, li, figure {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-navy-deep);
  background-image: 
    linear-gradient(180deg, rgba(5, 8, 20, 0.88) 0%, rgba(5, 8, 20, 0.98) 100%),
    url('assets/forge-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Fondo Dinámico de Orbes Flotantes */
.bg-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
  mix-blend-mode: screen;
}

.orb-cyan {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
  top: -10%;
  left: -20%;
  animation: orbFloat1 28s infinite alternate ease-in-out;
}

.orb-blue {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
  bottom: 10%;
  right: -10%;
  animation: orbFloat2 32s infinite alternate ease-in-out;
}

.orb-purple {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  opacity: 0.1;
  animation: orbFloat1 35s infinite alternate-reverse ease-in-out;
}

@keyframes orbFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5vw, 8vh) scale(1.1); }
  100% { transform: translate(-3vw, -4vh) scale(0.95); }
}

@keyframes orbFloat2 {
  0% { transform: translate(0, 0) scale(1.05); }
  50% { transform: translate(-6vw, -8vh) scale(0.9); }
  100% { transform: translate(4vw, 5vh) scale(1.15); }
}

/* Artefactos de Cristal y Metal Pulido 3D Flotantes en el Fondo */
.bg-artifact-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floating-artifact {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.artifact-hero-left {
  width: 280px;
  height: 280px;
  background-image: url('assets/crystal-orbs.png');
  top: 15%;
  left: -100px;
  filter: blur(1px) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  animation: floatingArtifactLeft 12s infinite alternate ease-in-out;
}

.artifact-forge-right {
  width: 320px;
  height: 320px;
  background-image: url('assets/crystal-orbs.png');
  top: 55%;
  right: -120px;
  transform: rotate(180deg);
  filter: blur(2px) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  animation: floatingArtifactRight 15s infinite alternate ease-in-out;
}

@keyframes floatingArtifactLeft {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  50% { transform: translateY(-20px) rotate(5deg) scale(1.03); opacity: 0.45; }
  100% { transform: translateY(10px) rotate(-3deg) scale(0.97); }
}

@keyframes floatingArtifactRight {
  0% { transform: translateY(0px) rotate(180deg) scale(0.95); }
  50% { transform: translateY(-25px) rotate(185deg) scale(1.02); opacity: 0.42; }
  100% { transform: translateY(15px) rotate(176deg) scale(0.98); }
}

@media (max-width: 768px) {
  .bg-artifact-container {
    display: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

ul {
  list-style: none;
}

/* Estructura Líquida Responsiva */
.container {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* Título de la Página: Font en BOLD, Degradado */
h1 {
  font-family: var(--font-title);
  font-weight: 800;
  background: linear-gradient(90deg, #FFFFFF 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  color: var(--text-white);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h3, h4 {
  font-family: var(--font-subtitle);
  font-weight: 600;
  color: var(--text-secondary);
}

/* Header Sticky con Glassmorphism */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsla(225, 60%, 8%, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid hsla(210, 100%, 92%, 0.05);
  transition: background 0.3s ease;
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 229, 255, 0.15));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper:hover .logo-image {
  transform: translateY(-2px) scale(1.02);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

@media (max-width: 850px) {
  .header-nav {
    display: none;
  }
}

.nav-link-item {
  font-family: var(--font-subtitle);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-faint);
  transition: all 0.25s ease;
  position: relative;
  padding: 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-link-item:hover {
  color: var(--text-white);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: width 0.25s ease;
}

.nav-link-item:hover::after {
  width: 100%;
}

/* Botones Premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-family: var(--font-subtitle);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), hsl(210, 100%, 40%));
  color: var(--text-white);
  border: var(--glass-border);
  box-shadow: 0 10px 25px rgba(0, 130, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 130, 255, 0.35), var(--shadow-cyan-glow);
  border-color: var(--accent-cyan);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid hsla(210, 100%, 92%, 0.12);
}

.btn-outline:hover {
  background: hsla(210, 100%, 92%, 0.04);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45), 0 0 20px rgba(37, 211, 102, 0.3);
}

/* Pills / Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-subtitle);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: hsla(185, 95%, 45%, 0.08);
  border: 1px solid hsla(185, 95%, 45%, 0.2);
  color: var(--accent-cyan);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.badge-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulseGlow 2s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 15px var(--accent-cyan); }
}

/* HERO SECTION */
.hero {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-bullets {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 2.5rem;
}

.hero-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-family: var(--font-subtitle);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-bullet-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

/* Floating Image Panels */
.hero-image-panel {
  position: relative;
  border-radius: 28px;
  background: var(--glass-bg);
  border: var(--border-metal-pulido);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 0.6rem;
  box-shadow: var(--shadow-premium), 0 0 35px rgba(0, 130, 255, 0.08);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  animation: floatingPanel 6s infinite ease-in-out;
}

@keyframes floatingPanel {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-image-panel:hover {
  border-color: hsla(185, 95%, 45%, 0.35);
  box-shadow: var(--shadow-premium), var(--shadow-cyan-glow);
}

.hero-video-element {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

/* SECCIONES COMUNES */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid hsla(210, 100%, 92%, 0.04);
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.section-head p.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.deco-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  margin-top: 1.5rem;
  border-radius: 2px;
}

/* GLASS CARD GENERAL */
.glass-card {
  background: rgba(0, 18, 48, 0.65);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: hsla(185, 95%, 45%, 0.3);
  box-shadow: 0 0 35px -10px rgba(0, 130, 255, 0.35);
  transform: translateY(-5px);
}

/* SECCIÓN: COMMERCIAL EXECUTION LAYER */
.layer-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .layer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.layer-card {
  padding: 2.2rem;
}

.layer-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-cyan);
}

.layer-icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.layer-card h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 0.85rem;
}

.layer-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.layer-connector {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.connector-beam {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-cyan), transparent);
  position: relative;
}

.connector-beam::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 8px;
  height: 5px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: beamFlow 3s infinite linear;
}

@keyframes beamFlow {
  0% { left: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.connector-core-badge {
  background: var(--bg-navy-dark);
  border: 1px solid var(--accent-cyan);
  border-radius: 99px;
  padding: 0.5rem 1.25rem;
  color: var(--accent-cyan);
  font-family: var(--font-subtitle);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-cyan-glow);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
  animation: processorPulse 2s infinite ease-in-out;
}

@keyframes processorPulse {
  0% {
    box-shadow: 0 0 12px hsla(185, 95%, 45%, 0.2), 0 0 0 0px hsla(185, 95%, 45%, 0.2);
    border-color: hsla(185, 95%, 45%, 0.6);
  }
  50% {
    box-shadow: 0 0 25px hsla(185, 95%, 45%, 0.6), 0 0 0 8px hsla(185, 95%, 45%, 0);
    border-color: var(--accent-cyan);
  }
  100% {
    box-shadow: 0 0 12px hsla(185, 95%, 45%, 0.2), 0 0 0 0px hsla(185, 95%, 45%, 0);
    border-color: hsla(185, 95%, 45%, 0.6);
  }
}

@keyframes pulseIcon {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    color: #fff;
    text-shadow: 0 0 8px var(--accent-cyan);
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* PROPUESTA DE VALOR: TARGET CARDS 3D */
.value-cards-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  perspective: 1000px;
}

@media (min-width: 768px) {
  .value-cards-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.value-glass-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(0, 229, 255, 0.02) 60%, rgba(0, 130, 255, 0.04) 100%);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1.5px solid rgba(0, 229, 255, 0.2);
  border-left: 1.5px solid rgba(0, 229, 255, 0.15);
  border-right: 1px solid rgba(0, 229, 255, 0.05);
  border-bottom: 1px solid rgba(0, 229, 255, 0.05);
  box-shadow: 
    inset 0 15px 30px rgba(0, 229, 255, 0.04),
    0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  animation: floatGlass 6s infinite ease-in-out;
}

.glass-delay-1 { animation-delay: 0s; }
.glass-delay-2 { animation-delay: 1.5s; }
.glass-delay-3 { animation-delay: 3s; }

@keyframes floatGlass {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.value-glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12) 0%, rgba(0, 229, 255, 0.02) 40%, transparent 70%);
  pointer-events: none;
}

.value-glass-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-white);
  font-family: var(--font-subtitle);
  font-weight: 700;
}

.value-glass-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.value-glass-card:hover {
  transform: translateY(-8px) rotateX(4deg) scale(1.02);
  border-top-color: rgba(0, 229, 255, 0.45);
  border-left-color: rgba(0, 229, 255, 0.35);
  box-shadow: 
    inset 0 15px 30px rgba(0, 229, 255, 0.1),
    0 25px 45px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 229, 255, 0.25);
}

/* Laboratorio LeadForgeIA Split Layout */
.lab-split-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

@media (min-width: 992px) {
  .lab-split-layout {
    grid-template-columns: 1fr 1.2fr;
  }
}

.lab-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lab-info-card {
  padding: 1.5rem 1.8rem;
  position: relative;
}

.lab-info-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.lab-info-header span {
  color: var(--accent-cyan);
  font-size: 1.6rem;
}

.lab-info-header h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin: 0;
}

.lab-info-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.lab-central-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  background: var(--bg-navy-dark);
  border: 1px solid var(--accent-cyan);
  border-radius: 99px;
  padding: 0.6rem 1.25rem;
  color: var(--accent-cyan);
  font-family: var(--font-subtitle);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-cyan-glow);
  align-self: flex-start;
  margin-top: 0.5rem;
  animation: processorPulse 2.5s infinite ease-in-out;
}

.lab-central-badge span {
  font-size: 1.2rem;
  animation: pulseIcon 2s infinite ease-in-out;
}

/* 3D Lab Simulation Device */
.lab-visual-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lab-device-container {
  width: 100%;
  max-width: 550px;
  perspective: 1000px;
  padding: 2rem 0;
}

.lab-platform {
  position: relative;
  background: linear-gradient(180deg, #1b253b 0%, #0c1220 100%);
  border: 3px solid #3c527c;
  border-radius: 28px;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.7),
    inset 0 4px 12px rgba(255, 255, 255, 0.08),
    0 0 40px rgba(0, 229, 255, 0.05);
  transform: rotateX(15deg) rotateY(-8deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.lab-platform:hover {
  transform: rotateX(10deg) rotateY(-5deg) translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.8),
    inset 0 4px 12px rgba(255, 255, 255, 0.12),
    0 0 50px rgba(0, 229, 255, 0.15);
}

.lab-cylinder-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 310px;
  padding: 0 0.5rem 1rem;
}

.lab-cylinder-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.lab-cylinder-label {
  font-family: var(--font-subtitle);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  margin-top: 0.85rem;
  white-space: nowrap;
}

.lab-cylinder-wrapper:hover .lab-cylinder-label {
  color: var(--c-color);
}

/* Glass Cylinder */
.lab-cylinder {
  position: relative;
  width: 32px;
  height: var(--c-height);
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

@media (min-width: 600px) {
  .lab-cylinder {
    width: 42px;
  }
}

.lab-cylinder-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px / 8px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.06) 0%, 
    rgba(255, 255, 255, 0.02) 25%, 
    rgba(255, 255, 255, 0.12) 60%, 
    rgba(255, 255, 255, 0.2) 85%, 
    rgba(255, 255, 255, 0.04) 100%
  );
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    inset 0 0 10px rgba(255, 255, 255, 0.05),
    inset 0 0 12px rgba(0, 229, 255, 0.05);
  pointer-events: none;
  z-index: 2;
}

/* Glass Cylinder Metallic Cap */
.lab-cylinder-cap {
  position: absolute;
  top: -5px;
  width: 106%;
  height: 10px;
  background: linear-gradient(90deg, #5b759e, #8da9d4 40%, #c4daff 70%, #5b759e 100%);
  border-radius: 50% / 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* LED Ring at the Cylinder Base */
.lab-led-ring {
  position: absolute;
  bottom: -4px;
  width: 112%;
  height: 8px;
  background: transparent;
  border-radius: 50%;
  border: 2.5px solid var(--c-color);
  box-shadow: 
    0 0 15px var(--c-color),
    inset 0 0 8px var(--c-color);
  z-index: 3;
}

/* Cylinder Core (The Floating Glowing Cubes) */
.lab-cylinder-core {
  position: absolute;
  bottom: 25%;
  width: 12px;
  height: 12px;
  background: var(--c-color);
  border-radius: 3px;
  box-shadow: 0 0 18px var(--c-color);
  opacity: 0.85;
  animation: floatCore 4s infinite ease-in-out alternate;
  animation-delay: var(--delay);
  z-index: 1;
}

@media (min-width: 600px) {
  .lab-cylinder-core {
    width: 16px;
    height: 16px;
  }
}

@keyframes floatCore {
  0% {
    transform: translateY(0px) rotate(0deg) scale(0.95);
    box-shadow: 0 0 12px var(--c-color);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(45deg) scale(1.05);
    box-shadow: 0 0 22px var(--c-color);
    opacity: 0.95;
  }
  100% {
    transform: translateY(-40px) rotate(90deg) scale(0.95);
    box-shadow: 0 0 12px var(--c-color);
    opacity: 0.7;
  }
}

/* Hologram Tag Floating Above Cylinder */
.lab-holo-line {
  width: 1px;
  height: 20px;
  border-left: 1px dashed var(--c-color);
  opacity: 0.4;
  margin-bottom: 2px;
}

.lab-hologram {
  background: rgba(0, 18, 48, 0.7);
  border: 1px solid var(--c-color);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  box-shadow: 
    0 0 12px rgba(0, 229, 255, 0.05),
    inset 0 0 8px rgba(0, 229, 255, 0.05);
  backdrop-filter: blur(4px);
  animation: floatHologram 3s infinite alternate ease-in-out;
  animation-delay: var(--delay);
}

.lab-holo-tag {
  font-family: var(--font-subtitle);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-color);
  text-shadow: 0 0 4px var(--c-color);
  white-space: nowrap;
}

@keyframes floatHologram {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}

/* Platform edge detailing */
.lab-platform-edge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 2px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  justify-content: flex-end;
}

.lab-dial-knob {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4b5f85 0%, #222d42 100%);
  border: 2px solid #5b759e;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.lab-dial-knob:hover {
  transform: rotate(45deg);
  border-color: var(--accent-cyan);
}

.dial-notch {
  position: absolute;
  top: 2px;
  left: calc(50% - 1.5px);
  width: 3px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 1px;
}

.lab-status-lights {
  display: flex;
  gap: 0.35rem;
}

.status-light {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #3b4e6e;
}

.status-light.green {
  background-color: #25D366;
  box-shadow: 0 0 8px #25D366;
}

.status-light.blue {
  background-color: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue);
}

.status-light.cyan {
  background-color: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}

.status-light.blinking {
  animation: blinkStatus 1.5s infinite alternate ease-in-out;
}

.status-light.cyan.blinking {
  animation-delay: 0.5s;
}

@keyframes blinkStatus {
  0% {
    opacity: 0.3;
    box-shadow: none;
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 8px currentColor;
  }
}

/* INTERACTIVE FORGE PIPELINE SECTION */
.forge-container {
  background: var(--bg-navy-dark);
  background-image: 
    linear-gradient(rgba(10, 16, 40, 0.85), rgba(10, 16, 40, 0.95)),
    url('assets/forge-bg.png');
  background-size: cover;
  background-position: center;
  border: var(--glass-border);
  border-radius: 32px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-premium), 0 0 30px hsla(185, 95%, 45%, 0.03);
  position: relative;
  overflow: hidden;
}

.forge-pipeline-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid hsla(210, 100%, 92%, 0.05);
  position: relative;
  z-index: 5;
}

.forge-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 229, 255, 0.15);
  font-family: var(--font-subtitle);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-faint);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatBtn 6s infinite ease-in-out;
}

.forge-btn:nth-of-type(1) { animation-delay: 0s; }
.forge-btn:nth-of-type(2) { animation-delay: 1.5s; }
.forge-btn:nth-of-type(3) { animation-delay: 3s; }
.forge-btn:nth-of-type(4) { animation-delay: 4.5s; }

@keyframes floatBtn {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

.forge-btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-faint);
  transition: all 0.3s;
}

.forge-btn:hover {
  border-color: rgba(0, 229, 255, 0.45);
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.forge-btn.active {
  border-color: var(--accent-cyan);
  color: var(--text-white);
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 
    inset 0 4px 15px rgba(0, 229, 255, 0.15),
    0 12px 25px rgba(0, 229, 255, 0.2);
  transform: translateY(-2px) scale(1.02);
  animation-play-state: paused;
}

.forge-btn.active .forge-btn-dot {
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}

.forge-arr {
  color: rgba(156, 166, 184, 0.3);
  font-size: 1rem;
  user-select: none;
  font-family: monospace;
}

@media (max-width: 640px) {
  .forge-arr {
    display: none;
  }
}

.forge-stage-content {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  .forge-stage-content {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.forge-stage-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.forge-stage-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.forge-stage-num {
  font-family: var(--font-subtitle);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.forge-stage-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-white);
  font-weight: 700;
}

.forge-stage-subtext {
  font-size: 0.65em;
  color: var(--text-secondary);
  font-weight: 500;
  display: inline-block;
  margin-top: 0.4rem;
}

.forge-stage-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.forge-io-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: transparent;
  border: none;
}

.forge-io-segment {
  padding: 1.25rem;
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.forge-io-segment.in {
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.75) 0%, rgba(8, 10, 15, 0.7) 50%, rgba(59, 130, 246, 0.05) 78%, rgba(59, 130, 246, 0.22) 100%) !important;
  border: 1px solid rgba(96, 165, 250, 0.18) !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    inset 0 -6px 15px -8px rgba(59, 130, 246, 0.35),
    0 10px 20px rgba(0, 0, 0, 0.35);
}

.forge-io-segment.out {
  background: linear-gradient(180deg, rgba(8, 16, 18, 0.75) 0%, rgba(8, 12, 15, 0.7) 50%, rgba(0, 229, 255, 0.05) 78%, rgba(0, 229, 255, 0.22) 100%) !important;
  border: 1px solid rgba(0, 229, 255, 0.18) !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    inset 0 -6px 15px -8px rgba(0, 229, 255, 0.35),
    0 10px 20px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.forge-io-label {
  font-family: var(--font-subtitle);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-align: center;
  display: block;
}

.forge-io-segment.in .forge-io-label {
  color: var(--accent-blue);
}

.forge-io-segment.out .forge-io-label {
  color: var(--accent-cyan);
}

.forge-io-text {
  font-size: 0.7rem; /* 20% reduction from 0.88rem */
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: left;
}

.forge-io-segment.out .forge-io-text {
  text-align: left;
}

.forge-stage-details {
  display: flex;
  flex-direction: column;
}

.forge-tabs-helper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-subtitle);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0, 229, 255, 0.04);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 229, 255, 0.1);
  width: fit-content;
}

.pulse-ring {
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent-cyan);
}

.pulse-ring::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  opacity: 0;
  animation: pulseHelperRing 2.5s infinite ease-out;
}

@keyframes pulseHelperRing {
  0% { transform: scale(0.5); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}

.forge-tabs {
  display: flex;
  gap: 0.75rem;
  border-bottom: none;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.forge-tab {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  font-family: var(--font-subtitle);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.forge-tab:hover {
  color: var(--text-white);
  border-color: rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 229, 255, 0.1);
}

.forge-tab.active {
  color: var(--text-white);
  background: linear-gradient(135deg, rgba(0, 130, 255, 0.25) 0%, rgba(0, 229, 255, 0.25) 100%);
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2), var(--shadow-cyan-glow);
  transform: translateY(-2px);
}

.forge-tab-panel {
  display: none;
  padding: 1.5rem 0 0.5rem;
  animation: fadeInTab 0.4s ease forwards;
}

.forge-tab-panel.active {
  display: block;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Lista de Subprocesos */
.forge-subs-list {
  display: grid;
  gap: 0.75rem;
}

.forge-sub-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
}

.forge-sub-item:hover {
  transform: translateX(6px);
  border-color: rgba(0, 229, 255, 0.2);
  background: rgba(0, 229, 255, 0.02);
}

.forge-sub-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-navy-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-subtitle);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 1px;
}

.forge-sub-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Rejilla de Herramientas */
.forge-tools-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .forge-tools-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.forge-tool-card {
  border-radius: 16px;
  padding: 1.2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.forge-tool-card:nth-of-type(1) {
  background: linear-gradient(180deg, rgba(18, 12, 10, 0.75) 0%, rgba(15, 10, 8, 0.7) 50%, rgba(249, 115, 22, 0.06) 78%, rgba(249, 115, 22, 0.22) 100%) !important;
  border: 1px solid rgba(251, 146, 60, 0.18) !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    inset 0 -6px 15px -8px rgba(249, 115, 22, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(245, 158, 11, 0.05) !important;
}
.forge-tool-card:nth-of-type(1):hover {
  border-color: rgba(251, 146, 60, 0.4) !important;
  box-shadow: 
    inset 0 1px 1.5px rgba(255, 255, 255, 0.12),
    inset 0 -10px 20px -6px rgba(249, 115, 22, 0.5),
    0 15px 30px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(245, 158, 11, 0.18) !important;
  transform: translateY(-4px) scale(1.02);
}
.forge-tool-card:nth-of-type(1) .forge-tool-cat {
  color: #fb923c !important;
}

.forge-tool-card:nth-of-type(2) {
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.75) 0%, rgba(8, 10, 15, 0.7) 50%, rgba(59, 130, 246, 0.06) 78%, rgba(59, 130, 246, 0.22) 100%) !important;
  border: 1px solid rgba(96, 165, 250, 0.18) !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    inset 0 -6px 15px -8px rgba(59, 130, 246, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(96, 165, 250, 0.05) !important;
}
.forge-tool-card:nth-of-type(2):hover {
  border-color: rgba(96, 165, 250, 0.4) !important;
  box-shadow: 
    inset 0 1px 1.5px rgba(255, 255, 255, 0.12),
    inset 0 -10px 20px -6px rgba(59, 130, 246, 0.5),
    0 15px 30px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(96, 165, 250, 0.18) !important;
  transform: translateY(-4px) scale(1.02);
}
.forge-tool-card:nth-of-type(2) .forge-tool-cat {
  color: #60a5fa !important;
}

.forge-tool-card:nth-of-type(3) {
  background: linear-gradient(180deg, rgba(10, 18, 12, 0.75) 0%, rgba(8, 15, 10, 0.7) 50%, rgba(34, 197, 94, 0.06) 78%, rgba(34, 197, 94, 0.22) 100%) !important;
  border: 1px solid rgba(74, 222, 128, 0.18) !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    inset 0 -6px 15px -8px rgba(34, 197, 94, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(74, 222, 128, 0.05) !important;
}
.forge-tool-card:nth-of-type(3):hover {
  border-color: rgba(74, 222, 128, 0.4) !important;
  box-shadow: 
    inset 0 1px 1.5px rgba(255, 255, 255, 0.12),
    inset 0 -10px 20px -6px rgba(34, 197, 94, 0.5),
    0 15px 30px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(74, 222, 128, 0.18) !important;
  transform: translateY(-4px) scale(1.02);
}
.forge-tool-card:nth-of-type(3) .forge-tool-cat {
  color: #4ade80 !important;
}

.forge-tool-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.forge-tool-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.forge-tool-logo {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.forge-tool-name {
  font-family: var(--font-subtitle);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
}

.forge-tool-cat {
  font-family: var(--font-subtitle);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  font-weight: 600;
}

.forge-tool-desc {
  font-size: 0.85rem;
  color: var(--text-faint);
  line-height: 1.45;
}

/* KPIs Grid */
.forge-kpis-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .forge-kpis-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.forge-kpi-card {
  border-radius: 14px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.forge-kpi-card:nth-of-type(1) {
  background: linear-gradient(180deg, rgba(18, 12, 10, 0.75) 0%, rgba(15, 10, 8, 0.7) 50%, rgba(249, 115, 22, 0.06) 78%, rgba(249, 115, 22, 0.22) 100%) !important;
  border: 1px solid rgba(251, 146, 60, 0.18) !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    inset 0 -5px 12px -7px rgba(249, 115, 22, 0.35),
    0 8px 18px rgba(0, 0, 0, 0.35);
}
.forge-kpi-card:nth-of-type(1):hover {
  border-color: rgba(251, 146, 60, 0.4) !important;
  box-shadow: 
    inset 0 1px 1.5px rgba(255, 255, 255, 0.12),
    inset 0 -8px 18px -5px rgba(249, 115, 22, 0.55),
    0 12px 25px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(245, 158, 11, 0.2) !important;
  transform: translateY(-3px) scale(1.01);
}
.forge-kpi-card:nth-of-type(1) .forge-kpi-label {
  color: #fb923c !important;
}

.forge-kpi-card:nth-of-type(2) {
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.75) 0%, rgba(8, 10, 15, 0.7) 50%, rgba(59, 130, 246, 0.06) 78%, rgba(59, 130, 246, 0.22) 100%) !important;
  border: 1px solid rgba(96, 165, 250, 0.18) !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    inset 0 -5px 12px -7px rgba(59, 130, 246, 0.35),
    0 8px 18px rgba(0, 0, 0, 0.35);
}
.forge-kpi-card:nth-of-type(2):hover {
  border-color: rgba(96, 165, 250, 0.4) !important;
  box-shadow: 
    inset 0 1px 1.5px rgba(255, 255, 255, 0.12),
    inset 0 -8px 18px -5px rgba(59, 130, 246, 0.55),
    0 12px 25px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(96, 165, 250, 0.2) !important;
  transform: translateY(-3px) scale(1.01);
}
.forge-kpi-card:nth-of-type(2) .forge-kpi-label {
  color: #60a5fa !important;
}

.forge-kpi-card:nth-of-type(3) {
  background: linear-gradient(180deg, rgba(10, 18, 12, 0.75) 0%, rgba(8, 15, 10, 0.7) 50%, rgba(34, 197, 94, 0.06) 78%, rgba(34, 197, 94, 0.22) 100%) !important;
  border: 1px solid rgba(74, 222, 128, 0.18) !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    inset 0 -5px 12px -7px rgba(34, 197, 94, 0.35),
    0 8px 18px rgba(0, 0, 0, 0.35);
}
.forge-kpi-card:nth-of-type(3):hover {
  border-color: rgba(74, 222, 128, 0.4) !important;
  box-shadow: 
    inset 0 1px 1.5px rgba(255, 255, 255, 0.12),
    inset 0 -8px 18px -5px rgba(34, 197, 94, 0.55),
    0 12px 25px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(74, 222, 128, 0.2) !important;
  transform: translateY(-3px) scale(1.01);
}
.forge-kpi-card:nth-of-type(3) .forge-kpi-label {
  color: #4ade80 !important;
}

.forge-kpi-label {
  font-family: var(--font-subtitle);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  text-align: center;
  display: block;
}

.forge-kpi-val {
  font-family: var(--font-subtitle);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.45;
  text-align: left;
}

/* BENTO FEATURE GRID */
.bento-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bento-item {
  padding: 2.2rem;
}

.bento-item-large {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.bento-item-wide {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .bento-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-item-wide {
    grid-column: span 2;
  }
}

.bento-deco-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 150px;
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-title);
  font-weight: 900;
  color: var(--accent-cyan);
  transition: transform 0.6s ease;
}

.bento-item-large:hover .bento-deco-icon {
  transform: scale(1.1) rotate(5deg);
  opacity: 0.08;
}

.bento-item h3 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 0.85rem;
}

.bento-item p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-item-wide {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.bento-art-box {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.bento-art-box svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.bento-metric-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-metric-card span {
  font-family: var(--font-subtitle);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  font-weight: 700;
}

.bento-val {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-top: 1.5rem;
  margin-bottom: 0.35rem;
}

/* SECCIÓN MODELO A ÉXITO */
.model-intro {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .model-intro {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.model-text h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.model-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}

.model-text ul {
  display: grid;
  gap: 0.95rem;
}

.model-text li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.model-text li svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.model-image-panel {
  margin-top: 1.8rem;
  border-radius: 18px;
  background: var(--glass-bg);
  border: var(--border-metal-pulido);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 0.5rem;
  box-shadow: var(--shadow-premium), 0 0 25px rgba(0, 130, 255, 0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  animation: floatingPanel 7s infinite alternate ease-in-out;
}

.model-image-panel:hover {
  border-color: hsla(185, 95%, 45%, 0.25);
  box-shadow: var(--shadow-premium), var(--shadow-cyan-glow);
}

.model-inline-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.model-premium-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.model-premium-badge {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-family: var(--font-subtitle);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: hsla(185, 95%, 45%, 0.12);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.model-premium-card h3 {
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 0.85rem;
}

.model-premium-price {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.model-premium-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.model-premium-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.model-premium-list {
  display: grid;
  gap: 0.85rem;
  border-top: 1px solid hsla(210, 100%, 92%, 0.06);
  padding-top: 1.5rem;
}

.model-premium-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-subtitle);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.model-premium-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-cyan);
  flex-shrink: 0;
}

/* METRICS SECTION: SCROLL ANIMATED NUMBER COUNTERS */
.metrics-row {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

@media (min-width: 768px) {
  .metrics-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-count-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.metric-number-display {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text-white) 30%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label-display {
  font-family: var(--font-subtitle);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* FAQ SECTION Accordion Details */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-card {
  border-radius: 16px;
  overflow: hidden;
}

.faq-card details {
  padding: 1.25rem 1.5rem;
}

.faq-card summary {
  font-family: var(--font-subtitle);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-cyan);
  transition: transform 0.25s ease;
}

.faq-card details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid hsla(210, 100%, 92%, 0.06);
  padding-top: 1rem;
}

/* CTA BOX AND CONTACT BAND */
.cta-glass-box {
  border-radius: 36px;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, hsla(225, 45%, 15%, 0.8) 0%, hsla(225, 60%, 8%, 0.95) 100%);
  border: var(--border-metal-pulido);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-premium), 0 0 45px rgba(0, 130, 255, 0.03);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glass-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan), var(--accent-blue));
}

.cta-glass-box h2 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-glass-box p {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.cta-footer-info {
  font-family: var(--font-subtitle);
  font-size: 0.88rem;
  color: var(--text-faint);
}

/* FOOTER */
footer {
  background: var(--bg-navy-deep);
  border-top: 1px solid hsla(210, 100%, 92%, 0.05);
  padding: 3.5rem 0;
}

footer .inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  footer .inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 320px;
}

.footer-logo-image {
  height: 38px;
  width: auto;
  align-self: flex-start;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 229, 255, 0.15));
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-faint);
  line-height: 1.5;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-nav-link {
  font-family: var(--font-subtitle);
  font-size: 0.88rem;
  color: var(--text-faint);
  transition: color 0.25s ease;
}

.footer-nav-link:hover {
  color: var(--text-white);
}

.social-icons-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text-faint);
  transition: fill 0.3s ease;
}

.social-icon-link:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.2);
}

.social-icon-link:hover svg {
  fill: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid hsla(210, 100%, 92%, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-copyright {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-bottom-links a {
  font-family: var(--font-subtitle);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}

.footer-bottom-links a:hover {
  color: var(--text-white);
}

/* REVEAL ON SCROLL EFFECTS */
.reveal-on-scroll {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.js-hidden {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* FORMULARIO DE DIAGNÓSTICO EN LA LANDING PAGE */
.input-group-landing {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.input-group-landing label {
  font-family: var(--font-subtitle);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.input-group-landing input,
.input-group-landing select,
.input-group-landing textarea {
  width: 100%;
  background: rgba(5, 8, 20, 0.75);
  border: var(--glass-border);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-white);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.88rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-group-landing input::placeholder,
.input-group-landing textarea::placeholder {
  color: var(--text-faint);
  opacity: 0.7;
}

.input-group-landing input:focus,
.input-group-landing select:focus,
.input-group-landing textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-cyan-glow);
  background: rgba(5, 8, 20, 0.9);
}

.input-group-landing select option {
  background: var(--bg-navy-deep);
  color: var(--text-white);
}

/* Animated Loop Video Background for LeadForgeIA Hero */
.hero-video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 8, 20, 0.65) 0%, rgba(5, 8, 20, 0.88) 100%);
  z-index: 2;
}

/* Ensure hero content and image are positioned above the video background */
.hero-content {
  position: relative;
  z-index: 5;
}

.hero-image-panel {
  position: relative;
  z-index: 5;
}

/* Value Cards - Vibrant Colored Gradients (from photo 2) */
.v-card-amber {
  background: linear-gradient(180deg, rgba(16, 12, 10, 0.85) 0%, rgba(20, 12, 8, 0.85) 50%, rgba(249, 115, 22, 0.18) 78%, rgba(245, 158, 11, 0.85) 100%) !important;
  border: 1.5px solid rgba(251, 146, 60, 0.3) !important;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.15),
    inset 0 -10px 20px -8px rgba(249, 115, 22, 0.6),
    0 20px 40px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(245, 158, 11, 0.2) !important;
}
.v-card-amber:hover {
  border-color: rgba(251, 146, 60, 0.6) !important;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -15px 25px -6px rgba(249, 115, 22, 0.85),
    0 25px 50px rgba(0, 0, 0, 0.85),
    0 0 45px rgba(245, 158, 11, 0.45) !important;
}

.v-card-blue {
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.85) 0%, rgba(10, 15, 24, 0.8) 50%, rgba(59, 130, 246, 0.18) 78%, rgba(96, 165, 250, 0.85) 100%) !important;
  border: 1.5px solid rgba(96, 165, 250, 0.3) !important;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.15),
    inset 0 -10px 20px -8px rgba(59, 130, 246, 0.6),
    0 20px 40px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(96, 165, 250, 0.2) !important;
}
.v-card-blue:hover {
  border-color: rgba(96, 165, 250, 0.6) !important;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -15px 25px -6px rgba(59, 130, 246, 0.85),
    0 25px 50px rgba(0, 0, 0, 0.85),
    0 0 45px rgba(96, 165, 250, 0.45) !important;
}

.v-card-green {
  background: linear-gradient(180deg, rgba(10, 18, 12, 0.85) 0%, rgba(10, 24, 15, 0.8) 50%, rgba(34, 197, 94, 0.18) 78%, rgba(74, 222, 128, 0.85) 100%) !important;
  border: 1.5px solid rgba(74, 222, 128, 0.3) !important;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.15),
    inset 0 -10px 20px -8px rgba(34, 197, 94, 0.6),
    0 20px 40px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(74, 222, 128, 0.2) !important;
}
.v-card-green:hover {
  border-color: rgba(74, 222, 128, 0.6) !important;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -15px 25px -6px rgba(34, 197, 94, 0.85),
    0 25px 50px rgba(0, 0, 0, 0.85),
    0 0 45px rgba(74, 222, 128, 0.45) !important;
}

.v-card-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.v-card-icon-box span {
  font-size: 22px;
}

.v-card-amber .v-card-icon-box {
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.15) 0%, rgba(15, 10, 8, 0.95) 100%);
  border: 1px solid rgba(251, 146, 60, 0.35);
  color: #fb923c;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.1),
    0 0 15px rgba(249, 115, 22, 0.15);
}

.v-card-amber:hover .v-card-icon-box {
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.35) 0%, rgba(15, 10, 8, 0.9) 100%);
  border-color: rgba(251, 146, 60, 0.6);
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(249, 115, 22, 0.4);
  color: #ffffff;
}

.v-card-blue .v-card-icon-box {
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, rgba(8, 10, 15, 0.95) 100%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #60a5fa;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.1),
    0 0 15px rgba(59, 130, 246, 0.15);
}

.v-card-blue:hover .v-card-icon-box {
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.35) 0%, rgba(8, 10, 15, 0.9) 100%);
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(59, 130, 246, 0.4);
  color: #ffffff;
}

.v-card-green .v-card-icon-box {
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.15) 0%, rgba(8, 15, 10, 0.95) 100%);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #4ade80;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.1),
    0 0 15px rgba(34, 197, 94, 0.15);
}

.v-card-green:hover .v-card-icon-box {
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.35) 0%, rgba(8, 15, 10, 0.9) 100%);
  border-color: rgba(74, 222, 128, 0.6);
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(34, 197, 94, 0.4);
  color: #ffffff;
}

/* Value Cards CTA Link Styles */
.v-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  font-family: var(--font-subtitle);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}

.v-card-amber .v-card-link {
  color: #fb923c;
}
.v-card-amber .v-card-link:hover {
  color: #f59e0b;
}

.v-card-blue .v-card-link {
  color: #60a5fa;
}
.v-card-blue .v-card-link:hover {
  color: #3b82f6;
}

.v-card-green .v-card-link {
  color: #4ade80;
}
.v-card-green .v-card-link:hover {
  color: #22c55e;
}

.v-card-link .arrow {
  transition: transform 0.3s ease;
}

.v-card-link:hover .arrow {
  transform: translateX(4px);
}

/* Value Section Grid Background Overlay */
.value-section {
  position: relative;
  overflow: hidden;
}

.value-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: center top;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
}

.value-section .container {
  position: relative;
  z-index: 2;
}

/* Animated Video Background inside Forge Container */
.forge-video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.forge-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55; /* increased opacity for better visibility */
}

.forge-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 8, 20, 0.4) 0%, rgba(5, 8, 20, 0.7) 100%); /* lighter overlay to increase brightness */
  z-index: 2;
}

/* Animated Video Background inside Model (Pricing) Section */
#modelo {
  position: relative;
  overflow: hidden;
}

.model-video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.model-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.model-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 8, 20, 0.45) 0%, rgba(5, 8, 20, 0.75) 100%);
  z-index: 2;
}

#modelo .container {
  position: relative;
  z-index: 5;
}

