/* ==========================================================================
   VirtualAgents-AI — Sistema de Diseño & Estilos Modernos
   "AI THAT WORKS" / "IA QUE TRABAJA"
   ========================================================================== */

:root {
  /* Color System */
  --bg-deep: #050B1A;
  --bg-surface: #0A142F;
  --bg-card: rgba(10, 18, 38, 0.85);
  --bg-card-hover: rgba(18, 32, 65, 0.94);
  --bg-glass: rgba(255, 255, 255, 0.04);

  /* Primary Brand Colors */
  --blue-deep: #0A1128;
  --blue-electric: #0052FF;
  --blue-electric-hover: #1E6BFF;
  --cyan-bright: #00F0FF;
  --cyan-glow: rgba(0, 240, 255, 0.4);
  --purple-accent: #7000FF;
  --purple-glow: rgba(112, 0, 255, 0.35);

  /* Gradients */
  --gradient-va-symbol: linear-gradient(135deg, #0A1128 0%, #0052FF 50%, #00F0FF 100%);
  --gradient-hero-title: linear-gradient(135deg, #FFFFFF 0%, #E0F2FE 40%, #00F0FF 80%, #0052FF 100%);
  --gradient-accent: linear-gradient(135deg, #0052FF 0%, #00F0FF 60%, #7000FF 100%);

  /* Neutral Colors */
  --text-white: #FFFFFF;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(0, 240, 255, 0.3);

  /* UI State Colors */
  --success: #10B981;
  --warning: #F59E0B;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --backdrop-blur: blur(16px);
  --max-width: 1280px;
  --nav-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: #020408;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   SELECTING / SWITCHING LANGUAGE PILL (ES | EN)
   -------------------------------------------------------------------------- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-pill);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  font-family: var(--font-main);
}

.lang-btn.active {
  color: var(--cyan-bright);
  background: rgba(0, 240, 255, 0.18);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.lang-divider {
  color: var(--text-muted);
  font-size: 0.75rem;
  user-select: none;
}

/* --------------------------------------------------------------------------
   FONDO ESPACIAL DINÁMICO CON ESTRELLAS PARPADEANTES Y PLANETA TIERRA 8K
   -------------------------------------------------------------------------- */
.space-planet-bg-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  background: #020408;
  overflow: hidden;
}

.space-planet-bg-container.active {
  opacity: 1;
}

.stars-twinkle-layer {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1.5px 1.5px at 25px 35px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 85px 145px, #00f0ff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 210px 240px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2.5px 2.5px at 340px 110px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 490px 380px, #7000ff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 640px 190px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 780px 450px, #00f0ff, rgba(0,0,0,0)),
    radial-gradient(2.5px 2.5px at 920px 290px, #ffffff, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 900px 550px;
  animation: starsTwinkleAnim 3.5s ease-in-out infinite alternate;
  opacity: 0.9;
}

@keyframes starsTwinkleAnim {
  0% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.015); }
  100% { opacity: 0.5; transform: scale(1); }
}

.space-planet-wrapper {
  position: absolute;
  bottom: -42vh;
  left: 50%;
  transform: translateX(-50%) translateY(320px) rotate(0deg);
  width: 130vw;
  max-width: 1700px;
  will-change: transform;
  transition: transform 0.1s linear, opacity 0.6s ease;
  opacity: 0;
}

.space-planet-wrapper.planet-visible {
  opacity: 1;
}

.planet-earth-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
  image-rendering: high-quality;
  filter: contrast(1.06) brightness(1.03);
  mask-image: radial-gradient(circle at 50% 50%, #000 68%, transparent 98%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 68%, transparent 98%);
}

/* --------------------------------------------------------------------------
   REVEAL ON SCROLL: ANIMACIONES DE MOVIMIENTO FUERTE & CERO SOMBRA EN TEXTOS
   -------------------------------------------------------------------------- */

.section-header.reveal-on-scroll {
  opacity: 0;
  transform: translateY(65px) scale(0.91);
  filter: blur(5px);
  box-shadow: none !important;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.section-header.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  box-shadow: none !important;
}

.worker-card.reveal-on-scroll,
.card-glass.reveal-on-scroll,
.methodology-card.reveal-on-scroll,
.values-card.reveal-on-scroll {
  opacity: 0;
  transform: translateY(70px) scale(0.93);
  filter: blur(6px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.worker-card.reveal-on-scroll.is-visible,
.card-glass.reveal-on-scroll.is-visible,
.methodology-card.reveal-on-scroll.is-visible,
.values-card.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.15);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 6rem 0;
  position: relative;
}

/* Typography & Animated Glowing Titles */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.15;
}

