/* ==========================================================================
   DECODE INTELLIGENCE — COMPONENTS & INTERACTIVE ELEMENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: all var(--transition-normal);
  background: rgba(6, 8, 16, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
  background: rgba(6, 8, 16, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.02);
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--gradient-brand);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-cta-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
}

.menu-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION & INTERACTIVE CANVAS
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  overflow: hidden;
  z-index: 1;
}

#bg-canvas, #hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.hero-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, transparent 20%, var(--bg-darkest) 90%),
              linear-gradient(to bottom, transparent 65%, var(--bg-darkest) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.15rem;
  background: rgba(16, 22, 43, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: border-color var(--transition-normal);
}

.hero-status-pill:hover {
  border-color: rgba(155, 81, 224, 0.4);
}

.status-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 12px #10B981;
  position: relative;
}

.status-indicator-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(16, 185, 129, 0.5);
  animation: pulseRing 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
  font-size: clamp(2.8rem, 5.8vw, 4.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 1.75rem;
  background: linear-gradient(180deg, #FFFFFF 20%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.accent-span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #94A3B8;
  max-width: 760px;
  margin: 0 auto 2.85rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.hero-proof-item svg {
  color: var(--brand-cyan);
}

/* --------------------------------------------------------------------------
   3. SECTION: WHAT WE BUILD (ULTRA-PREMIUM CAPABILITIES CONSOLE & BENTO MATRIX)
   -------------------------------------------------------------------------- */
.solutions-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-primary) 50%, var(--bg-darkest) 100%);
  padding-bottom: 9rem;
}

/* Category Filter Bar */
.console-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill:hover, .filter-pill.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(155, 81, 224, 0.5);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(155, 81, 224, 0.2);
}

.filter-pill.active {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), rgba(155, 81, 224, 0.2));
  border-color: var(--brand-purple);
}

/* Master-Detail Command Console Deck */
.console-deck {
  background: rgba(8, 12, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.9), 0 0 50px rgba(155, 81, 224, 0.15);
  overflow: hidden;
  margin-bottom: 4.5rem;
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 640px;
}

/* Left Navigation Deck */
.console-nav-sidebar {
  background: rgba(4, 7, 15, 0.8);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.console-nav-header {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-nav-header span.online-badge {
  color: var(--brand-emerald);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.console-nav-header span.online-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-emerald);
  box-shadow: 0 0 6px var(--brand-emerald);
}

.console-tab-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  position: relative;
  user-select: none;
}

.console-tab-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #FFFFFF;
}

.console-tab-item.active {
  background: linear-gradient(90deg, rgba(155, 81, 224, 0.15) 0%, rgba(56, 189, 248, 0.06) 100%);
  border-color: rgba(155, 81, 224, 0.4);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.console-tab-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3.5px;
  border-radius: 4px;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px var(--brand-orange);
}

.tab-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tab-idx {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  width: 20px;
}

.console-tab-item.active .tab-idx {
  color: var(--brand-cyan);
  font-weight: 600;
}

.tab-title-text {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
}

