@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800;900&display=swap');

:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-yellow: #f8e71c; /* Neon Gold Yellow moderno y premium de zyberia-os-landing */
  --color-gray-light: #f5f5f5;
  --color-gray-dark: #111111;
  --font-primary: 'Space Grotesk', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

section, .section {
  padding: 120px 0;
  position: relative;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
}

.section.alt-bg {
  background: #F5F5F5;
}

/* Typography (Idéntica a zyberia-os-landing) */
h1 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--color-black);
}

h2, .section-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  text-transform: uppercase;
  color: var(--color-black);
}

h3 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-black);
}

p, .section-desc {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
  color: #333333;
}

.section-desc.centered {
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
}

.text-yellow, .text-gold {
  color: var(--color-yellow);
  text-shadow: 0 0 10px rgba(248, 231, 28, 0.5);
  display: inline;
}

.text-white { color: var(--color-white) !important; }
.text-center { text-align: center; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-zyberia {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: #CCCCCC;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--color-yellow);
}

.nav-cta {
  background-color: var(--color-yellow) !important;
  color: var(--color-black) !important;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 1px !important;
  border: 2px solid var(--color-yellow) !important;
}

.nav-cta:hover {
  box-shadow: 0 0 25px rgba(248, 231, 28, 0.8) !important;
  transform: translateY(-2px);
  background-color: var(--color-white) !important;
  border-color: var(--color-yellow) !important;
}

.nav-toggle { display: none; }

/* Buttons / CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background-color: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 100px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary, .btn-gold, .btn-yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
}

.btn-primary:hover, .btn-gold:hover, .btn-yellow:hover {
  box-shadow: 0 0 30px rgba(248, 231, 28, 0.8);
  transform: translateY(-2px);
  background-color: var(--color-white);
  border-color: var(--color-yellow);
  color: var(--color-black);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn-secondary:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-block { width: 100%; justify-content: center; }

/* 1. Hero White Section */
.hero-white {
  position: relative;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--color-white);
  overflow: hidden;
}
/* .hero-section needs overflow:visible for position:sticky to work */
.hero-section {
  position: relative;
  background: var(--color-white);
  overflow: visible !important; /* CRITICAL: sticky breaks with overflow:hidden */
}

#particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.interactive-text {
  transition: text-shadow 0.15s ease-out, transform 0.15s ease-out;
  cursor: default;
}

.hero-white-content, .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-white-content h1, .hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--color-black);
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-black);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  background: var(--color-white);
}

.hero-statement-box {
  max-width: 900px;
  margin: 0 auto 40px auto;
  border-left: 5px solid var(--color-yellow);
  padding-left: 28px;
  text-align: left;
}

.hero-statement-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
  text-transform: none;
}

.hero-statement-box p {
  font-size: 1.25rem;
  color: #555555;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888888;
  font-weight: 600;
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 2px solid #888888;
  border-radius: 10px;
  position: relative;
}

.mouse-icon::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 2px;
  animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
  0% { transform: translate(-50%, 0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

/* 2. Sección Título Previo al Video */
.video-intro-section {
  padding: 100px 0;
  background: #F5F5F5;
}

.video-intro-section .section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 16px;
}

/* 3. Video Scroll Scrubbing Section */
.v-scroll-container {
    height: 350vh; 
    position: relative;
    background: #000000;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: -2px !important;
    display: block;
}

.v-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000000;
}

video.v-scrub {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 5;
}

.video-caption-bar.fullscreen-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 32px;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: var(--color-white);
}

.v-badge {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.video-caption-bar p {
  font-size: 0.95rem;
  color: #DDDDDD;
  font-weight: 600;
  margin: 0;
}

/* Problem Human Section */
.problem-header-badge {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #E11D48;
  background: #FFE4E6;
  padding: 8px 20px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}

.notifications-chaos-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-white);
  border: 2px solid #E5E5E5;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-subtle);
}

.notifications-chaos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.notif-card {
  background: #F9F9F9;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  position: relative;
  transition: var(--transition-smooth);
}

.notif-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-yellow);
  box-shadow: 0 10px 25px rgba(248, 231, 28, 0.2);
  background: var(--color-white);
}

.notif-icon {
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E5E5;
  flex-shrink: 0;
}