.gradient-text-animated {
  background: linear-gradient(135deg, #FFFFFF 0%, #00F0FF 35%, #7000FF 70%, #0052FF 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlowShift 5s ease infinite alternate;
}

@keyframes textGlowShift {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.5));
  }
  100% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 40px rgba(112, 0, 255, 0.7));
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-glow);
  color: var(--cyan-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 8px var(--cyan-bright);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem auto;
}

/* CAJA DE CRISTAL OSCURO PARA ENCABEZADOS DE SECCIÓN */
.section-header-glass {
  background: rgba(4, 9, 24, 0.82);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  backdrop-filter: blur(20px);
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 240, 255, 0.25);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.grid {
  display: grid;
  gap: 2rem;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--blue-electric);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(0, 82, 255, 0.4);
}

.btn-primary:hover {
  background: var(--blue-electric-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 82, 255, 0.6), 0 0 25px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-white);
  border: 1px solid var(--border-light);
  backdrop-filter: var(--backdrop-blur);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan-bright);
  color: var(--cyan-bright);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.btn-cyan {
  background: var(--cyan-bright);
  color: var(--blue-deep);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35);
}

.btn-cyan:hover {
  background: #38BDF8;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.6);
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

/* Glassmorphism Card System */
.card-glass, .worker-card, .methodology-card, .values-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: var(--backdrop-blur);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glass:hover, .worker-card:hover, .methodology-card:hover, .values-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-bright);
  background: var(--bg-card-hover);
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 240, 255, 0.4);
}

/* FLOATING NAVBAR INTELIGENTE */
.navbar {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  width: calc(100% - 3rem);
  max-width: var(--max-width);
  height: var(--nav-height);
  background: rgba(5, 11, 26, 0.88);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.visible {
  transform: translateX(-50%) translateY(0);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-text {
  font-family: 'Outfit', var(--font-main);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-white);
}

.brand-text .blue { color: var(--blue-electric); }
.brand-text .ai { color: var(--cyan-bright); }

.status-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

/* 21ST.DEV HERO SCROLL ANIMATION & CENTERING */
.hero-scroll-wrapper {
  position: relative;
  background: transparent;
}

.hero-scroll-section-1 {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, rgba(0, 82, 255, 0.24) 0%, transparent 75%);
  overflow: hidden;
  z-index: 1;
  transform-origin: center center;
  will-change: transform;
}

.hero-container-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 920px;
}

.hero-content-centered {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content-centered .hero-title {
  font-size: 4.2rem;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

@media (max-width: 768px) {
  .hero-content-centered .hero-title {
    font-size: 2.75rem;
  }
}

.hero-content-centered .hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0 auto 2.5rem auto;
  max-width: 720px;
  line-height: 1.65;
}

.hero-ctas-centered {
  justify-content: center;
  display: flex;
  gap: 1.25rem;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
  pointer-events: none;
}

.hero-logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.14;
  width: 700px;
  max-width: 90vw;
  filter: drop-shadow(0 0 50px rgba(0, 240, 255, 0.6));
}

.hero-logo-watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

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

/* --------------------------------------------------------------------------
   ANIMACIÓN DE ENTRADA CINEMÁTICA Y SUAVE POR CAPAS (CINEMATIC BLUR LAYER ENTRANCE)
   -------------------------------------------------------------------------- */
@keyframes heroLayerCinematicBlurUp {
  0% {
    opacity: 0;
    transform: translateY(85px) scale(0.91);
    filter: blur(28px);
  }
  60% {
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroWatermarkCinematicBlur {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.28);
    filter: blur(35px) drop-shadow(0 0 5px rgba(0, 240, 255, 0.1));
  }
  100% {
    opacity: 0.14;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0) drop-shadow(0 0 50px rgba(0, 240, 255, 0.6));
  }
}