.tab-category-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.tab-arrow {
  color: var(--text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.console-tab-item.active .tab-arrow {
  color: var(--brand-cyan);
  transform: translateX(3px);
}

/* Right Stage Display */
.console-stage {
  padding: 2.75rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

/* Panel Specification Content */
.stage-spec-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spec-system-code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--brand-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.spec-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.spec-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.spec-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.spec-check-icon {
  color: var(--brand-emerald);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.spec-integrations-wrap {
  margin-bottom: 2rem;
}

.spec-integrations-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.spec-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spec-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.stage-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Interactive Simulated Interface Window */
.stage-simulator-col {
  background: #04060C;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(155, 81, 224, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
}

.simulator-window-bar {
  background: rgba(16, 22, 40, 0.9);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.simulator-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sim-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.sim-dot.red { background: #EF4444; }
.sim-dot.yellow { background: #F59E0B; }
.sim-dot.green { background: #10B981; }

.simulator-window-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.simulator-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* Individual Simulator Panels (Hidden by default, shown when active) */
.simulator-view {
  display: none;
  height: 100%;
}

.simulator-view.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

/* 1. AI Agent Cockpit */
.agent-step-row {
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.agent-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.step-badge-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: rgba(155, 81, 224, 0.2);
  color: var(--brand-purple);
  border: 1px solid rgba(155, 81, 224, 0.4);
}

.step-latency {
  font-size: 0.7rem;
  color: var(--brand-cyan);
}

.agent-step-content {
  color: #E2E8F0;
  font-size: 0.82rem;
}

.agent-tool-call {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  margin-top: 0.4rem;
  font-size: 0.76rem;
  color: var(--brand-cyan);
}

/* 2. WhatsApp & CRM Split Simulator */
.whatsapp-crm-dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.wa-preview-bubble {
  background: #0B2019;
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
}

.wa-bubble-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #25D366;
  margin-bottom: 0.35rem;
}

.crm-sync-card {
  background: rgba(16, 22, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
}

.crm-card-title {
  font-size: 0.75rem;
  color: var(--brand-purple);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crm-row-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.crm-row-label { color: var(--text-muted); }
.crm-row-val { color: #FFFFFF; font-weight: 600; }

/* 3. Workflow DAG Node Graph Simulator */
.workflow-dag-visual {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  justify-content: center;
}

.dag-node-box {
  background: rgba(16, 24, 46, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.dag-node-box::after {
  content: '↓';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--brand-purple);
  font-size: 0.8rem;
}

.dag-node-box:last-child::after {
  display: none;
}

.dag-node-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
}

.dag-node-status {
  font-size: 0.72rem;
  color: var(--brand-emerald);
}

/* 4. BI Sparkline & Metrics Simulator */
.bi-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bi-metric-cell {
  background: rgba(16, 22, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.85rem;
}

.bi-cell-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.bi-cell-val {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0.2rem 0;
}

.bi-cell-trend {
  font-size: 0.72rem;
  color: var(--brand-emerald);
}

/* --------------------------------------------------------------------------
   ASENSORY BENTO MATRIX (HIGH-END COMPACT ARCHITECTURE MATRIX)
   -------------------------------------------------------------------------- */
.bento-overview-header {
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 2.5rem;
}

.bento-overview-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.bento-overview-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.bento-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bento-cell {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bento-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.bento-cell:hover::before {
  opacity: 1;
}

.bento-cell:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 25px rgba(155, 81, 224, 0.15);
}

.bento-cell.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(16, 22, 44, 0.9) 0%, rgba(10, 14, 28, 0.9) 100%);
}

.bento-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.bento-mod-code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--brand-cyan);
  text-transform: uppercase;
}

.bento-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  transition: all var(--transition-normal);
}

.bento-cell:hover .bento-icon-box {
  background: var(--gradient-brand);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(255, 77, 109, 0.4);
  transform: scale(1.05);
}

.bento-cell-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.bento-cell-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bento-cell-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.bento-telemetry-tag {
  color: var(--text-muted);
}

.bento-explore-btn {
  color: var(--brand-cyan);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.bento-cell:hover .bento-explore-btn {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   3.5 FLOATING UI WINDOWS & CRM COMMAND ECOSYSTEM SECTION
   -------------------------------------------------------------------------- */
.floating-ecosystem-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(155, 81, 224, 0.08) 0%, var(--bg-darkest) 75%);
  padding: 8rem 0;
  overflow: hidden;
}

/* Automation Flow Indicator Bar */
.ecosystem-flow-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.flow-step-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.flow-step-pill.active {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.2), rgba(155, 81, 224, 0.25));
  border-color: var(--brand-purple);
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(155, 81, 224, 0.3);
}

.flow-step-pill .step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all var(--transition-fast);
}

.flow-step-pill.active .step-dot {
  background: var(--brand-cyan);
  box-shadow: 0 0 8px var(--brand-cyan);
}

.flow-arrow-separator {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* 3D Stage Container */
.ecosystem-stage {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 820px;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem-3d-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 820px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG Connecting Lines Layer */
.ecosystem-svg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.connector-path {
  fill: none;
  stroke: rgba(155, 81, 224, 0.25);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  animation: strokeDash 25s linear infinite;
  transition: stroke 0.4s ease, stroke-width 0.4s ease;
}

.connector-path.active {
  stroke: var(--brand-cyan);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6));
}

@keyframes strokeDash {
  to { stroke-dashoffset: -1000; }
}

/* Central CRM Dashboard Hub */
.crm-central-hub {
  position: relative;
  z-index: 10;
  width: 520px;
  max-width: 90%;
  background: rgba(10, 14, 28, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(155, 81, 224, 0.2);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  overflow: hidden;
  transform: translateZ(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.crm-central-hub:hover {
  box-shadow: 0 35px 90px -10px rgba(0, 0, 0, 0.95), 0 0 65px rgba(155, 81, 224, 0.35);
}

.crm-hub-header {
  background: rgba(16, 22, 44, 0.95);
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crm-header-title {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: #FFFFFF;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.crm-live-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--brand-emerald);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.crm-live-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-emerald);
  box-shadow: 0 0 6px var(--brand-emerald);
}

.crm-hub-body {
  padding: 1.75rem;
}

/* Lead Profile Header */
.crm-lead-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lead-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lead-avatar-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 122, 0, 0.4);
}

.lead-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.lead-company-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.lead-source-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--brand-cyan);
}

/* Pipeline Stage Stepper */
.crm-pipeline-stepper {
  margin-bottom: 1.5rem;
}

.stepper-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
}

.stepper-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stepper-stage-btn {
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 0.45rem 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  transition: all var(--transition-fast);
}

.stepper-stage-btn.completed {
  background: rgba(155, 81, 224, 0.2);
  color: #FFFFFF;
}

.stepper-stage-btn.current {
  background: var(--gradient-brand);
  color: #FFFFFF;
  box-shadow: 0 0 14px rgba(255, 77, 109, 0.5);
}

/* Meta Information Grid */
.crm-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.crm-meta-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
}

.meta-box-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.meta-box-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
}

