/* ==========================================================================
   Syncrozone SaaS Landing Page Stylesheet
   Pixel-Accurate Implementation Matching Modern UI Design
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-page: #FAFAFC;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-muted: #F1F5F9;

  /* Text Colors */
  --text-main: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  /* Brand Colors */
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --primary-gradient: linear-gradient(135deg, #6366F1 0%, #7C3AED 100%);
  --primary-subtle: rgba(99, 102, 241, 0.08);

  --accent-green: #10B981;
  --accent-green-subtle: rgba(16, 185, 129, 0.08);
  --accent-blue: #0284C7;
  --accent-purple: #7C3AED;
  --accent-orange: #F97316;
  --accent-rose: #EF4444;

  /* Borders & Shadows */
  --border-color: #E2E8F0;
  --border-light: #F1F5F9;
  
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 12px 30px -5px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  --shadow-glow: 0 8px 20px -2px rgba(99, 102, 241, 0.28);
  --shadow-float: 0 14px 28px rgba(0, 0, 0, 0.08), 0 6px 10px rgba(0, 0, 0, 0.04);

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions */
  --tr-fast: 0.15s ease;
  --tr-normal: 0.25s ease;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--tr-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

ul { list-style: none; }
img, svg { vertical-align: middle; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-green { color: var(--accent-green) !important; }
.text-indigo { color: #818CF8 !important; }
.w-full { width: 100%; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  transition: all var(--tr-normal);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #FFFFFF !important;
  box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-glow {
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--text-main) !important;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background-color: var(--bg-subtle);
  border-color: #CBD5E1;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--bg-subtle);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-dark-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dark-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-ghost {
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-main);
}

.btn-lg {
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.4rem 0.9rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

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

.chevron {
  color: var(--text-muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.4rem;
}

.mobile-toggle .bar {
  width: 20px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
}

.mobile-drawer {
  display: none;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem;
}

.mobile-drawer.open { display: block; }
.mobile-drawer-inner { display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-link { font-size: 0.95rem; font-weight: 600; padding: 0.4rem 0; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 4rem 0 3.5rem;
  background: radial-gradient(circle at 75% 20%, #EEF2FF 0%, #FAFAFC 55%);
}

.hero-container-2col {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-xs);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.pill-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.gradient-text {
  color: var(--primary);
  background: linear-gradient(135deg, #6366F1 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.hero-metrics-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.metric-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-main);
  line-height: 1.2;
}

.metric-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   HERO RIGHT: LIVE ACTIVITY CARD & FLOATING BADGES
   ========================================================================== */
.hero-card-wrapper {
  position: relative;
  padding: 1.5rem 0.5rem;
}

.live-activity-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.card-main-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.activity-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Left Subcard: Incoming Call */
.incoming-call-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.call-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.caller-profile {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.caller-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #6366F1;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caller-profile strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-main);
}

.caller-profile p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.caller-type {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.waveform-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 0.5rem;
  padding: 0.45rem 0.65rem;
}

.waveform-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 16px;
}

.wbar {
  width: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  animation: wave-bounce 1.2s infinite ease-in-out;
}
.wbar:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.wbar:nth-child(2) { height: 70%; animation-delay: 0.2s; }
.wbar:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.wbar:nth-child(4) { height: 40%; animation-delay: 0.15s; }
.wbar:nth-child(5) { height: 80%; animation-delay: 0.25s; }
.wbar:nth-child(6) { height: 60%; animation-delay: 0.35s; }
.wbar:nth-child(7) { height: 90%; animation-delay: 0.05s; }
.wbar:nth-child(8) { height: 45%; animation-delay: 0.4s; }
.wbar:nth-child(9) { height: 75%; animation-delay: 0.18s; }
.wbar:nth-child(10) { height: 35%; animation-delay: 0.28s; }
.wbar:nth-child(11) { height: 65%; animation-delay: 0.12s; }
.wbar:nth-child(12) { height: 50%; animation-delay: 0.32s; }

.wave-timer {
  font-size: 0.71875rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-weight: 600;
}

.agent-talk-bubble {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 0.65rem;
  padding: 0.6rem 0.75rem;
}

.agent-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.2rem;
}

.agent-talk-bubble p {
  font-size: 0.75rem;
  color: var(--text-main);
  font-style: italic;
}

.call-action-btns {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.c-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
}

.arrow-btn { background: #FFFFFF; border: 1px solid var(--border-color); color: var(--text-muted); }
.hangup-btn { background: #EF4444; color: #FFFFFF; }
.transfer-btn { background: #FFFFFF; border: 1px solid var(--border-color); color: var(--text-muted); }

/* Right Subcard: AI Detected */
.ai-detected-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.detected-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.detected-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
}

.intent-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-green);
}

.lead-data-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.lead-data-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.d-label { color: var(--text-muted); }
.d-val { font-weight: 600; color: var(--text-main); }
.score-green { color: var(--accent-green); font-size: 0.85rem; font-weight: 800; }
.score-green small { font-size: 0.6875rem; color: var(--text-muted); }

.appointment-success-box {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 0.65rem;
  padding: 0.6rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.apt-icon { font-size: 1.1rem; }
.appointment-success-box strong { font-size: 0.75rem; color: #065F46; display: block; }
.apt-time { font-size: 0.75rem; font-weight: 700; color: #047857; }
.apt-sub { font-size: 0.65rem; color: #059669; }

/* Floating Pill Cards */
.float-card {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  padding: 0.45rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-float);
  z-index: 10;
  animation: float-slow 4s ease-in-out infinite;
}

.float-icon-bg {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.bg-green { background-color: var(--accent-green); }
.bg-blue { background-color: var(--primary); }

.float-card strong { display: block; font-size: 0.75rem; color: var(--text-main); line-height: 1.2; }
.float-card p { font-size: 0.65rem; color: var(--text-muted); }

.float-top-right {
  top: -5px;
  right: -10px;
}

.float-bottom-left {
  bottom: 0px;
  left: -20px;
  animation-delay: 1.5s;
}

.float-bottom-right {
  bottom: -10px;
  right: 0px;
  animation-delay: 2.5s;
}

/* ==========================================================================
   TRUSTED BY SECTION
   ========================================================================== */
.social-proof-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: #FFFFFF;
}

.proof-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.trusted-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.brand-item {
  font-size: 0.875rem;
  font-weight: 700;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.04em;
}

.brand-item small {
  font-size: 0.625rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ==========================================================================
   HOW IT WORKS (6-STEP CIRCULAR PROCESS)
   ========================================================================== */
.section {
  padding: 5rem 0;
}

.section-tag-pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 3.5rem;
  letter-spacing: -0.03em;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.color-purple { background: #EEF2FF; border: 2px solid #C7D2FE; color: #4F46E5; }
.color-blue { background: #E0F2FE; border: 2px solid #BAE6FD; color: #0284C7; }
.color-green { background: #ECFDF5; border: 2px solid #A7F3D0; color: #059669; }
.color-orange { background: #FFF7ED; border: 2px solid #FFEDD5; color: #EA580C; }
.color-violet { background: #FAF5FF; border: 2px solid #E9D5FF; color: #7C3AED; }
.color-cyan { background: #ECFEFF; border: 2px solid #A5F3FC; color: #0891B2; }

.step-icon { font-size: 1.35rem; }

.step-number {
  position: absolute;
  bottom: -6px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  font-size: 0.5875rem;
  font-weight: 800;
  color: var(--text-muted);
  padding: 0.05rem 0.35rem;
  border-radius: 9999px;
}

.step-heading {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.step-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   MODERN BENTO 2.0: EVERYTHING YOU NEED TO SCALE REVENUE
   ========================================================================== */
.features-section {
  padding: 5rem 0;
  background: #FAFAFC;
}

.features-top-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.75rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.features-top-header .section-title {
  margin-bottom: 0.5rem;
}

.features-sub-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.55;
}

.explore-btn {
  flex-shrink: 0;
}

/* Bento 2.0 Grid Container */
.bento-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.bento-mod-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.04), 0 2px 6px -2px rgba(15, 23, 42, 0.02);
  transition: all var(--tr-normal);
  position: relative;
  overflow: hidden;
}

.bento-mod-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
  box-shadow: 0 20px 35px -10px rgba(99, 102, 241, 0.12), 0 0 0 1px rgba(99, 102, 241, 0.15);
}

.bento-mod-span-2 {
  grid-column: span 2;
}

.bento-mod-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Glow Badges */
.bento-glow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
  width: fit-content;
}

.glow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 6px currentColor;
}

.badge-purple { background: rgba(99, 102, 241, 0.1); color: #6366F1; border: 1px solid rgba(99, 102, 241, 0.25); }
.badge-green { background: rgba(16, 185, 129, 0.1); color: #059669; border: 1px solid rgba(16, 185, 129, 0.25); }
.badge-blue { background: rgba(2, 132, 199, 0.1); color: #0284C7; border: 1px solid rgba(2, 132, 199, 0.25); }
.badge-amber { background: rgba(245, 158, 11, 0.1); color: #D97706; border: 1px solid rgba(245, 158, 11, 0.25); }
.badge-rose { background: rgba(239, 68, 68, 0.1); color: #DC2626; border: 1px solid rgba(239, 68, 68, 0.25); }

.dot-purple { background: #6366F1; }
.dot-green { background: #10B981; }
.dot-blue { background: #0284C7; }
.dot-amber { background: #F59E0B; }
.dot-rose { background: #EF4444; }

.bento-mod-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.bento-mod-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.bento-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.f-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
}

.f-pill svg {
  color: #6366F1;
}

/* Card 1 Voice Glass Widget */
.voice-glass-widget {
  background: #0B0F19;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 1.25rem;
  padding: 1.5rem;
  color: #FFFFFF;
  box-shadow: 0 16px 32px -8px rgba(11, 15, 25, 0.4);
}

.vg-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.vg-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.25);
  border: 1px solid rgba(99, 102, 241, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.vg-header strong {
  display: block;
  font-size: 0.875rem;
  color: #F8FAFC;
}

.vg-status {
  font-size: 0.71875rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.vg-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
  animation: pulse-ring 1.5s infinite;
}

.vg-latency {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}

.vg-spectrum-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.vg-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}

.vbar {
  width: 2.5px;
  background: #818CF8;
  border-radius: 2px;
  animation: wave-bounce 1.1s infinite ease-in-out;
}
.vbar:nth-child(1) { height: 35%; }
.vbar:nth-child(2) { height: 80%; }
.vbar:nth-child(3) { height: 100%; }
.vbar:nth-child(4) { height: 40%; }
.vbar:nth-child(5) { height: 90%; }
.vbar:nth-child(6) { height: 60%; }
.vbar:nth-child(7) { height: 75%; }
.vbar:nth-child(8) { height: 45%; }
.vbar:nth-child(9) { height: 85%; }
.vbar:nth-child(10) { height: 50%; }

.vg-voice-label {
  font-size: 0.6875rem;
  color: #94A3B8;
  font-weight: 600;
}

.vg-booking-alert {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 0.65rem;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.vg-check { font-size: 1.1rem; }
.vg-booking-alert strong { display: block; font-size: 0.78125rem; color: #34D399; }
.vg-booking-alert span { font-size: 0.6875rem; color: #A7F3D0; }

/* Card 2 WhatsApp Visual */
.mini-wa-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.m-wa-msg {
  padding: 0.6rem 0.8rem;
  border-radius: 0.65rem;
  font-size: 0.78125rem;
  line-height: 1.4;
}

.m-wa-msg.incoming {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  align-self: flex-start;
  max-width: 90%;
  color: var(--text-main);
}

.m-wa-msg.outgoing {
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  align-self: flex-end;
  max-width: 95%;
  color: #14532D;
}

.m-wa-flag {
  font-size: 0.625rem;
  font-weight: 800;
  color: #059669;
  margin-bottom: 0.2rem;
}

.m-wa-time {
  display: block;
  font-size: 0.5875rem;
  color: #166534;
  text-align: right;
  margin-top: 0.25rem;
}

/* Metric Tags */
.bento-metric-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.green-tag { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.blue-tag { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.rose-tag { background: #FFF1F2; border: 1px solid #FECDD3; color: #9F1239; }

/* Card 3 Outreach Visual */
.mini-demo-preview {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  margin-bottom: 0.85rem;
}

.m-demo-topbar {
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
  padding: 0.35rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.md-dot { width: 6px; height: 6px; border-radius: 50%; background: #CBD5E1; }
.md-url { font-size: 0.625rem; font-family: var(--font-mono); color: var(--text-muted); margin-left: 0.35rem; }

.m-demo-body {
  padding: 0.85rem;
}

.m-demo-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  color: #2563EB;
  background: #DBEAFE;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  margin-bottom: 0.35rem;
}

.m-demo-body strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-main);
}

/* Card 4 Automations Stack */
.mini-flow-stack {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m-flow-node {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: var(--shadow-xs);
}

.m-flow-node.trigger { background: #EEF2FF; border: 1px solid #C7D2FE; color: #4338CA; }
.m-flow-node.action { background: #ECFDF5; border: 1px solid #A7F3D0; color: #047857; }
.m-flow-node.delay { background: #FFFBEB; border: 1px solid #FDE68A; color: #B45309; }
.m-flow-node.call { background: #FAF5FF; border: 1px solid #E9D5FF; color: #7C3AED; }

.m-flow-line {
  width: 2px;
  height: 12px;
  background: #CBD5E1;
  position: relative;
}

/* Card 5 Leads Visual */
.leads-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.l-chip {
  font-size: 0.71875rem;
  font-weight: 600;
  color: #475569;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
}

.l-chip.highlight-warm {
  background: #FFF1F2;
  border-color: #FECDD3;
  color: #BE123C;
  font-weight: 700;
}

@media (max-width: 900px) {
  .bento-modern-grid { grid-template-columns: 1fr; }
  .bento-mod-span-2 { grid-column: span 1; }
  .bento-mod-inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   DYNAMIC LIVE AI ACTIVITY WIDGET (YOUR AI TEAM IS ALREADY WORKING)
   ========================================================================== */
.dark-bento-section {
  padding: 3.5rem 0;
}

.dark-bento-container {
  background: #080B14;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
  border: 1.5px solid rgba(99, 102, 241, 0.25);
  border-radius: 1.75rem;
  padding: 3rem 2.5rem;
  color: #FFFFFF;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

/* Header */
.dark-bento-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.25rem;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.75rem;
}

.d-header-left {
  max-width: 540px;
}

.dark-tag-pill {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #A5B4FC;
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(99, 102, 241, 0.35);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.d-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 2s infinite;
}

.dark-title {
  color: #FFFFFF;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.dark-subtitle {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.5;
}

.d-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.scenario-chips-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.4rem;
  border-radius: 9999px;
}

.scenario-label {
  font-size: 0.6875rem;
  color: #64748B;
  font-weight: 700;
  padding-left: 0.5rem;
}

.scenario-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94A3B8;
  background: transparent;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: all var(--tr-fast);
}

.scenario-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.scenario-btn.active {
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.btn-play-sim {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--tr-fast);
}

.btn-play-sim:hover {
  background: #6366F1;
  border-color: #6366F1;
  transform: scale(1.03);
}

/* 3-Column Dark Grid */
.dark-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 1.5rem;
}

.dark-col {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.d-col-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.d-col-title {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #94A3B8;
}

.d-col-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.live-blink-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse-ring 1.5s infinite;
}

.d-chat-status {
  font-size: 0.65rem;
  font-weight: 700;
  color: #818CF8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.d-status-glow {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #818CF8;
  box-shadow: 0 0 8px #818CF8;
}

/* Col 1: Agents Fleet */
.dark-agents-col {
  gap: 0.75rem;
}

.agent-live-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 0.85rem;
  transition: all var(--tr-normal);
}

.agent-live-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(99, 102, 241, 0.3);
}

.agent-live-card.active-agent {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.15);
}

.agent-live-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.agent-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.icon-purple { background: rgba(124, 58, 237, 0.25); border: 1px solid rgba(124, 58, 237, 0.4); }
.icon-green { background: rgba(16, 185, 129, 0.25); border: 1px solid rgba(16, 185, 129, 0.4); }
.icon-blue { background: rgba(2, 132, 199, 0.25); border: 1px solid rgba(2, 132, 199, 0.4); }
.icon-cyan { background: rgba(8, 145, 178, 0.25); border: 1px solid rgba(8, 145, 178, 0.4); }

.agent-info-wrap {
  flex: 1;
}

.agent-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agent-name-row strong {
  font-size: 0.8125rem;
  color: #F8FAFC;
}

.agent-state-pill {
  font-size: 0.5875rem;
  font-weight: 800;
  padding: 0.1rem 0.45rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pill-active { background: rgba(16, 185, 129, 0.2); color: #34D399; border: 1px solid rgba(16, 185, 129, 0.4); }
.pill-idle { background: rgba(255, 255, 255, 0.08); color: #94A3B8; border: 1px solid rgba(255, 255, 255, 0.1); }
.pill-success { background: rgba(99, 102, 241, 0.25); color: #A5B4FC; border: 1px solid rgba(99, 102, 241, 0.4); }

.agent-desc-txt {
  font-size: 0.6875rem;
  color: #94A3B8;
  margin-top: 0.1rem;
}

.agent-mini-waveform {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 14px;
  margin-top: 0.65rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0.55rem;
  border-radius: 0.35rem;
}

.am-bar {
  width: 2px;
  background: #818CF8;
  border-radius: 2px;
  animation: wave-bounce 1s infinite ease-in-out;
}
.am-bar:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.am-bar:nth-child(2) { height: 80%; animation-delay: 0.2s; }
.am-bar:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.am-bar:nth-child(4) { height: 50%; animation-delay: 0.15s; }
.am-bar:nth-child(5) { height: 90%; animation-delay: 0.25s; }
.am-bar:nth-child(6) { height: 60%; animation-delay: 0.35s; }
.am-bar:nth-child(7) { height: 75%; animation-delay: 0.05s; }
.am-bar:nth-child(8) { height: 40%; animation-delay: 0.4s; }
.am-bar:nth-child(9) { height: 85%; animation-delay: 0.18s; }

.am-timer {
  margin-left: auto;
  font-size: 0.625rem;
  font-family: var(--font-mono);
  color: #94A3B8;
}

.agent-progress-line {
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin-top: 0.65rem;
  overflow: hidden;
}

.line-fill {
  height: 100%;
  animation: progress-slide 3s infinite ease-in-out;
}
.fill-green { background: #10B981; }
.fill-blue { background: #0284C7; }
.fill-cyan { background: #06B6D4; }

/* Col 2: Chat Stream */
.dark-chat-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chat-bubble-stream {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1 1 0%;
  max-height: 400px;
  overflow-y: auto;
  padding: 0.25rem 0.25rem 0.5rem 0;
  scroll-behavior: smooth;
}

.chat-bubble-stream::-webkit-scrollbar {
  width: 4px;
}
.chat-bubble-stream::-webkit-scrollbar-track {
  background: transparent;
}
.chat-bubble-stream::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.25);
  border-radius: 4px;
}

.d-msg {
  padding: 0.75rem 0.95rem;
  border-radius: 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  animation: msg-slide-in 0.35s ease-out;
}

.d-msg p {
  color: #FFFFFF !important;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0.15rem 0;
}

.d-msg.customer {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  align-self: flex-start;
  max-width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.d-msg.customer p {
  color: #F8FAFC !important;
}

.d-msg.customer .d-sender {
  color: #93C5FD !important;
  font-weight: 700;
}

.d-msg.ai {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.26) 0%, rgba(124, 58, 237, 0.22) 100%);
  border: 1.5px solid rgba(129, 140, 248, 0.45);
  align-self: flex-end;
  max-width: 92%;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.22);
}

.d-msg.ai p {
  color: #FFFFFF !important;
}

.d-sender {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #94A3B8;
  margin-bottom: 0.2rem;
}

.d-msg.ai .d-sender {
  color: #A5B4FC !important;
}

.d-time {
  display: block;
  font-size: 0.625rem;
  color: #94A3B8 !important;
  text-align: right;
  margin-top: 0.25rem;
}

.d-chat-input-mock {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.d-input-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
  animation: pulse-ring 1.5s infinite;
}

.d-input-txt {
  font-size: 0.75rem;
  color: #E2E8F0 !important;
  font-weight: 500;
}

/* Col 3: Meta & Conversion */
.dark-meta-col {
  justify-content: space-between;
  gap: 0.85rem;
}

.bg-emerald-glow {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34D399;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.dark-apt-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 95, 70, 0.25) 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  border-radius: 0.85rem;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
  transition: all var(--tr-normal);
}

.dark-apt-box.highlight-pulse {
  animation: apt-glow 1.5s infinite alternate;
}

.d-apt-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.d-apt-icon {
  font-size: 1.5rem;
}

.d-apt-details strong {
  display: block;
  font-size: 0.85rem;
  color: #34D399;
}

.d-apt-time {
  font-size: 0.875rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.15rem 0;
}

.d-apt-desc {
  font-size: 0.6875rem;
  color: #A7F3D0;
}

.dark-score-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.d-score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.6rem 0.8rem;
  border-radius: 0.6rem;
  font-size: 0.75rem;
}

.d-score-row.highlight-gauge {
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.25);
}

.ds-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score-glow {
  color: #34D399;
  font-weight: 800;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.score-bar-bg {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366F1 0%, #10B981 100%);
  border-radius: 9999px;
  transition: width 0.8s ease-in-out;
}

.ds-label {
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ds-val {
  font-weight: 700;
  color: #F8FAFC;
}

.d-revenue-pill {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 0.75rem;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.d-rev-icon {
  font-size: 1.35rem;
}

.d-revenue-pill strong {
  display: block;
  font-size: 0.85rem;
  color: #FCD34D;
}

.d-revenue-pill p {
  font-size: 0.6875rem;
  color: #94A3B8;
}

/* Animations */
@keyframes msg-slide-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes progress-slide {
  0% { width: 10%; margin-left: 0; }
  50% { width: 60%; margin-left: 20%; }
  100% { width: 10%; margin-left: 90%; }
}

@keyframes apt-glow {
  from { box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2); }
  to { box-shadow: 0 4px 24px rgba(16, 185, 129, 0.45); }
}

/* ==========================================================================
   BUILT FOR YOUR INDUSTRY (WORKFLOW VISUALIZATION)
   ========================================================================== */
.industry-interactive-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}

.industry-tab-list {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.ind-tab {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--tr-fast);
}

.ind-tab:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

.ind-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.industry-flow-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: var(--shadow-sm);
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.flow-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-xs);
}

.bg-blue { background: #1877F2; }
.bg-green { background: #25D366; }
.bg-purple { background: #7C3AED; }
.bg-indigo { background: #6366F1; }
.bg-emerald { background: #10B981; }

.flow-lbl {
  font-size: 0.78125rem;
  font-weight: 700;
  color: var(--text-main);
}

.flow-arrow {
  font-size: 1.25rem;
  color: #CBD5E1;
  font-weight: 700;
}

/* ==========================================================================
   REVENUE CALCULATOR & TESTIMONIAL GRID
   ========================================================================== */
.calc-testimonial-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.calc-box-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.calc-card-title {
  font-size: 1.5rem;
  margin: 0.5rem 0 1.75rem;
}

.calc-sliders-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.c-slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c-slider-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.c-slider-num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
}

.c-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #E2E8F0;
  outline: none;
  cursor: pointer;
}

.c-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(99, 102, 241, 0.4);
}

.calc-results-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.res-sub-box {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1rem;
}

.res-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
}

.res-val-big {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0.2rem 0;
}

.res-money {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.potential-gain-banner {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gain-number {
  font-size: 1rem;
  font-weight: 800;
  color: #047857;
}

.gain-period {
  font-size: 0.75rem;
  font-weight: 600;
  color: #065F46;
}

/* Customer Success Testimonial */
.testimonial-box-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
  margin: 1.5rem 0;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.author-avatar {
  border-radius: 50%;
  object-fit: cover;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.author-info p {
  font-size: 0.78125rem;
  color: var(--text-muted);
}

.author-stars {
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

/* ==========================================================================
   FAQ SECTION (2-COLUMN GRID)
   ========================================================================== */
.faq-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--tr-fast);
}

.faq-card.active {
  border-color: #CBD5E1;
}

.faq-head {
  width: 100%;
  padding: 1.15rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.faq-arrow {
  color: var(--text-muted);
  transition: transform var(--tr-normal);
  flex-shrink: 0;
}

.faq-card.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-normal);
}

.faq-card.active .faq-body {
  max-height: 200px;
}

.faq-body p {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   PREFOOTER DARK CTA BANNER
   ========================================================================== */
.prefooter-cta-section {
  padding: 3rem 0 5rem;
}

.cta-gradient-box {
  background: #0B0F19;
  background-image: radial-gradient(circle at 100% 50%, rgba(99, 102, 241, 0.25), transparent 50%);
  border-radius: 1.75rem;
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-card);
}

.cta-left-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cta-sparkle-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.cta-main-title {
  color: #FFFFFF;
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.cta-sub-title {
  color: #94A3B8;
  font-size: 0.95rem;
}

.cta-right-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-btn-pair {
  display: flex;
  gap: 0.85rem;
}

.cta-trust-checks {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #94A3B8;
}

.cta-trust-checks span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.f-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.75rem 0 1.25rem;
  max-width: 280px;
}

.f-social-icons {
  display: flex;
  gap: 0.65rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr-fast);
}

.social-icon:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.f-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.f-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.f-col a {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.f-col a:hover {
  color: var(--primary);
}

.footer-bottom-line {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes wave-bounce {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-container-2col { grid-template-columns: 1fr; }
  .bento-modern-grid { grid-template-columns: 1fr; }
  .bento-mod-span-2 { grid-column: span 1; }
  .bento-mod-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .dark-bento-grid { grid-template-columns: 1fr; }
  .calc-testimonial-grid { grid-template-columns: 1fr; }
  .cta-gradient-box { flex-direction: column; text-align: center; }
  .cta-left-content { flex-direction: column; text-align: center; }
  .cta-btn-pair { justify-content: center; }
  .cta-trust-checks { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav, #login-btn { display: none; }
  .mobile-toggle { display: flex; }
  .hero-headline { font-size: 2.5rem; }
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .bento-mod-card { padding: 1.5rem; }
  .industry-flow-box { flex-direction: column; gap: 1rem; }
  .flow-arrow { transform: rotate(90deg); }
  .faq-2col-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .dark-bento-container { padding: 2rem 1.25rem; }
  .scenario-chips-row { flex-wrap: wrap; }
}

/* ==========================================================================
   SIMPLE CONTENT PAGES (About, etc.)
   ========================================================================== */
.prose-narrow {
  max-width: 680px;
  margin: 0 auto;
}

.prose-narrow h2 {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin: 2.5rem 0 1rem;
}

.prose-narrow p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