@keyframes heroGridCinematicBlur {
  0% {
    opacity: 0;
    transform: scale(1.12);
    filter: blur(18px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

/* Capa 0: Fondo, Grid Pattern y Marca de Agua */
.hero-grid-pattern {
  opacity: 0;
  animation: heroGridCinematicBlur 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  will-change: opacity, transform, filter;
}

.hero-logo-watermark {
  opacity: 0;
  animation: heroWatermarkCinematicBlur 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  will-change: opacity, transform, filter;
}

/* Capa 1: Badge Top (Insignia) */
.hero-content-centered #heroBadge {
  opacity: 0;
  animation: heroLayerCinematicBlurUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  will-change: opacity, transform, filter;
}

/* Capa 2: Título Principal */
.hero-content-centered #heroTitle {
  opacity: 0;
  animation: heroLayerCinematicBlurUp 1.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  will-change: opacity, transform, filter;
}

/* Capa 3: Subtítulo Descriptivo */
.hero-content-centered #heroSubtitle {
  opacity: 0;
  animation: heroLayerCinematicBlurUp 1.7s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
  will-change: opacity, transform, filter;
}

/* Capa 4: Botones CTA de Acción */
.hero-content-centered .hero-ctas {
  opacity: 0;
  animation: heroLayerCinematicBlurUp 1.7s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
  will-change: opacity, transform, filter;
}

/* SECTION 2 SCROLL TRANSITION */
.hero-scroll-section-2 {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  background: linear-gradient(180deg, #0A142F 0%, rgba(2, 4, 8, 0.95) 100%);
  border-top: 1px solid var(--border-glow);
  transform-origin: center center;
  will-change: transform;
}

/* Demo Simulator Section */
.demo-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-select, .form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item strong {
  color: var(--text-white);
  display: block;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* SIMULADOR DE AVI WIDGET DE TELÉFONO */
.abi-phone-widget {
  background: #091124;
  border: 1px solid var(--border-glow);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 240, 255, 0.25);
  display: flex;
  flex-direction: column;
  height: 620px;
}

.phone-top-bar {
  background: #050B1A;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}

.abi-call-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: radial-gradient(circle at center, rgba(0, 82, 255, 0.05) 0%, transparent 70%);
  min-height: 0;
}

.call-header-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.abi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-va-symbol);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--text-white);
  font-size: 1.1rem;
  box-shadow: 0 0 15px var(--cyan-glow);
}

.abi-status-title {
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.95rem;
}

.abi-call-timer {
  font-size: 0.75rem;
  color: var(--cyan-bright);
}

.chat-transcript-area {
  flex: 1;
  overflow-y: auto !important;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-right: 0.6rem;
  min-height: 0;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}

.chat-transcript-area::-webkit-scrollbar {
  width: 6px;
}

.chat-transcript-area::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.chat-transcript-area::-webkit-scrollbar-thumb {
  background: var(--cyan-bright);
  border-radius: 10px;
  box-shadow: 0 0 10px var(--cyan-glow);
}

.chat-bubble {
  max-width: 85%;
  padding: 0.85rem 1.1rem;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.45;
  word-break: break-word;
}

.chat-bubble.abi {
  background: rgba(0, 82, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--text-primary);
  align-self: flex-start;
}

.chat-bubble.user {
  background: rgba(112, 0, 255, 0.2);
  border: 1px solid rgba(112, 0, 255, 0.4);
  color: var(--text-white);
  align-self: flex-end;
}