.meta-box-value.score-high {
  color: #10B981;
}

.meta-box-value.deal-val {
  color: var(--brand-orange);
}

/* Activity Ticker Stream */
.crm-activity-ticker {
  background: rgba(4, 7, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

/* --------------------------------------------------------------------------
   FLOATING SATELLITE WINDOWS AROUND CRM
   -------------------------------------------------------------------------- */
.floating-window {
  position: absolute;
  z-index: 8;
  background: rgba(12, 17, 34, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(155, 81, 224, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.2s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  user-select: none;
}

.floating-window:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(155, 81, 224, 0.25);
}

.float-win-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.float-win-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.float-win-status {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Position 1: WhatsApp Chat (Top Left) */
.win-whatsapp {
  top: 4%;
  left: 2%;
  width: 310px;
  transform: translateZ(60px);
}

.win-whatsapp .float-win-title {
  color: #25D366;
}

.mini-chat-bubble {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.mini-chat-bubble.inbound {
  background: rgba(255, 255, 255, 0.05);
  color: #E2E8F0;
  border-top-left-radius: 2px;
}

.mini-chat-bubble.ai-reply {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #FFFFFF;
  border-top-right-radius: 2px;
}

/* Position 2: AI Chatbot Knowledge Citation (Mid Left) */
.win-chatbot {
  top: 48%;
  left: 0%;
  width: 290px;
  transform: translateZ(45px);
}

.win-chatbot .float-win-title {
  color: var(--brand-purple);
}

.citation-box {
  background: rgba(155, 81, 224, 0.1);
  border: 1px solid rgba(155, 81, 224, 0.25);
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #D8B4FE;
  margin-bottom: 0.5rem;
}

/* Position 3: Inbound New Lead Notification (Top Right) */
.win-notification {
  top: 4%;
  right: 2%;
  width: 310px;
  transform: translateZ(70px);
}

.win-notification .float-win-title {
  color: var(--brand-orange);
}

.notif-alert-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 122, 0, 0.1);
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
}

.notif-icon-orb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-text-primary {
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
}

.notif-text-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* Position 4: Sales Team Assignment (Mid Right) */
.win-assignment {
  top: 48%;
  right: 0%;
  width: 300px;
  transform: translateZ(55px);
}

.win-assignment .float-win-title {
  color: var(--brand-cyan);
}

.slack-dispatch-mock {
  background: rgba(4, 7, 15, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.78rem;
}

.slack-author {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.slack-author span.bot-tag {
  font-size: 0.65rem;
  background: var(--brand-purple);
  color: #FFFFFF;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* Position 5: Follow-Up Reminder (Bottom Left) */
.win-reminder {
  bottom: 2%;
  left: 6%;
  width: 290px;
  transform: translateZ(40px);
}

.win-reminder .float-win-title {
  color: #F59E0B;
}

.reminder-cal-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
}

.cal-date-chip {
  background: rgba(245, 158, 11, 0.25);
  color: #F59E0B;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  text-align: center;
  line-height: 1.1;
}

/* Position 6: Real-time Analytics (Bottom Right) */
.win-analytics {
  bottom: 2%;
  right: 6%;
  width: 290px;
  transform: translateZ(50px);
}

.win-analytics .float-win-title {
  color: var(--brand-emerald);
}

.analytics-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.mini-stat-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.6rem;
}

.mini-stat-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
}

.mini-stat-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   4. INTERACTIVE AUTOMATION PIPELINE VISUALIZATION
   -------------------------------------------------------------------------- */
.pipeline-section {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.pipeline-wrapper {
  background: rgba(8, 12, 24, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
  position: relative;
}

.pipeline-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 1rem;
}

.pipeline-status-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--brand-emerald);
}

.pipeline-status-text .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-emerald);
  box-shadow: 0 0 10px var(--brand-emerald);
  animation: pulseDot 1.5s infinite;
}