.notif-body { flex: 1; }
.notif-body strong { display: block; font-family: var(--font-primary); font-size: 0.95rem; color: var(--color-black); margin-bottom: 2px; }
.notif-body span { font-size: 0.8rem; color: #666666; }

.notif-badge { position: absolute; top: -8px; right: 14px; font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 10px; }
.badge-green { background: #DCFCE7; color: #15803D; }
.badge-amber { background: #FEF3C7; color: #B45309; }
.badge-red { background: #FEE2E2; color: #B91C1C; }
.badge-purple { background: #F3E8FF; color: #6B21A8; }
.badge-pink { background: #FCE7F3; color: #BE185D; }
.badge-blue { background: #DBEAFE; color: #1E40AF; }
.badge-gray { background: #F4F4F5; color: #52525B; }
.badge-gold { background: var(--color-yellow); color: var(--color-black); }

.human-conclusion-banner {
  background: var(--color-gray-dark);
  color: var(--color-white);
  padding: 32px 40px;
  border-radius: 18px;
  border-left: 6px solid var(--color-yellow);
  text-align: center;
}

.human-conclusion-banner .sub-text { font-size: 1.25rem; color: #CCCCCC; margin-bottom: 6px; }
.human-conclusion-banner .main-statement { font-family: var(--font-primary); font-size: 2rem; font-weight: 700; color: var(--color-yellow); letter-spacing: -0.5px; margin: 0; text-transform: uppercase; }

/* Questions Section Cards */
.questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.q-card {
  background: var(--color-white);
  border: 1px solid #E5E5E5;
  border-left: 5px solid var(--color-yellow);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.q-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.q-badge {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #777777;
  margin-bottom: 14px;
}

.q-card h3 { font-size: 1.4rem; margin-bottom: 14px; text-transform: none; }
.q-card p { color: #555555; font-size: 1rem; margin: 0; }

/* Demos Grid */
.demos-grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.demo-card-v2 {
  background: var(--color-white);
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.demo-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.v2-media {
  height: 200px;
  background: var(--color-gray-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.play-btn-v2 {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(248, 231, 28, 0.6);
}

.v2-tag {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(248, 231, 28, 0.2);
  color: var(--color-yellow);
  padding: 4px 10px;
  border-radius: 6px;
}

.v2-info { padding: 28px; }
.v2-info h3 { font-size: 1.25rem; margin-bottom: 10px; text-transform: none; }
.v2-info p { font-size: 0.95rem; color: #555555; margin: 0; }

/* Laptop Showcase */
.dashboard-laptop-mockup {
  max-width: 1000px;
  margin: 48px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 3px solid var(--color-yellow);
}

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

/* Digital Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  background: var(--color-white);
  border: 1px solid #E5E5E5;
  border-top: 5px solid var(--color-yellow);
  padding: 28px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px auto;
  border: 3px solid var(--color-yellow);
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-role {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #777777;
  display: block;
  margin-bottom: 8px;
}

.team-card h3 { font-size: 1.25rem; margin-bottom: 8px; text-transform: none; }
.team-card p { color: #555555; font-size: 0.85rem; margin: 0; }

/* Slack Chat Feed Box (Layout 2 Columnas) */
.chat-feed-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.chat-feed-content {
  text-align: left;
}

.chat-feed-content .section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 20px;
}

.chat-feed-content .section-desc {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 32px;
}

.chat-feed-highlights {
  display: flex;
  gap: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
}

.feed-stat-item {
  display: flex;
  flex-direction: column;
}

.feed-stat-item .stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.feed-stat-item .stat-lbl {
  font-size: 0.78rem;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  font-family: var(--font-primary);
  font-weight: 700;
}

.slack-feed-box {
  background: var(--color-gray-dark);
  color: var(--color-white);
  border: 1px solid #222222;
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  height: 380px;
  max-height: 380px;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.slack-header {
  background: #1A1A1A;
  padding: 16px 24px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #AAAAAA;
  display: flex;
  align-items: center;
  gap: 12px;
  shrink: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
}

.slack-messages {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  flex: 1;
  scroll-behavior: smooth;
}

/* Custom Scrollbar para el Slack Feed */
.slack-messages::-webkit-scrollbar {
  width: 6px;
}

.slack-messages::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.slack-messages::-webkit-scrollbar-thumb {
  background: rgba(248, 231, 28, 0.3);
  border-radius: 4px;
}

.slack-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(248, 231, 28, 0.6);
}

.slack-msg {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  background: #1F1F1F;
  border-radius: 12px;
  border-left: 4px solid var(--color-yellow);
}

.slack-msg.success {
  border-left-color: #10B981;
}

.slack-msg .time {
  font-size: 0.85rem;
  color: #888888;
  font-weight: 700;
}

.author {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.author-valentina { background: rgba(16, 185, 129, 0.2); color: #34D399; }
.author-enzo { background: rgba(168, 85, 247, 0.2); color: #C084FC; }
.author-lucas { background: rgba(59, 130, 246, 0.2); color: #60A5FA; }
.author-mateo { background: rgba(236, 72, 153, 0.2); color: #F472B6; }
.author-system { background: rgba(248, 231, 28, 0.2); color: var(--color-yellow); }

.slack-msg .text { font-size: 0.95rem; color: #EEEEEE; flex: 1; margin: 0; }

/* Industry Pills Bar */
.industry-pills-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1050px;
  margin: 0 auto 36px auto;
}

.ind-pill {
  background: var(--color-white);
  border: 1px solid #E5E5E5;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: #555555;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.ind-pill.active, .ind-pill:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
  box-shadow: 0 0 20px rgba(248, 231, 28, 0.5);
}

/* Use Cases Showcase */
.use-cases-grid-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.uc-box {
  background: var(--color-white);
  border: 1px solid #E5E5E5;
  padding: 28px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.uc-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.uc-emoji { font-size: 2.4rem; margin-bottom: 10px; }
.uc-box h3 { font-size: 1.15rem; margin-bottom: 8px; text-transform: none; }
.uc-box p { font-size: 0.85rem; color: #666666; margin: 0; }

/* Evolution Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.plan-card {
  background: var(--color-white);
  border: 1px solid #E5E5E5;
  border-top: 5px solid var(--color-yellow);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.plan-header {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #777777;
  margin-bottom: 10px;
}

.plan-card h3 { font-size: 1.5rem; margin-bottom: 14px; text-transform: none; }
.plan-card p { color: #555555; font-size: 1rem; margin: 0; }

/* Split Layouts & Service Showcases */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-showcase-section {
  padding: 100px 0;
}

.service-badge {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-black);
  background: var(--color-yellow);
  padding: 6px 18px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  margin: 28px 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.features-list li {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-black);
}

.quote-card-box {
  background: var(--color-white);
  border-left: 5px solid var(--color-yellow);
  padding: 24px 32px;
  border-radius: 16px;
  margin: 28px 0 36px 0;
  box-shadow: var(--shadow-subtle);
  border-top: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.quote-text {
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-black);
  margin: 0;
}

.speed-metric-card {
  background: var(--color-gray-dark);
  color: var(--color-white);
  padding: 28px 40px;
  border-radius: 20px;
  text-align: center;
  margin: 28px 0 36px 0;
  border: 2px solid var(--color-yellow);
  box-shadow: var(--shadow-strong);
}

.speed-counter {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.speed-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #CCCCCC;
}

.showcase-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  border: 2px solid rgba(0,0,0,0.08);
  display: block;
}

/* Footer Section */
.footer-section {
  background: var(--color-gray-dark);
  color: var(--color-white);
  padding: 90px 0 40px 0;
}

.footer-section .section-title {
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-eslogan { font-size: 1.2rem; color: var(--color-yellow); font-weight: 700; margin-bottom: 10px; }
.footer-subtext { color: #AAAAAA; font-size: 1rem; margin-bottom: 18px; }
.footer-address { color: #888888; font-size: 0.9rem; }

.manifesto-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #1A1A1A;
  padding: 36px;
  border-radius: 20px;
  border: 1px solid #282828;
}

.manifesto-form input,
.manifesto-form select {
  background: #111111;
  border: 1px solid #333333;
  padding: 16px 20px;
  border-radius: 12px;
  color: var(--color-white);
  font-size: 1rem;
  outline: none;
  font-family: var(--font-primary);
}

.manifesto-form input:focus,
.manifesto-form select:focus { border-color: var(--color-yellow); }

/* ─── SISTEMA UNIFICADO DE 2 COLUMNAS ALTERNADAS ─── */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.grid-2col.text-left-media-right {
  grid-template-areas: "col-text col-media";
}

.grid-2col.media-left-text-right {
  grid-template-areas: "col-media col-text";
}

.col-text {
  grid-area: col-text;
  text-align: left;
}

.col-media {
  grid-area: col-media;
  width: 100%;
}

.footer-bottom {
  text-align: center;
  color: #777777;
  font-size: 0.9rem;
  border-top: 1px solid #222222;
  padding-top: 28px;
}

/* ─── HERO DARK MODERNO & REFINADO ─── */
.hero-dark {
  background: radial-gradient(circle at 50% 30%, #161618 0%, #08080a 70%, #000000 100%) !important;
  color: var(--color-white) !important;
  position: relative;
  overflow: hidden;
  /* padding handled by .hero-section sticky container */
}

.hero-dark h1 {
  color: var(--color-white) !important;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-dark p {
  color: #cccccc !important;
}

/* ─── HERO SCROLLTELLING STAGE INTERACTIVO DE 8 ESCENAS ─── */
.hero-scrolltelling-stage {
  background: rgba(14, 14, 18, 0.9);
  border: 1px solid rgba(248, 231, 28, 0.3);
  border-radius: 28px;
  padding: 24px;
  max-width: 620px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 40px rgba(248, 231, 28, 0.12);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.stage-progress-bar {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  height: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #f59e0b 0%, #f8e71c 100%);
  border-radius: 50px;
  transition: width 0.4s ease-out;
  box-shadow: 0 0 15px rgba(248, 231, 28, 0.5);
}

.stage-step-label {
  position: relative;
  z-index: 2;
  font-family: monospace;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 1.5px;
}

.stage-scene-wrapper {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scene-layer.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* Escena 01 & 02: Mobile Frame & Scanning Laser */
.mobile-frame-mockup {
  width: 220px;
  height: 280px;
  background: #000000;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.captured-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-camera-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  items-center;
  justify-content: space-between;
  padding: 16px;
}

.camera-target-box {
  width: 140px;
  height: 140px;
  border: 2px dashed rgba(248, 231, 28, 0.8);
  border-radius: 16px;
  margin: auto;
  box-shadow: 0 0 20px rgba(248, 231, 28, 0.3);
}

.scan-laser-line {
  position: absolute;
  top: 20%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #06b6d4;
  box-shadow: 0 0 12px #06b6d4;
  animation: laserScan 2s infinite ease-in-out;
}

@keyframes laserScan {
  0% { top: 20%; opacity: 0.2; }
  50% { top: 80%; opacity: 1; }
  100% { top: 20%; opacity: 0.2; }
}

.cam-badge {
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.75);
  color: var(--color-yellow);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(248, 231, 28, 0.3);
  text-align: center;
}

.scan-result-tag {
  margin-top: 14px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scan-result-tag .check-icon {
  font-weight: 900;
  color: #10b981;
  font-size: 1.1rem;
}

.scan-result-tag strong {
  display: block;
  font-size: 0.75rem;
  color: #10b981;
  letter-spacing: 1px;
}

.scan-result-tag span {
  font-size: 0.8rem;
  color: var(--color-white);
  font-weight: 600;
}

/* Escena 04: Smart Card Hero */
.smart-card-hero {
  background: rgba(20, 20, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card-hero-head {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.tag-sku {
  font-family: monospace;
  font-size: 0.7rem;
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.card-hero-head h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-white);
  margin: 6px 0 2px 0;
}

.tag-brand {
  font-size: 0.78rem;
  color: #888888;
}

.card-hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #aaaaaa;
}

.metric-box.highlight {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.08);
}

.connected-modules-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px dashed rgba(255,255,255,0.1);
  padding-top: 12px;
}

.module-chip {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #888888;
  padding: 4px 10px;
  border-radius: 6px;
}

.module-chip.active {
  border-color: rgba(248, 231, 28, 0.4);
  color: var(--color-yellow);
  background: rgba(248, 231, 28, 0.08);
}

.status-indicator-group {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 600;
}

.ind-dot.emerald { color: #10b981; }
.ind-dot.purple { color: #c084fc; }
.ind-dot.cyan { color: #06b6d4; }

.btn-informe-pill {
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-informe-pill:hover {
  background: rgba(168, 85, 247, 0.35);
  color: #ffffff;
  transform: scale(1.03);
}

/* Escena 06: Opp Card Alert */
.hero-opp-card-alert {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  text-align: left;
}

.opp-alert-badge {
  font-size: 0.72rem;
  font-weight: 900;
  color: #f59e0b;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.hero-opp-card-alert h4 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
}

.opp-delta-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.delta-item .lbl {
  font-size: 0.68rem;
  color: #888888;
  display: block;
  text-transform: uppercase;
}

.delta-item .val {
  font-size: 1.1rem;
  font-weight: 900;
  font-family: monospace;
  color: var(--color-white);
}

.delta-arrow {
  color: #f59e0b;
  font-size: 1.1rem;
}

.opp-savings-pill {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 14px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-white);
  margin-bottom: 10px;
}

.opp-rec-sub {
  font-size: 0.78rem;
  color: #aaaaaa !important;
  font-style: italic;
  margin: 0 !important;
}

/* Escena 07: Generated Flyer */
.generated-flyer-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flyer-generation-badge {
  font-size: 0.7rem;
  font-weight: 900;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.flyer-card-preview {
  width: 240px;
  height: 240px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(248, 231, 28, 0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

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

.ready-to-sell-tags {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.sell-tag {
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 800;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 8px;
  border-radius: 6px;
}

/* Dots Nav */
.stage-dots-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.stage-dots-nav .dot {
  width: 8 h-2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.stage-dots-nav .dot.active {
  background: var(--color-yellow);
  width: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(248, 231, 28, 0.5);
}

.mockup-price {
  font-family: monospace;
  font-weight: 900;
  color: #10b981;
}

.hero-mockup-opp {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 14px 20px;
  border-radius: 16px;
}

.opp-dot { font-size: 1.2rem; }

.opp-txt strong {
  display: block;
  font-size: 0.75rem;
  color: #f59e0b;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.opp-txt p {
  font-size: 0.85rem;
  color: var(--color-white) !important;
  margin: 2px 0 0 0 !important;
}

.btn-opp-pill {
  background: #f59e0b;
  color: #000000;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  margin-left: auto;
}

.btn-opp-pill:hover {
  background: #fbbf24;
  transform: scale(1.03);
}

.hero-vision-tag {
  display: inline-block;
  margin-bottom: 20px;
  background: rgba(248, 231, 28, 0.1);
  border: 1px solid rgba(248, 231, 28, 0.3);
  color: var(--color-yellow);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  text-shadow: 0 0 12px rgba(248, 231, 28, 0.4);
}

.section-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 16px;
}

.conceptual-quote-box {
  background: #111111;
  border: 1px solid #222222;
  border-radius: 24px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto 50px auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.conceptual-main-text {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.conceptual-sub-text {
  font-size: 1.1rem;
  color: #AAAAAA;
  margin-bottom: 0;
}

/* Flujo de Transformación: PRODUCTO -> DATOS -> INTELIGENCIA -> OPORTUNIDAD -> ACCIÓN -> VENTA */
.transformation-flow-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}

.flow-step-card {
  background: #111111;
  border: 1px solid #282828;
  border-radius: 16px;
  padding: 20px 18px;
  min-width: 155px;
  text-align: center;
  transition: var(--transition-smooth);
}

.flow-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-yellow);
}

.flow-step-num {
  font-size: 0.75rem;
  font-weight: 900;
  color: #666666;
  display: block;
  margin-bottom: 6px;
  font-family: monospace;
}

.flow-step-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.flow-step-card p {
  font-size: 0.8rem;
  color: #888888;
  margin-bottom: 0;
  line-height: 1.2;
}

.flow-arrow {
  color: var(--color-yellow);
  font-size: 1.2rem;
  font-weight: 900;
}

.flow-step-card.highlight-cyan { border-color: rgba(6, 182, 212, 0.4); background: #11181a; }
.flow-step-card.highlight-gold { border-color: rgba(248, 231, 28, 0.5); background: #1a1811; }
.flow-step-card.highlight-purple { border-color: rgba(168, 85, 247, 0.5); background: #18111a; }
.flow-step-card.highlight-green { border-color: rgba(16, 185, 129, 0.4); background: #111a15; }

.product-flow-visual-box {
  background: #0d0d0f;
  border: 1px solid rgba(248, 231, 28, 0.25);
  border-radius: 24px;
  padding: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  margin-bottom: 24px;
}

.flow-diagram-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

/* Demostración Ficha Inteligente */
.smart-ficha-container {
  max-width: 950px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.smart-ficha-card {
  background: #111111;
  border: 1px solid #2A2A2A;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

.smart-ficha-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #222222;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.sku-badge {
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.smart-ficha-title h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-white);
  margin: 6px 0 2px 0;
}

.supplier-tag {
  font-size: 0.85rem;
  color: #888888;
}

.ai-action-btn {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.smart-ficha-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  margin-bottom: 24px;
}

.smart-data-box {
  background: #161616;
  border: 1px solid #222222;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #999999;
}

.data-row strong { color: var(--color-white); }
.text-green { color: #10b981 !important; }
.text-cyan { color: #06b6d4 !important; }

.smart-opportunity-highlight-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(217, 119, 6, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.opp-badge {
  font-size: 0.75rem;
  font-weight: 900;
  color: #f59e0b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.opp-statement {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 10px 0 6px 0;
  line-height: 1.3;
}

.opp-substatement {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.4;
  margin-bottom: 16px;
}

.btn-opp-cta {
  background: #f59e0b;
  color: #000000;
  font-weight: 800;
  font-size: 0.85rem;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-opp-cta:hover {
  background: #fbbf24;
  transform: scale(1.02);
}

.smart-ficha-footer {
  border-top: 1px solid #222222;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #777777;
  font-family: monospace;
}

/* Radar de Margen */
.radar-formula-bar {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  background: #111111;
  border: 1px solid #282828;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-yellow);
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.radar-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 50px auto;
  text-align: left;
}

.radar-opportunity-card {
  background: #111111;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #2A2A2A;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.radar-opportunity-card.border-yellow { border-color: rgba(245, 158, 11, 0.4); }
.radar-opportunity-card.border-green { border-color: rgba(16, 185, 129, 0.4); }

.radar-card-badge {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.radar-card-badge.yellow { color: #f59e0b; }
.radar-card-badge.green { color: #10b981; }

.radar-opportunity-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}

.radar-main-text {
  font-size: 1rem;
  color: #dddddd;
  font-weight: 500;
  margin-bottom: 20px;
}

.radar-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  background: #181818;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  text-align: center;
}

.radar-metrics .lbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  display: block;
}

.radar-metrics .val {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-white);
  font-family: monospace;
}

.radar-rec {
  font-size: 0.85rem;
  color: #aaaaaa;
  border-top: 1px solid #222222;
  padding-top: 12px;
}

.pilar-decisiones-banner {
  background: linear-gradient(90deg, #111111 0%, #1a1a1a 50%, #111111 100%);
  border: 1px solid #333333;
  border-radius: 20px;
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.pilar-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 6px;
}

.pilar-desc {
  font-size: 1rem;
  font-weight: 700;
  color: #888888;
  letter-spacing: 2px;
  margin-bottom: 0;
  font-family: monospace;
}

/* Futuro Inteligente */
.future-vision-section {
  background: radial-gradient(circle at center, rgba(30,30,30,1) 0%, rgba(10,10,10,1) 100%);
  color: var(--color-white);
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
}

.future-subtitle {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--color-yellow);
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.future-statement-box {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.future-statement-box p {
  font-size: 1.3rem;
  color: #dddddd;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}

.future-bridge {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title { font-size: 2.5rem; }
  .grid-2col,
  .grid-2col.text-left-media-right,
  .grid-2col.media-left-text-right {
    grid-template-columns: 1fr !important;
    grid-template-areas: "col-text" "col-media" !important;
    gap: 36px !important;
  }
  .notifications-chaos-grid, .questions-grid, .demos-grid-5, .team-grid, .use-cases-grid-showcase, .plans-grid, .split-grid, .smart-ficha-grid, .radar-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; background: none; border: none; color: white; font-size: 1.5rem; }
  .v-scroll-container { height: auto; }
  .v-sticky-wrapper { position: relative; top: 0; }
  .transformation-flow-grid { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); margin: 4px 0; }
}

/* --- UI BUGS FIXES --- */
/* 1. Prevent Horizontal Scroll (removed from body, handled gracefully by widths) */
html, body {
    width: 100%;
}

/* 2. Hero Scrolltelling Sticky Fix */
.hero-section {
    height: 400vh; /* Permite el scrolltelling */
    position: relative;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: block !important; /* Override flex from .hero-dark to allow sticky */
    overflow: visible !important; /* CRITICAL: sticky breaks with overflow:hidden */
    min-height: auto !important;
}

.hero-section > .container {
    position: sticky !important;
    top: 0;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px !important; /* navbar height compensation */
    padding-bottom: 20px !important;
    box-sizing: border-box;
}

.hero-section .grid-2col {
    align-items: center;
    height: 100%;
    max-height: calc(100dvh - 100px);
    overflow: hidden;
}

.hero-scrolltelling-stage {
    position: relative;
    top: auto;
    transform: none;
}

@media (max-width: 992px) {
    /* On mobile, shrink text/padding to fit both text and phone */
    .hero-section .interactive-text {
        font-size: 2rem !important;
        margin-top: 60px;
    }
    .hero-section .section-desc {
        font-size: 0.9rem !important;
    }
    .hero-scrolltelling-stage {
        transform: scale(0.85);
        transform-origin: top center;
    }
}

/* Short-screen fix: laptop with taskbar (~641px viewport height) */
@media (max-height: 720px) {
    .hero-section > .container {
        padding-top: 70px !important;
        padding-bottom: 10px !important;
    }
    .hero-dark h1,
    .hero-section .interactive-text {
        font-size: clamp(1.6rem, 2.8vw, 2.4rem) !important;
        margin-bottom: 10px;
    }
    .hero-section .section-desc {
        font-size: 0.85rem !important;
        margin-bottom: 12px;
    }
    .hero-section .hero-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        margin-bottom: 12px;
    }
    .hero-actions {
        gap: 10px !important;
    }
    .hero-actions .btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    .hero-scrolltelling-stage {
        padding: 14px !important;
    }
    .stage-progress-bar {
        height: 22px;
        margin-bottom: 10px;
    }
    .stage-scene-wrapper {
        min-height: 230px !important;
    }
    .mobile-frame-mockup {
        width: 160px !important;
        height: 210px !important;
    }
    .stage-dots-nav {
        margin-top: 10px !important;
    }
}

/* ============================================================
   MOBILE FIX: Hero estático sin scrolltelling
   A pedido del usuario, desactivamos las escenas en móvil para
   que quede una sola imagen visible y centrada.
   ============================================================ */
@media (max-width: 768px) {
    .hero-section {
        height: auto !important;
        min-height: 100svh !important;
        overflow: hidden !important; /* Desactiva sticky permanentemente en móvil */
        padding-bottom: 40px !important;
    }
    .hero-section > .container {
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 20px !important;
        overflow: visible !important;
    }
    .hero-section .grid-2col {
        max-height: none !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    .hero-scrolltelling-stage {
        transform: none !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    .stage-scene-wrapper {
        min-height: 280px !important;
    }
    .scene-layer {
        position: relative !important;
        inset: auto !important;
        opacity: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }
    .scene-layer.active {
        opacity: 1 !important;
        height: auto !important;
        min-height: 250px !important;
        overflow: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .stage-progress-bar, .stage-dots-nav { 
        display: none !important; 
    }
    .mobile-frame-mockup {
        width: 160px !important;
        height: 210px !important;
    }
}


#scrolltelling {
    height: 300vh;
    position: relative;
    background: #000;
}

#scrolltelling .v-sticky-wrapper {
    position: sticky !important;
    top: 0;
    height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

#scrolltelling .v-scrub {
    width: 100%;
    height: 100dvh;
    object-fit: cover; /* This forces the video to fill the screen without black bars */
    position: absolute;
    top: 0;
    left: 0;
}

.video-caption-bar {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: auto;
    margin-bottom: 40px;
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 10px;
}

/* 4. Text color global fixes - light sections vs dark sections */

/* section-desc: dark in light sections, white in dark sections */
.section-desc {
    color: #444444 !important;
}
.hero-section .section-desc,
.hero-dark .section-desc,
.footer-subtext,
.footer-eslogan,
.video-caption-bar p {
    color: var(--color-white) !important;
}

/* section-badge: dark in light sections, yellow in dark */
.hero-badge, .section-badge {
    color: var(--color-gray-dark);
}
.hero-dark .hero-badge {
    color: var(--color-yellow);
}

/* ==================================================
   FIX CRÍTICO: TEXTO AMARILLO/BLANCO EN SECCIONES CLARAS
   El color amarillo #F8E71C es INVISIBLE sobre fondos blancos.
   En secciones sin fondo oscuro usamos un amber oscuro legible.
   ================================================== */

/* Amber oscuro para .text-yellow y .text-gold en secciones claras */
section:not(.hero-dark) .text-yellow,
section:not(.hero-dark) .text-gold {
    color: #b07800 !important;     /* Amber oscuro - legible sobre blanco */
    text-shadow: none !important;  /* Sin glow - solo funciona sobre fondos oscuros */
}

/* Preservar el amarillo brillante solo en el hero oscuro y el footer */
.hero-dark .text-yellow,
.footer-section .text-yellow,
.footer-section .text-gold,
footer .text-yellow,
footer .text-gold {
    color: var(--color-yellow) !important;
    text-shadow: 0 0 10px rgba(248, 231, 28, 0.5) !important;
}

/* Sección HISTORIA (#historia): texto blanco explícito sobre fondo claro */
.coms-intro-section .text-white,
.coms-intro-section .col-text .text-white p {
    color: #333333 !important;
}

/* El future-statement-box en HISTORIA necesita fondo oscuro propio */
.coms-intro-section .future-statement-box {
    background: #111111 !important;
    border-color: rgba(248,231,28,0.25) !important;
}
.coms-intro-section .future-statement-box p {
    color: #f0f0f0 !important;
}

/* ==================================================
   ZYBERIA OS - NUEVOS ESTILOS CONCEPTUALES
   ================================================== */

/* --- 03. Equipo IA --- */
.agent-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.agent-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* --- 04. Carousel Oficinas --- */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    background: #111;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}
.carousel-slide.active-slide {
    opacity: 1;
}
.slide-visual {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    background: #080808;
}
.slide-info {
    flex: 1;
    min-width: 300px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slide-tag {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    margin-bottom: 20px;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}
.carousel-nav:hover {
    background: rgba(255,255,255,0.3);
}
.carousel-nav.prev { left: 10px; }
.carousel-nav.next { right: 10px; }

/* Mockups Chats */
.mockup-whatsapp {
    background: #0b141a;
    border-radius: 15px;
    width: 100%;
    max-width: 320px;
    overflow: hidden;
    border: 1px solid #2a3942;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.wa-header {
    background: #202c33;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.wa-back { color: #aebac1; font-weight: bold; }
.wa-avatar-container { position: relative; }
.wa-avatar {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.wa-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #00a884;
    border-radius: 50%;
    border: 2px solid #202c33;
}
.wa-info { display: flex; flex-direction: column; }
.wa-name { color: #e9edef; font-weight: 500; font-size: 1rem; }
.wa-status { color: #8696a0; font-size: 0.75rem; }
.wa-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%230b141a"/></svg>');
}
.wa-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    position: relative;
    color: #e9edef;
}
.wa-bubble.received {
    background: #202c33;
    align-self: flex-start;
    border-top-left-radius: 0;
}
.wa-bubble.sent {
    background: #005c4b;
    align-self: flex-end;
    border-top-right-radius: 0;
}
.wa-time {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    text-align: right;
    margin-top: 5px;
}

.mockup-agenda {
    background: #1c1c1e;
    border-radius: 15px;
    width: 100%;
    max-width: 320px;
    overflow: hidden;
    border: 1px solid #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.chat-mini-header {
    background: #2c2c2e;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-mini-avatar {
    font-size: 1.8rem;
    background: #444;
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
}
.chat-mini-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chat-mini-bubble {
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    max-width: 90%;
}
.chat-mini-bubble.received {
    background: #3a3a3c;
    color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}
.chat-mini-bubble.sent {
    background: #0a84ff;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

/* --- 07. Ficha Inteligente Mockup --- */
.mockup-btn:hover {
    filter: brightness(1.2);
}
.ia-dropdown li:hover {
    background: rgba(255,255,255,0.05);
}

/* --- 09. Pricing --- */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}
.pricing-badge {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}
.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}
.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px; width: 26px;
    left: 4px; bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .toggle-slider { background-color: var(--color-yellow); }
input:checked + .toggle-slider:before { transform: translateX(26px); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.pricing-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-10px);
}
.pricing-card.recommended {
    border-color: var(--color-yellow);
    background: linear-gradient(180deg, rgba(248,231,28,0.05) 0%, #111 100%);
}
.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-yellow);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
}
.plan-price {
    margin: 20px 0;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
}
.currency { font-size: 1.5rem; vertical-align: super; }
.period { font-size: 1rem; color: #666; font-weight: 500; }
.saving-tag {
    background: rgba(16,185,129,0.1);
    color: #10b981;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}
.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #ccc;
    font-size: 0.95rem;
}
.plan-features li.disabled { color: #555; }
.check-icon {
    color: var(--color-yellow);
    font-weight: bold;
    margin-right: 10px;
}
.disabled .check-icon { color: #444; }
.btn-card {
    display: block;
    text-align: center;
    background: #222;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    transition: background 0.3s;
}
.btn-card:hover { background: #333; }
.recommended .btn-card {
    background: var(--color-yellow);
    color: #000;
}
.recommended .btn-card:hover {
    background: #e5d122;
}

@media (max-width: 768px) {
    .slide-visual { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 30px 20px; }
    .slide-info { padding: 40px 20px; }
}