.chat-input-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.voice-call-trigger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--cyan-bright);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* Pricing Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.worker-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.worker-actions-list {
  list-style: none;
  margin: 1rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.worker-actions-list li {
  font-size: 0.85rem;
  color: var(--text-primary);
}

.worker-actions-list li::before {
  content: '✓ ';
  color: var(--cyan-bright);
  font-weight: bold;
}

/* Comparison Table */
.matrix-table-container {
  overflow-x: auto;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.matrix-table th, .matrix-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.matrix-table th {
  background: rgba(10, 20, 47, 0.9);
  color: var(--text-white);
  font-weight: 700;
}

.matrix-table td {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Methodology Grid */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.methodology-card {
  border-radius: var(--radius-md);
}

.methodology-step {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'Outfit', var(--font-main);
  color: rgba(0, 240, 255, 0.25);
  margin-bottom: 0.5rem;
}

.methodology-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.methodology-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.values-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cyan-bright);
  margin-bottom: 0.5rem;
}

.values-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: #020408;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--cyan-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Modal System */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #091124;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  padding: 2.25rem;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.wizard-steps-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.wizard-steps-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}

.wizard-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.wizard-step-dot.active {
  background: var(--blue-electric);
  border-color: var(--cyan-bright);
  color: var(--text-white);
}

.wizard-step-content {
  display: none;
}

.wizard-step-content.active {
  display: block;
}

/* --------------------------------------------------------------------------
   INDUSTRY USE CASES CAROUSEL STYLES
   -------------------------------------------------------------------------- */
.usecase-carousel-section {
  position: relative;
}

.usecase-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.usecase-tab-btn {
  background: rgba(5, 12, 30, 0.85);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.6rem;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.usecase-tab-btn:hover {
  border-color: var(--cyan-bright);
  color: var(--text-white);
  transform: translateY(-2px);
}

.usecase-tab-btn.active {
  background: rgba(0, 240, 255, 0.18);
  border-color: var(--cyan-bright);
  color: var(--cyan-bright);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
}

.usecase-carousel-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(0, 240, 255, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 240, 255, 0.25);
  background: #050B1A;
}

.usecase-slides-track {
  position: relative;
  width: 100%;
  min-height: 480px;
}

.usecase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.usecase-slide.active {
  position: relative;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.usecase-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.usecase-slide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Hotspot overlay on bottom right "Want to see how it works? Schedule a demo with our agent Avi." */
.usecase-hotspot-link {
  position: absolute;
  bottom: 3.5%;
  right: 2%;
  width: 38%;
  height: 15%;
  border-radius: 20px;
  cursor: pointer;
  z-index: 10;
  text-decoration: none;
}

@media (max-width: 768px) {
  .usecase-hotspot-link {
    width: 90%;
    right: 5%;
    bottom: 2%;
    height: 18%;
  }
}

.usecase-hotspot-glow {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: all 0.35s ease;
}

.usecase-hotspot-link:hover .usecase-hotspot-glow {
  border-color: var(--cyan-bright);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.2);
  background: rgba(0, 240, 255, 0.08);
}

.usecase-hotspot-label {
  position: absolute;
  top: -1.2rem;
  right: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(0, 82, 255, 0.9);
  border: 1px solid var(--cyan-bright);
  border-radius: var(--radius-pill);
  color: var(--cyan-bright);
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

.usecase-hotspot-link:hover .usecase-hotspot-label {
  opacity: 1;
  transform: translateY(0);
}

/* Nav Buttons (Prev/Next) */
.usecase-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(5, 12, 30, 0.85);
  border: 1.5px solid var(--border-glow);
  color: var(--text-white);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.usecase-nav-btn.prev-btn { left: 1.5rem; }
.usecase-nav-btn.next-btn { right: 1.5rem; }

.usecase-nav-btn:hover {
  background: var(--blue-electric);
  border-color: var(--cyan-bright);
  color: var(--cyan-bright);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

/* Dots Bar */
.usecase-dots-bar {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 15;
  background: rgba(5, 12, 30, 0.75);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.usecase-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.usecase-dot.active {
  background: var(--cyan-bright);
  box-shadow: 0 0 10px var(--cyan-bright);
  transform: scale(1.3);
}

/* --------------------------------------------------------------------------
   INTERACTIVE BANNER WITH HOTSPOTS & NEON GLOW (IMAGE 2 ARTWORK)
   -------------------------------------------------------------------------- */
.starter-banner-interactive-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(0, 240, 255, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 240, 255, 0.25);
  background: #050B1A;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.starter-banner-interactive-container:hover {
  border-color: var(--cyan-bright);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 65px rgba(0, 240, 255, 0.45);
}

.starter-banner-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

.starter-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.starter-banner-bg-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.15) 0%, rgba(0, 82, 255, 0.1) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* HOTSPOTS OVERLAYS */
.banner-hotspot {
  position: absolute;
  cursor: pointer;
  z-index: 5;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

/* Left Card Hotspot (Starter $599 Card Area) */
.hotspot-left-card {
  top: 4%;
  left: 2%;
  width: 42%;
  height: 90%;
  border-radius: 35px;
}

/* Right CTA Card Hotspot (Avi Schedule Card Area) */
.hotspot-right-cta {
  bottom: 8%;
  right: 2.5%;
  width: 28%;
  height: 38%;
  border-radius: 24px;
  text-decoration: none;
}

.hotspot-glow-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: all 0.35s ease;
  pointer-events: none;
}

.banner-hotspot:hover .hotspot-glow-border {
  border-color: var(--cyan-bright);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.2);
  background: rgba(0, 240, 255, 0.06);
}

.hotspot-badge-hint {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 82, 255, 0.85);
  border: 1px solid var(--cyan-bright);
  border-radius: var(--radius-pill);
  color: var(--cyan-bright);
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

.banner-hotspot:hover .hotspot-badge-hint {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   INTERACTIVE LAYERED STARTER PLAN SHOWCASE (IMAGE 3 REPLACEMENT)
   -------------------------------------------------------------------------- */
.starter-showcase-container {
  background: linear-gradient(135deg, rgba(6, 15, 38, 0.95) 0%, rgba(10, 20, 50, 0.98) 50%, rgba(5, 11, 26, 0.95) 100%);
  border: 1.5px solid rgba(0, 240, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 240, 255, 0.25);
  backdrop-filter: blur(20px);
}

.starter-bg-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 30% 40%, rgba(0, 240, 255, 0.15) 0%, rgba(0, 82, 255, 0.12) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.starter-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .starter-showcase-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* LEFT GLASS CARD */
.starter-card-glass {
  background: rgba(5, 12, 30, 0.88);
  border: 1.5px solid rgba(0, 240, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.starter-card-glass:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--cyan-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 240, 255, 0.45);
}

.starter-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.12);
  border: 1.5px solid var(--success);
  color: var(--success);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.starter-price-display {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}

.starter-price-display .currency {
  font-size: 2.2rem;
  color: var(--text-primary);
  vertical-align: super;
}

.starter-price-display .period {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.starter-min-pill {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--cyan-bright);
  border-radius: var(--radius-pill);
  color: var(--cyan-bright);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
}

.starter-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.starter-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.6rem;
}