.pipeline-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-ctrl {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-ctrl:hover, .btn-ctrl.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  border-color: var(--border-medium);
}

/* Pipeline Flow Stages */
.pipeline-flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.85rem;
  position: relative;
  margin-bottom: 2.5rem;
}

/* Connecting ambient glowing line */
.pipeline-track-line {
  position: absolute;
  top: 36px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.pipeline-track-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient-brand);
  box-shadow: 0 0 15px rgba(255, 77, 109, 0.6);
  transition: width 0.4s ease;
}

.pipeline-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 0.5rem 0.25rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

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

.node-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 1rem;
  transition: all var(--transition-normal);
  position: relative;
}

.pipeline-node.active .node-icon-circle {
  border-color: var(--brand-orange);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.25), rgba(155, 81, 224, 0.25));
  color: #FFFFFF;
  box-shadow: 0 0 25px rgba(255, 122, 0, 0.4);
}

.pipeline-node.completed .node-icon-circle {
  border-color: var(--brand-purple);
  color: #FFFFFF;
  background: rgba(155, 81, 224, 0.18);
}

.node-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.node-timing {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.pipeline-node.active .node-timing {
  color: var(--brand-cyan);
}

/* Pipeline Telemetry Inspector Box */
.pipeline-inspector {
  background: rgba(4, 7, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.telemetry-col-left {
  flex: 1;
}

.telemetry-tag {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--brand-purple);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.telemetry-headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

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

.telemetry-col-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.telemetry-stat-unit {
  text-align: right;
}

.telemetry-stat-label {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.telemetry-stat-val {
  font-size: 1.1rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--brand-cyan);
}

/* --------------------------------------------------------------------------
   5. SECTION: HOW WE EXECUTE (6-STAGE ROADMAP)
   -------------------------------------------------------------------------- */
.execution-section {
  position: relative;
  background: var(--bg-darkest);
}

.execution-timeline {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

/* Central connecting line */
.execution-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.4) 0%, rgba(155, 81, 224, 0.4) 50%, rgba(56, 189, 248, 0.4) 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.execution-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.execution-row:last-child {
  margin-bottom: 0;
}

.execution-row:nth-child(even) {
  flex-direction: row-reverse;
}

.execution-card {
  width: 44%;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition-normal);
  position: relative;
}

.execution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(155, 81, 224, 0.15);
}

.execution-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-darkest);
  border: 2px solid var(--brand-purple);
  box-shadow: 0 0 20px rgba(155, 81, 224, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  z-index: 3;
}

.stage-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.stage-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.stage-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   6. BUSINESS IMPACT SECTION (ANIMATED COUNTERS)
   -------------------------------------------------------------------------- */