.starter-features-list li:last-child {
  border-bottom: none;
}

.feat-icon {
  font-size: 1.1rem;
}

/* CENTER ROBOT MASCOT */
.starter-robot-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.robot-avatar-wrapper {
  width: 260px;
  height: 310px;
  position: relative;
  z-index: 2;
  animation: robotFloat 4s ease-in-out infinite alternate;
}

@keyframes robotFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-16px); }
}

.robot-glow-aura {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.35) 0%, rgba(0, 82, 255, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(20px);
}

.spin-ring {
  transform-origin: 140px 170px;
  animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
  100% { transform: rotate(360deg); }
}

.glowing-eye {
  animation: eyePulse 2.5s ease-in-out infinite alternate;
}

@keyframes eyePulse {
  0% { fill: #00F0FF; filter: drop-shadow(0 0 2px #00F0FF); }
  100% { fill: #FFFFFF; filter: drop-shadow(0 0 10px #00F0FF); }
}

.pointing-hand-glow {
  animation: handPulse 2s ease-in-out infinite alternate;
}

@keyframes handPulse {
  0% { fill: #00F0FF; filter: drop-shadow(0 0 4px #00F0FF); }
  100% { fill: #FFFFFF; filter: drop-shadow(0 0 14px #00F0FF); }
}

/* RIGHT COLUMN */
.starter-right-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.starter-va-brandbox {
  text-align: left;
}

.va-big-symbol-logo {
  font-family: 'Outfit', var(--font-main);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #0052FF 0%, #00F0FF 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.55));
}

.va-brand-tagline {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
}

.starter-quote-card {
  background: rgba(10, 20, 45, 0.88);
  border: 1.5px solid rgba(0, 82, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 82, 255, 0.15);
  transition: all 0.3s ease;
}

.starter-quote-card:hover {
  border-color: var(--cyan-bright);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 240, 255, 0.3);
}

.quote-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.quote-calendar-icon {
  font-size: 1.6rem;
}

.quote-card-text {
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.45;
  font-weight: 500;
}