.impact-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-darkest) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.impact-card {
  background: rgba(12, 17, 34, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.impact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.impact-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.impact-subtext {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. INDUSTRIES SECTION
   -------------------------------------------------------------------------- */
.industries-section {
  position: relative;
  background: var(--bg-darkest);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(56, 189, 248, 0.1);
}

.industry-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  margin-bottom: 1.25rem;
  transition: all var(--transition-normal);
}

.industry-card:hover .industry-icon {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--brand-cyan);
}

.industry-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.industry-usecase {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   8. LEAD CONSULTATION FORM SECTION
   -------------------------------------------------------------------------- */
.lead-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}

.lead-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.lead-info-col {
  padding-right: 1.5rem;
}

.lead-headline {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.lead-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.lead-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.perk-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--brand-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.perk-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

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

/* Form Card Container */
.lead-form-card {
  background: rgba(12, 17, 34, 0.85);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 3rem 2.75rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(155, 81, 224, 0.1);
  position: relative;
}

.form-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.form-label span.req {
  color: var(--brand-coral);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(6, 9, 18, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 15px rgba(155, 81, 224, 0.25);
  background: rgba(10, 14, 28, 0.95);
}

.form-select option {
  background: var(--bg-tertiary);
  color: #FFFFFF;
}

.form-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.checkbox-pill-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.checkbox-pill-label:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #FFFFFF;
}

.checkbox-pill-label input[type="checkbox"] {
  accent-color: var(--brand-orange);
  cursor: pointer;
}

.checkbox-pill-label:has(input:checked) {
  border-color: var(--brand-orange);
  background: rgba(255, 122, 0, 0.1);
  color: #FFFFFF;
}

.form-submit-btn {
  width: 100%;
  padding: 1.05rem;
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* Success Banner */
.form-success-alert {
  display: none;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}

.form-success-alert.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

.success-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: var(--brand-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}

.success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.success-message {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   9. FINAL CALL TO ACTION BANNER
   -------------------------------------------------------------------------- */
.final-cta-section {
  position: relative;
  padding: 6rem 0;
  background: var(--bg-darkest);
}

.final-cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(16, 22, 43, 0.95) 0%, rgba(22, 16, 36, 0.95) 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), 0 0 50px rgba(155, 81, 224, 0.15);
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.2) 0%, rgba(155, 81, 224, 0.15) 50%, transparent 80%);
  pointer-events: none;
}

.final-cta-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #020306;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5rem 0 2.5rem;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand-col {
  padding-right: 2rem;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 77, 109, 0.4);
}

.footer-col-title {
  font-size: 0.92rem;
  font-family: var(--font-mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

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

.footer-link {
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #FFFFFF;
  padding-left: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   11. FLOATING AI CHATBOT WIDGET
   -------------------------------------------------------------------------- */
.chatbot-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.chatbot-launcher {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 8px 30px rgba(255, 77, 109, 0.4), 0 0 20px rgba(155, 81, 224, 0.3);
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.chatbot-launcher:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(255, 77, 109, 0.6);
}

.launcher-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid var(--bg-darkest);
  box-shadow: 0 0 8px #10B981;
}

.chatbot-window {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 2rem);
  height: 560px;
  max-height: calc(100vh - 120px);
  background: rgba(10, 14, 28, 0.96);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(155, 81, 224, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

.chatbot-window.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  padding: 1.15rem 1.35rem;
  background: rgba(16, 22, 43, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.chatbot-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.chatbot-sub {
  font-size: 0.75rem;
  color: var(--brand-emerald);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.chatbot-sub::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-emerald);
  box-shadow: 0 0 6px var(--brand-emerald);
}

.chatbot-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 50%;
  transition: color var(--transition-fast);
}

.chatbot-close-btn:hover {
  color: #FFFFFF;
}

.chatbot-body {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  display: flex;
  gap: 0.6rem;
  max-width: 88%;
}

.chat-message.bot {
  align-self: flex-start;
}

.chat-message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-bubble {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-message.bot .chat-bubble {
  background: rgba(22, 29, 56, 0.85);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  border-top-left-radius: 4px;
}

.chat-message.user .chat-bubble {
  background: var(--gradient-brand);
  color: #FFFFFF;
  border-top-right-radius: 4px;
}

.chat-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.chat-action-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-action-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--brand-purple);
  transform: translateX(3px);
}

.chat-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.chat-pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-pill-btn:hover {
  background: rgba(123, 63, 228, 0.2);
  border-color: var(--brand-purple);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(123, 63, 228, 0.25);
}

.chatbot-footer {
  padding: 0.85rem 1rem;
  background: rgba(12, 17, 34, 0.95);
  border-top: 1px solid var(--border-subtle);
}

.chatbot-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 9, 18, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.5rem 0.35rem 1rem;
}

.chatbot-input-wrap:focus-within {
  border-color: var(--brand-purple);
}

.chatbot-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 0.88rem;
}

.chatbot-input::placeholder {
  color: var(--text-muted);
}

.chatbot-send-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-brand);
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.chatbot-send-btn:hover {
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   12. FLOATING STRATEGIC INSTAGRAM BUTTON
   -------------------------------------------------------------------------- */
.instagram-floating-badge {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.15rem;
  background: rgba(12, 17, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-normal);
}

.instagram-floating-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 48, 108, 0.6);
  box-shadow: 0 12px 30px rgba(225, 48, 108, 0.3);
  color: #FFFFFF;
}

.instagram-icon-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF4D6D;
}
