/* ==========================================================================
   1ST AUTOMATE - STYLESHEET
   Brand Colors: Coral Red (#F05365), Dark Charcoal (#0D0F12), Soft White (#F8FAFC)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* Brand Color Palette */
  --coral-primary: #F05365;
  --coral-hover: #E04355;
  --coral-glow: rgba(240, 83, 101, 0.35);
  --coral-light: rgba(240, 83, 101, 0.1);
  --coral-text: #F05365;
  
  --dark-bg: #0B0D10;
  --dark-surface: #12151B;
  --dark-card: #181C24;
  --dark-card-hover: #1F242F;
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-border-glow: rgba(240, 83, 101, 0.3);
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dark: #1E293B;
  
  --charcoal-logo: #1F1F1F;
  --cyan-accent: #38BDF8;
  --green-success: #10B981;
  
  /* Layout & Spacing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(240, 83, 101, 0.25);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Variables Overrides */
[data-theme="light"] {
  --coral-text: #C82338; /* WCAG AA 5.64:1 contrast on #FAFAFC */
  --dark-bg: #FAFAFC;
  --dark-surface: #F1F5F9;
  --dark-card: #FFFFFF;
  --dark-card-hover: #F8FAFC;
  --dark-border: rgba(0, 0, 0, 0.08);
  --dark-border-glow: rgba(240, 83, 101, 0.25);
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-dark: #1E293B;

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 8px 30px rgba(240, 83, 101, 0.12);
}

[data-theme="light"] .text-coral {
  color: var(--coral-text);
}

[data-theme="light"] .section-tag {
  color: var(--coral-text);
  border-color: rgba(200, 35, 56, 0.25);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(250, 250, 252, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .chat-bubble.user {
  background: rgba(0, 0, 0, 0.05);
  color: #0F172A;
}

[data-theme="light"] .floating-logo-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .cta-banner {
  background: linear-gradient(135deg, rgba(240, 83, 101, 0.08) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-color: rgba(240, 83, 101, 0.2);
}

[data-theme="light"] .footer {
  background: #F1F5F9;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .modal-content {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .form-group input, 
[data-theme="light"] .form-group select, 
[data-theme="light"] .chat-input-bar input,
[data-theme="light"] .floating-chat-footer input,
[data-theme="light"] .premium-input-field {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: #0F172A !important;
}

[data-theme="light"] .premium-input-field.select-field {
  background-color: #FFFFFF !important;
  color: #0F172A !important;
}

[data-theme="light"] .premium-input-field.select-field option {
  background-color: #FFFFFF !important;
  color: #0F172A !important;
}

[data-theme="light"] .premium-input-field.select-field option:disabled {
  color: #94A3B8 !important;
}

[data-theme="light"] .premium-input-field.select-field option:hover,
[data-theme="light"] .premium-input-field.select-field option:focus,
[data-theme="light"] .premium-input-field.select-field option:checked {
  background-color: var(--coral-primary) !important;
  color: #FFFFFF !important;
}

[data-theme="light"] .marquee-badge {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  color: #0F172A;
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--dark-border);
  color: var(--text-main);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

[data-theme="light"] .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #0F172A;
}

.theme-toggle-btn:hover {
  transform: scale(1.08);
  border-color: var(--coral-primary);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: var(--dark-bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   WCAG 2.2 AA - ACCESSIBILITY ENHANCEMENTS
   Skip Link, Global Focus Visible, Touch Targets, Accessible Text Tokens
   ========================================================================== */

/* 1. Skip to Main Content Link (WCAG 2.4.1 Bypass Blocks) */
.skip-link {
  position: absolute;
  top: -120px;
  left: 20px;
  background: var(--coral-primary, #F05365);
  color: #FFFFFF !important;
  padding: 12px 24px;
  border-radius: var(--radius-sm, 8px);
  font-weight: 700;
  font-size: 1rem;
  z-index: 100000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(240, 83, 101, 0.4);
  transition: top 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: 2px solid #FFFFFF;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
  outline: 3px solid #FFFFFF !important;
  outline-offset: 2px !important;
}

/* 2. Universal Visible Focus States (WCAG 2.4.7 & 2.4.11) */
:focus-visible {
  outline: 2px solid var(--coral-primary, #F05365) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 4px rgba(240, 83, 101, 0.35) !important;
}

/* Accessible focus for form inputs and selects */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--coral-primary, #F05365) !important;
  outline-offset: 1px !important;
  border-color: var(--coral-primary, #F05365) !important;
}

/* 3. WCAG 2.2 SC 2.5.8 Target Size (Minimum 24px, 44px on primary controls) */

.theme-switch-btn {
  min-width: 44px;
  min-height: 44px;
}

.modal-close,
.toast-close-btn,
.btn-notice-dismiss {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* 4. Audio Transcript Box for Voice Demonstrations (WCAG 1.2.1) */
.voice-transcript-box {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  text-align: left;
  display: none;
}

.voice-transcript-box.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

[data-theme="light"] .voice-transcript-box {
  background: #F8FAFC;
  border-color: rgba(0, 0, 0, 0.12);
  color: #0F172A;
}

/* 5. Reduced Motion Support (WCAG 2.2 SC 2.2.2 Pause, Stop, Hide) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .marquee-track,
  .brand-constellation-track,
  .caller-ripple-1,
  .caller-ripple-2,
  .toast-radar-ring,
  .ambient-glow,
  .bg-glow-orb {
    animation: none !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-coral {
  color: var(--coral-primary);
}

.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral-primary) 0%, #D83B4F 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px var(--coral-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 83, 101, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--dark-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
}

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

/* Brand Logo Vector Styling */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 32px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: none;
  transform: none;
}

.brand-logo-img:hover,
.brand-logo:hover .brand-logo-img {
  transform: none;
  opacity: 1;
  filter: none;
}

.logo-svg {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

/* Nav Dropdown Styling */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px 0;
  transition: var(--transition-fast);
  text-decoration: none;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
  color: var(--coral-primary);
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 350px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

[data-theme="light"] .dropdown-menu {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.dropdown-item:hover {
  background: rgba(240, 83, 101, 0.08);
}

[data-theme="light"] .dropdown-item:hover {
  background: rgba(240, 83, 101, 0.06);
}

.dropdown-icon {
  font-size: 1.25rem;
  line-height: 1;
  padding-top: 2px;
}

.dropdown-text {
  display: flex;
  flex-direction: column;
}

.dropdown-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.3;
}

.dropdown-item:hover .dropdown-text strong {
  color: var(--coral-primary);
}

.dropdown-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 2px 0 0 0;
  line-height: 1.3;
}

.dropdown-divider {
  height: 1px;
  background: var(--dark-border);
  margin: 8px 0;
}

[data-theme="light"] .dropdown-divider {
  background: rgba(0, 0, 0, 0.08);
}

.dropdown-view-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--coral-primary);
  background: rgba(240, 83, 101, 0.06);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-view-all:hover {
  background: var(--coral-primary);
  color: #FFFFFF;
}

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

/* Animated Interactive Theme Switcher Toggle (Light/Dark) */
.theme-switch-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease;
}

.theme-switch-btn:hover {
  transform: scale(1.06);
}

.theme-switch-btn:active {
  transform: scale(0.96);
}

.switch-track {
  width: 62px;
  height: 32px;
  background: linear-gradient(135deg, #090d16 0%, #171e2e 100%);
  border-radius: 32px;
  padding: 3px;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6), 0 0 12px rgba(15, 23, 42, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

/* Light mode ON track background */
[data-theme="light"] .switch-track {
  background: linear-gradient(135deg, #fce7f3 0%, #fed7aa 50%, #bae6fd 100%);
  border-color: rgba(244, 63, 94, 0.35);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 15px rgba(251, 113, 133, 0.35);
}

/* Night Stars for Dark Mode (OFF) */
.switch-stars {
  position: absolute;
  right: 9px;
  display: flex;
  gap: 3px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.star {
  font-size: 9px;
  color: #facc15;
  line-height: 1;
  display: inline-block;
  animation: starPulse 2s infinite ease-in-out alternate;
}

.star-2 { animation-delay: 0.6s; font-size: 7px; opacity: 0.8; }
.star-3 { animation-delay: 1.2s; font-size: 8px; opacity: 0.9; }

[data-theme="light"] .switch-stars {
  opacity: 0;
  transform: translateY(-10px);
}

/* Day Clouds for Light Mode (ON) */
.switch-clouds {
  position: absolute;
  left: 9px;
  display: flex;
  gap: 2px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.cloud {
  display: inline-block;
  background: #ffffff;
  border-radius: 8px;
  height: 6px;
  width: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.cloud-2 {
  width: 8px;
  height: 5px;
  opacity: 0.85;
}

[data-theme="light"] .switch-clouds {
  opacity: 1;
  transform: translateY(0);
}

/* Moving Thumb/Knob */
.switch-thumb {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), 0 0 2px rgba(0,0,0,0.3);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  z-index: 2;
  transform: translateX(0); /* Left = OFF = Dark Mode */
}

[data-theme="light"] .switch-thumb {
  transform: translateX(30px); /* Right = ON = Light Mode */
  background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
  box-shadow: 0 3px 10px rgba(244, 63, 94, 0.35), 0 0 6px rgba(251, 146, 60, 0.4);
}

/* Icons inside Thumb */
.icon-moon, .icon-sun {
  font-size: 14px;
  line-height: 1;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  user-select: none;
}

.icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.icon-sun {
  opacity: 0;
  transform: scale(0.3) rotate(-120deg);
}

[data-theme="light"] .icon-moon {
  opacity: 0;
  transform: scale(0.3) rotate(120deg);
}

[data-theme="light"] .icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

@keyframes starPulse {
  0% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.15); }
}

/* Mobile Navigation Hamburger Toggle Button */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.15));
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  position: relative;
  z-index: 1001;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

[data-theme="light"] .mobile-toggle {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.15);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: #0F172A; /* Crisp solid fallback */
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  pointer-events: none;
}

[data-theme="dark"] .mobile-toggle span {
  background-color: #F8FAFC !important;
}

[data-theme="light"] .mobile-toggle span {
  background-color: #0F172A !important;
}

/* Open / Active State transforms into an 'X' */
.mobile-toggle.active {
  gap: 0 !important;
}
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(2.5px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
  height: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-2.5px) rotate(-45deg);
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: flex !important;
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

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

.hero-glow-1 {
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(240, 83, 101, 0.18);
}

.hero-glow-2 {
  top: 300px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: rgba(56, 189, 248, 0.12);
}

/* Centered Hero Layout with Floating Integration Badges Flank (Reference Design) */
.hero-centered-layout {
  position: relative;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  z-index: 10;
}

.hero-centered-layout .hero-badge {
  margin-bottom: 24px;
}

.hero-centered-layout .hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-centered-layout .hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-centered-layout .hero-actions {
  justify-content: center;
  margin-bottom: 48px;
}

.hero-centered-layout .hero-stats-row {
  justify-content: center;
  gap: 56px;
  border-top: 1px solid var(--dark-border);
  padding-top: 36px;
  margin-top: 12px;
}

/* Floating Logo Flanks Container */
.flank-left, .flank-right {
  position: absolute;
  top: 140px;
  width: 260px;
  height: 480px;
  pointer-events: auto;
  z-index: 2;
}

.flank-left {
  left: 10px;
}

.flank-right {
  right: 10px;
}

/* Individual Floating 3D Logo Card */
.floating-logo-card {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(18, 21, 27, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(240, 83, 101, 0.12);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  animation: floatLevitate 5s ease-in-out infinite alternate;
  cursor: pointer;
}

.floating-logo-card:hover {
  transform: scale(1.22) translateY(-8px) !important;
  border-color: var(--coral-primary);
  box-shadow: 0 18px 40px rgba(240, 83, 101, 0.45);
  z-index: 50;
}

.floating-logo-card svg, .floating-logo-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.floating-logo-card .card-tooltip {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--text-main);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.floating-logo-card:hover .card-tooltip {
  opacity: 1;
}

@keyframes floatLevitate {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
  100% { transform: translateY(-4px) rotate(-1deg); }
}

/* Left Flank Logo Card Positions */
.pos-l1 { top: 10px; left: 30px; animation-delay: 0s; }
.pos-l2 { top: 100px; left: 160px; animation-delay: 0.8s; }
.pos-l3 { top: 190px; left: 10px; animation-delay: 1.6s; }
.pos-l4 { top: 280px; left: 150px; animation-delay: 2.4s; }
.pos-l5 { top: 370px; left: 40px; animation-delay: 3.2s; }
.pos-l6 { top: 430px; left: 170px; animation-delay: 1.2s; }

/* Right Flank Logo Card Positions */
.pos-r1 { top: 10px; right: 30px; animation-delay: 0.5s; }
.pos-r2 { top: 100px; right: 160px; animation-delay: 1.3s; }
.pos-r3 { top: 190px; right: 10px; animation-delay: 2.1s; }
.pos-r4 { top: 280px; right: 150px; animation-delay: 2.9s; }
.pos-r5 { top: 370px; right: 40px; animation-delay: 3.7s; }
.pos-r6 { top: 430px; right: 170px; animation-delay: 1.9s; }

@media (max-width: 1200px) {
  .flank-left, .flank-right {
    display: none;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(240, 83, 101, 0.1);
  border: 1px solid rgba(240, 83, 101, 0.25);
  color: var(--coral-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-primary);
  box-shadow: 0 0 10px var(--coral-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(240, 83, 101, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(240, 83, 101, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(240, 83, 101, 0); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
}

.stat-item h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
}

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

/* Hero Live AI Architecture Flow Panel (Robok + GrowwStacks Hybrid) */
.hero-visual {
  position: relative;
}

.architecture-panel {
  background: rgba(18, 21, 27, 0.85);
  border: 1px solid var(--dark-border-glow);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

.arch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
}

.arch-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.arch-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-success);
  box-shadow: 0 0 12px var(--green-success);
  animation: pulse 2s infinite;
}

.arch-powered-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(240, 83, 101, 0.12);
  border: 1px solid rgba(240, 83, 101, 0.25);
  color: var(--coral-primary);
}

.arch-flow-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arch-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  transition: var(--transition-smooth);
}

.arch-node.active {
  background: rgba(240, 83, 101, 0.12);
  border-color: var(--coral-primary);
  box-shadow: 0 0 20px rgba(240, 83, 101, 0.2);
  transform: translateX(4px);
}

.arch-node-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.arch-node.active .arch-node-icon {
  background: var(--coral-primary);
  color: #FFFFFF;
}

.arch-node-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.arch-node-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: monospace;
}

.arch-node-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  color: var(--green-success);
  display: none;
}

.arch-node.active .arch-node-badge {
  display: inline-block;
}

.arch-connector {
  width: 2px;
  height: 10px;
  background: var(--dark-border);
  margin-left: 36px;
  transition: var(--transition-fast);
}

.arch-connector.active {
  background: var(--coral-primary);
  box-shadow: 0 0 8px var(--coral-primary);
}

/* 2-Row Integrations Marquee Section (Exact Reference Layout) */
.partner-marquee-section {
  padding: 52px 0;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  overflow: hidden;
  position: relative;
}

.marquee-title-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.marquee-rows-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track-left {
  display: flex;
  gap: 16px;
  padding: 4px 0;
  animation: marqueeScrollLeft 38s linear infinite;
  white-space: nowrap;
}

.marquee-track-right {
  display: flex;
  gap: 16px;
  padding: 4px 0;
  animation: marqueeScrollRight 38s linear infinite;
  white-space: nowrap;
}

@keyframes marqueeScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.marquee-pill:hover {
  border-color: var(--coral-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 83, 101, 0.15);
}

.marquee-pill.pill-slack {
  border-color: rgba(224, 30, 90, 0.35);
  background: rgba(224, 30, 90, 0.03);
}

.marquee-pill svg, .marquee-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Floating 3D Levitating Integration Badges (Hero Flanks) */
.floating-logo-card {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--dark-card, #FFFFFF);
  border: 1px solid var(--dark-border, rgba(0,0,0,0.08));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 5;
}

.floating-logo-card:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 30px rgba(240, 83, 101, 0.2);
  border-color: var(--coral-primary);
}

.floating-logo-card svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* ==========================================================================
   LIVE COMMAND CENTER DASHBOARD SECTION (Post-Hero Showcase)
   ========================================================================== */
.dashboard-preview-section {
  padding: 60px 0 100px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

/* Hero-to-Dashboard Visual Energy Connector Beam */
.hero-dashboard-connection-line {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 90px;
  background: linear-gradient(180deg, rgba(240, 83, 101, 0.8) 0%, rgba(240, 83, 101, 0.05) 100%);
  z-index: 10;
  pointer-events: none;
}

.glowing-energy-pulse {
  width: 6px;
  height: 24px;
  background: var(--coral-primary);
  border-radius: 10px;
  position: absolute;
  left: -2px;
  box-shadow: 0 0 16px var(--coral-primary);
  animation: streamPulse 2s infinite ease-in-out;
}

@keyframes streamPulse {
  0% { top: 0%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* 3D Perspective Scroll Wrapper */
.dashboard-perspective-wrapper {
  perspective: 1400px;
  padding: 10px 0;
}

.dashboard-section-header {
  margin-bottom: 30px;
}

.dashboard-window {
  background: var(--dark-surface, #FFFFFF);
  border: 1px solid var(--dark-border, rgba(0,0,0,0.1));
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 30px rgba(240, 83, 101, 0.05);
  overflow: hidden;
  transform: none;
  transition: box-shadow 0.3s ease;
}

.dashboard-window:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(240, 83, 101, 0.1);
}

/* macOS Window Header Bar */
.dash-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--dark-card, #F8FAFC);
  border-bottom: 1px solid var(--dark-border, rgba(0,0,0,0.08));
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-theme="dark"] .dash-window-header {
  background: rgba(255, 255, 255, 0.03);
}

.window-controls {
  display: flex;
  gap: 8px;
}

.window-controls .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.window-controls .dot-red { background: #FF5F56; }
.window-controls .dot-yellow { background: #FFBD2E; }
.window-controls .dot-green { background: #27C93F; }

.window-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.2px;
}

.window-title svg {
  color: var(--coral-primary);
}

.window-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* KPI Top Grid */
.dash-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--dark-border, rgba(0,0,0,0.08));
}

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

@media (max-width: 576px) {
  .dash-kpi-grid {
    grid-template-columns: 1fr;
  }
}

.dash-kpi-card {
  background: var(--dark-card, #FFFFFF);
  border: 1px solid var(--dark-border, rgba(0,0,0,0.08));
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dash-kpi-card:hover {
  transform: translateY(-2px);
  border-color: var(--coral-primary);
}

.kpi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(240, 83, 101, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.kpi-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kpi-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kpi-value-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kpi-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.kpi-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}

.badge-green { background: rgba(16, 185, 129, 0.12); color: #10B981; }
.badge-blue { background: rgba(37, 99, 235, 0.12); color: #2563EB; }
.badge-purple { background: rgba(147, 51, 234, 0.12); color: #9333EA; }
.badge-accent { background: rgba(240, 83, 101, 0.12); color: var(--coral-primary); }

/* Main Body: Sidebar + Content */
.dash-main-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 380px;
}

@media (max-width: 768px) {
  .dash-main-body {
    grid-template-columns: 1fr;
  }
}

.dash-sidebar {
  padding: 20px 16px;
  border-right: 1px solid var(--dark-border, rgba(0,0,0,0.08));
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0, 0, 0, 0.015);
}

.dash-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: transparent;
  border: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.dash-nav-btn:hover {
  background: rgba(240, 83, 101, 0.08);
  color: var(--coral-primary);
}

.dash-nav-btn.active {
  background: var(--coral-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(240, 83, 101, 0.3);
}

.dash-content-area {
  padding: 24px;
  position: relative;
}

.dash-tab-pane {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.dash-tab-pane.active {
  display: block;
}

.pane-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dark-border, rgba(0,0,0,0.06));
}

.pane-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.live-indicator {
  font-size: 0.78rem;
  font-weight: 600;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-ring {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #10B981;
}

/* Activity Feed List */
.activity-feed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 6px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--dark-card, #FFFFFF);
  border: 1px solid var(--dark-border, rgba(0,0,0,0.08));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activity-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.act-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(240, 83, 101, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.act-body {
  flex: 1;
}

.act-title {
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

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

.act-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.act-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 12px;
}

/* Workflow Visualizer */
.workflow-visualizer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px 20px;
  background: var(--dark-card, #FFFFFF);
  border: 1px solid var(--dark-border, rgba(0,0,0,0.08));
  border-radius: 14px;
}

@media (max-width: 600px) {
  .workflow-visualizer {
    flex-direction: column;
    gap: 20px;
  }
}

.wf-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 28px;
  border-radius: 14px;
  background: rgba(240, 83, 101, 0.04);
  border: 1px solid rgba(240, 83, 101, 0.2);
  text-align: center;
}

.wf-node .wf-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.wf-node .wf-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.wf-node .wf-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.wf-connector {
  flex: 1;
  height: 2px;
  background: rgba(240, 83, 101, 0.3);
  position: relative;
  margin: 0 16px;
}

.pulse-line {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-primary);
  box-shadow: 0 0 10px var(--coral-primary);
  animation: movePulse 2.5s infinite linear;
}

@keyframes movePulse {
  0% { left: 0%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Chat Simulator Container (Interactive Tab 3) */
.sim-chat-container {
  background: var(--dark-card, #FFFFFF);
  border: 1px solid var(--dark-border, rgba(0,0,0,0.08));
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sim-suggested-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dark-border, rgba(0,0,0,0.06));
}

.chips-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-right: 4px;
}

.sim-chip-btn {
  background: rgba(240, 83, 101, 0.08);
  border: 1px solid rgba(240, 83, 101, 0.2);
  color: var(--coral-primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sim-chip-btn:hover {
  background: var(--coral-primary);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 83, 101, 0.25);
}

.sim-chat-messages {
  max-height: 250px;
  min-height: 180px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 6px;
}

.sim-msg {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  max-width: 82%;
  line-height: 1.45;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.msg-user {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-main);
  border: 1px solid var(--dark-border, rgba(0,0,0,0.08));
  border-bottom-left-radius: 2px;
}

.msg-ai {
  align-self: flex-end;
  background: var(--coral-primary);
  color: #FFFFFF;
  border-bottom-right-radius: 2px;
  box-shadow: 0 4px 14px rgba(240, 83, 101, 0.2);
}

.msg-ai strong, .msg-ai a {
  color: #FFFFFF;
}

.msg-cta-link {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  background: #FFFFFF;
  color: var(--coral-primary) !important;
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.msg-cta-link:hover {
  transform: translateY(-1px);
}

.msg-time {
  font-size: 0.68rem;
  opacity: 0.8;
  display: block;
  margin-top: 4px;
  text-align: right;
}

.sim-typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(240, 83, 101, 0.08);
  width: fit-content;
}

.sim-typing-indicator.hidden {
  display: none;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral-primary);
  animation: bounceDot 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounceDot {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.sim-chat-input-bar {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.sim-chat-input-bar input {
  flex: 1;
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid var(--dark-border, rgba(0,0,0,0.12));
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease;
}

.sim-chat-input-bar input:focus {
  border-color: var(--coral-primary);
  background: var(--dark-card, #FFFFFF);
}

/* Analytics Chart Mock */
.analytics-chart-mock {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
  height: 240px;
  background: var(--dark-card, #FFFFFF);
  border: 1px solid var(--dark-border, rgba(0,0,0,0.08));
  border-radius: 14px;
  padding: 30px;
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 100%;
  justify-content: flex-end;
}

.bar-fill {
  width: 90px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.78rem;
  text-align: center;
  transition: height 0.6s ease;
}

.bar-old {
  background: #94A3B8;
}

.bar-new {
  background: linear-gradient(180deg, #F05365 0%, #D93B4E 100%);
  box-shadow: 0 8px 24px rgba(240, 83, 101, 0.3);
}

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

.hero-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  backdrop-filter: blur(20px);
  position: relative;
}

.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 20px;
}

.card-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-success);
  box-shadow: 0 0 12px var(--green-success);
}

.card-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.hero-chat-snippet {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-bubble {
  max-width: 85%;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-bubble.user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.08);
  border-bottom-right-radius: 4px;
  color: var(--text-main);
}

.chat-bubble.ai {
  align-self: flex-start;
  background: rgba(240, 83, 101, 0.12);
  border: 1px solid rgba(240, 83, 101, 0.25);
  border-bottom-left-radius: 4px;
  color: var(--text-main);
}

.chat-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.booking-confirm-card {
  margin-top: 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.confirm-icon {
  font-size: 1.5rem;
  color: var(--green-success);
}

/* Floating Metrics Badges */
.floating-badge-1 {
  position: absolute;
  top: -20px;
  left: -25px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.floating-badge-2 {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.badge-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--coral-light);
  color: var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Section Shared */
.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  color: var(--coral-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

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

/* Interactive AI Demo Section */
.demo-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.industry-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.tab-btn.active {
  background: var(--coral-light);
  border-color: var(--coral-primary);
  color: var(--coral-primary);
  font-weight: 600;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Interactive Chat Box */
.demo-chat-box {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.chat-box-header {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-bot-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 700;
  font-size: 0.9rem;
}

.chat-box-body {
  height: 360px;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-prompts-bar {
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--dark-border);
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.prompt-chip {
  white-space: nowrap;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.prompt-chip:hover {
  background: rgba(240, 83, 101, 0.15);
  border-color: var(--coral-primary);
  color: var(--text-main);
}

.chat-input-bar {
  padding: 16px 20px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  gap: 12px;
}

.chat-input-bar input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
}

.chat-input-bar input:focus {
  border-color: var(--coral-primary);
}

.send-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coral-primary);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.send-btn:hover {
  transform: scale(1.05);
  background: var(--coral-hover);
}

/* Voice Demo Box */
.voice-demo-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.voice-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.voice-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--cyan-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.waveform-container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 24px 0;
}

.wave-bar {
  width: 4px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.waveform-container.playing .wave-bar {
  background: var(--coral-primary);
  animation: wave 1.2s infinite ease-in-out alternate;
}

.wave-bar:nth-child(2n) { animation-delay: 0.2s; }
.wave-bar:nth-child(3n) { animation-delay: 0.4s; }
.wave-bar:nth-child(4n) { animation-delay: 0.1s; }
.wave-bar:nth-child(5n) { animation-delay: 0.3s; }

@keyframes wave {
  0% { height: 8px; }
  100% { height: 48px; }
}

.voice-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voice-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.audio-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--dark-border);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.audio-play-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-voice-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  transition: all 0.25s ease;
  position: relative;
}

.btn-voice-live:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.55);
}

.voice-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--dark-border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.voice-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #10B981;
  font-weight: 600;
}

.voice-spec-pill .pulse-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
}

/* Services Section & Animated Border Hover Effect */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.four-col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .three-col-grid,
  .four-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animated Glowing Border Beam Hover Effect (Linear / SaaS Premium Style) */
.service-card,
.process-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  z-index: 1;
  overflow: hidden;
}

.service-card::before,
.process-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 65%,
    var(--coral-primary) 85%,
    var(--coral-primary) 95%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -2;
  animation: borderSpin 7s linear infinite;
}

.service-card::after,
.process-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  background: var(--dark-card);
  z-index: -1;
  transition: background 0.3s ease;
}

[data-theme="light"] .service-card,
[data-theme="light"] .process-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .service-card::after,
[data-theme="light"] .process-card::after {
  background: #FFFFFF !important;
}

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

.service-card:hover::before,
.process-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  border-color: transparent !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--coral-light);
  color: var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.service-list li svg {
  color: var(--coral-primary);
  flex-shrink: 0;
}

/* ROI Calculator Section */
.calculator-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ==========================================================================
   FAQ ACCORDION ENGINE (AEO / GEO Optimization & Smooth Expand)
   ========================================================================== */
.faq-accordion-wrapper,
.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark-card, #0F172A);
  border: 1px solid var(--dark-border, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-md, 16px);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .faq-item {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

.faq-item:hover {
  border-color: rgba(240, 83, 101, 0.3) !important;
  box-shadow: 0 8px 24px rgba(240, 83, 101, 0.08) !important;
}

.faq-item.active {
  border-color: var(--coral-primary, #F05365) !important;
  box-shadow: 0 8px 30px rgba(240, 83, 101, 0.12) !important;
}

.faq-question-btn {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main, #F8FAFC);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: color 0.25s ease;
}

[data-theme="light"] .faq-question-btn {
  color: #0F172A !important;
}

.faq-item.active .faq-question-btn {
  color: var(--coral-primary, #F05365) !important;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--coral-primary, #F05365);
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer-content {
  max-height: 800px;
  opacity: 1;
  padding: 0 28px 24px;
}

.faq-answer-content p {
  color: var(--text-muted, #94A3B8);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

[data-theme="light"] .faq-answer-content p {
  color: #475569 !important;
}

/* ==========================================================================
   ABOUT PAGE BRAND SECTIONS ("Who We Are?" & "Why We Are Better?")
   ========================================================================== */

.tag-glowing-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral-primary, #F05365);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(240, 83, 101, 0.08);
  border: 1px solid rgba(240, 83, 101, 0.25);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.glowing-dot-left,
.glowing-dot-right {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral-primary, #F05365);
  box-shadow: 0 0 10px var(--coral-primary, #F05365);
  display: inline-block;
}

.who-we-are-heading {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main, #F8FAFC);
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .who-we-are-heading {
    font-size: 2.2rem;
  }
}

.inline-glass-badge {
  display: inline-block;
  padding: 2px 16px;
  background: rgba(240, 83, 101, 0.15);
  border: 1px solid rgba(240, 83, 101, 0.35);
  border-radius: 40px;
  color: var(--coral-primary, #F05365);
  font-size: 0.9em;
  vertical-align: middle;
  box-shadow: inset 0 0 15px rgba(240, 83, 101, 0.2);
}

/* Why We Are Better Section */
.why-better-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(18, 22, 34, 0.4) 0%, rgba(11, 13, 16, 0.7) 100%);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

[data-theme="light"] .why-better-section {
  background: #F8FAFC !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.why-better-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 992px) {
  .why-better-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.why-better-sub {
  text-align: left;
  margin: 0 0 32px 0;
  max-width: 100%;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
}

[data-theme="light"] .why-better-sub {
  color: #334155 !important;
}

.why-better-pills-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .why-better-pills-2x2 {
    grid-template-columns: 1fr;
  }
}

.why-better-pill-card {
  background: var(--dark-card, #0F172A);
  border: 1px solid var(--dark-border, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="light"] .why-better-pill-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

.why-better-pill-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral-primary, #F05365) !important;
  box-shadow: 0 10px 28px rgba(240, 83, 101, 0.15) !important;
}

.why-better-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(240, 83, 101, 0.1);
  border: 1px solid rgba(240, 83, 101, 0.2);
  color: var(--coral-primary, #F05365);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-better-pill-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main, #F8FAFC);
  line-height: 1.35;
  margin: 0;
}

[data-theme="light"] .why-better-pill-text {
  color: #0F172A !important;
}

.why-better-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(240, 83, 101, 0.15);
}

[data-theme="light"] .why-better-image-card {
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08) !important;
}

.why-better-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-better-image-card:hover img {
  transform: scale(1.03);
}

.floating-stat-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(240, 83, 101, 0.3);
  backdrop-filter: blur(12px);
  padding: 14px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .floating-stat-badge {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(240, 83, 101, 0.35) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.floating-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--coral-primary, #F05365);
}

.floating-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #94A3B8;
  line-height: 1.3;
}

[data-theme="light"] .floating-stat-label {
  color: #334155 !important;
}

/* Mission & Vision Section */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

.mission-vision-card {
  background: var(--dark-card, #0F172A);
  border: 1px solid var(--dark-border, rgba(255, 255, 255, 0.08));
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

[data-theme="light"] .mission-vision-card {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04) !important;
}

.mission-vision-card:hover {
  transform: translateY(-6px);
  border-color: var(--coral-primary, #F05365) !important;
  box-shadow: 0 16px 40px rgba(240, 83, 101, 0.15) !important;
}

.mission-vision-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.mission-vision-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(240, 83, 101, 0.12);
  border: 1px solid rgba(240, 83, 101, 0.25);
  color: var(--coral-primary, #F05365);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-vision-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main, #F8FAFC);
  margin: 0;
}

[data-theme="light"] .mission-vision-title {
  color: #0F172A !important;
}

.mission-vision-desc {
  font-size: 1rem;
  color: var(--text-muted, #94A3B8);
  line-height: 1.65;
  margin-bottom: 24px;
}

[data-theme="light"] .mission-vision-desc {
  color: #475569 !important;
}

.mission-vision-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-vision-bullets li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main, #CBD5E1);
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="light"] .mission-vision-bullets li {
  color: #334155 !important;
}

.bullet-check-icon {
  color: var(--coral-primary, #F05365);
  flex-shrink: 0;
}

.calc-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.calc-value {
  color: var(--coral-primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.slider-input {
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 12px 0;
  transition: background 0.15s ease;
}

/* Chrome / Safari / Edge / Opera */
.slider-input::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 99px;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral-primary, #F05365);
  cursor: pointer;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 12px rgba(240, 83, 101, 0.6);
  margin-top: -7px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.18);
  box-shadow: 0 0 18px rgba(240, 83, 101, 0.9);
}

/* Firefox */
.slider-input::-moz-range-track {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
}

.slider-input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral-primary, #F05365);
  cursor: pointer;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 12px rgba(240, 83, 101, 0.6);
}

/* Light Mode Overrides for ROI Calculator Slider & Elements */
[data-theme="light"] .slider-input {
  background: #CBD5E1 !important;
  border: 1px solid #94A3B8;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .slider-input::-moz-range-track {
  background: #CBD5E1 !important;
  border: 1px solid #94A3B8;
}

[data-theme="light"] .calc-group label {
  color: #0F172A;
}

[data-theme="light"] .calc-results-box {
  background: #F8FAFC;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .result-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .result-card.highlight {
  background: rgba(240, 83, 101, 0.08);
  border: 1px solid rgba(240, 83, 101, 0.25);
}

[data-theme="light"] .calc-tip-box {
  background: #F8FAFC !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .calc-tip-box p {
  color: #475569 !important;
}

.calc-tip-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--dark-border);
}

.calc-results-box {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.result-card {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.result-card.highlight {
  background: rgba(240, 83, 101, 0.1);
  border: 1px solid rgba(240, 83, 101, 0.25);
}

.result-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.result-number {
  font-size: 2.2rem;
  font-weight: 800;
}

.result-number.loss {
  color: #EF4444;
}

.result-number.gain {
  color: var(--coral-primary);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}

.process-step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.process-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--coral-light);
  color: var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, rgba(240, 83, 101, 0.15) 0%, rgba(11, 13, 16, 0.9) 100%);
  border: 1px solid var(--dark-border-glow);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}

/* ==========================================================================
   HIGH-IMPACT BRAND FOOTER (SaaS Ultra-Premium Redesign)
   ========================================================================== */

.brand-footer-section {
  background: #030712 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .brand-footer-section {
  background: #030712 !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

/* Ambient Radial Glows */
.footer-ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.15;
}

.footer-ambient-glow.glow-left {
  top: -100px;
  left: -150px;
  background: var(--coral-primary, #F05365);
}

.footer-ambient-glow.glow-right {
  bottom: -100px;
  right: -150px;
  background: #3B82F6;
}

/* 5-Column Grid */
.brand-footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .brand-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .brand-footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand-col {
    grid-column: span 1;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand-logo .brand-logo-img {
  height: 36px;
  width: auto;
}

.footer-brand-bio {
  font-size: 0.9rem;
  color: #94A3B8 !important;
  line-height: 1.6;
  margin: 0;
  max-width: 340px;
}

.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

[data-theme="light"] .footer-social-icon {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #CBD5E1 !important;
}

.footer-social-icon:hover {
  background: var(--coral-primary) !important;
  border-color: var(--coral-primary) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(240, 83, 101, 0.35);
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #F8FAFC !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

[data-theme="light"] .footer-col-title {
  color: #F8FAFC !important;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  color: #94A3B8 !important;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

[data-theme="light"] .footer-nav-list a {
  color: #94A3B8 !important;
}

.footer-nav-list a:hover {
  color: var(--coral-primary) !important;
  transform: translateX(4px);
}

/* Bottom Bar */
.footer-bottom-bar {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

[data-theme="light"] .footer-bottom-bar {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.footer-copyright-text {
  font-size: 0.85rem;
  color: #64748B !important;
}

[data-theme="light"] .footer-copyright-text {
  color: #64748B !important;
}

.footer-trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badge-item {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94A3B8 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

[data-theme="light"] .trust-badge-item {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  color: #94A3B8 !important;
}

/* Booking Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.modal-content {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-main);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--coral-primary);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats-row {
    justify-content: center;
  }
  .demo-grid, .calculator-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-badge-1, .floating-badge-2 {
    display: none;
  }
}

/* Floating Homepage Chat Widget */
.floating-chat-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
}

.floating-chat-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-primary) 0%, #D83B4F 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(240, 83, 101, 0.45);
  transition: var(--transition-smooth);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-chat-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(240, 83, 101, 0.6);
}

.trigger-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--green-success);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark-bg);
  box-shadow: 0 0 8px var(--green-success);
}

.floating-chat-window {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 380px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition-smooth);
  backdrop-filter: blur(20px);
}

.floating-chat-window.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-chat-header {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-close-btn {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

.floating-chat-body {
  height: 300px;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-chat-prompts {
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--dark-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 120px;
  overflow-y: auto;
}

.floating-prompt-btn {
  text-align: left;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.floating-prompt-btn:hover {
  background: rgba(240, 83, 101, 0.15);
  border-color: var(--coral-primary);
  color: var(--text-main);
}

.floating-chat-footer {
  padding: 12px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  gap: 8px;
  background: var(--dark-surface);
}

.floating-chat-footer input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  color: var(--text-main);
  font-size: 0.85rem;
  outline: none;
}

.floating-chat-footer input:focus {
  border-color: var(--coral-primary);
}

.floating-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coral-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.floating-send-btn:hover {
  background: var(--coral-hover);
}

@media (max-width: 480px) {
  .floating-chat-window {
    width: calc(100vw - 32px);
    right: -12px;
    bottom: 70px;
  }
}

/* FAQ & Direct Answer Engine (AEO / GEO) Accordion Styling */
.faq-section {
  padding: 80px 0;
}

.faq-accordion-wrapper {
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(240, 83, 101, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question-btn {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question-btn:hover {
  color: var(--coral-primary);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--coral-primary);
  line-height: 1;
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer-content {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer-content p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.faq-answer-content strong {
  color: var(--text-main);
  font-weight: 600;
}

/* ==========================================================================
   ALL FEATURES IN ONE - CENTRAL HUB SECTION (Exact Reference Match)
   ========================================================================== */
.features-hub-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features-hub-diagram {
  position: relative;
  max-width: 1140px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 340px 1fr 340px;
  align-items: center;
  gap: 40px;
}

/* Vector Circuit SVG Lines Overlay */
.hub-connector-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.circuit-path {
  transition: stroke-dashoffset 2s ease;
  opacity: 0.8;
}

/* Feature Cards Column */
.hub-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.hub-feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

[data-theme="dark"] .hub-feature-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.hub-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(240, 83, 101, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: rgba(240, 83, 101, 0.35);
}

/* Top Dark Square Icon Badge */
.hub-card-icon {
  width: 44px;
  height: 44px;
  background: #18181b;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hub-feature-card:hover .hub-card-icon {
  transform: scale(1.08) rotate(-3deg);
  background: var(--coral-primary);
}

.hub-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.3;
}

.hub-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Central Red/Coral Glowing Hub Badge */
.hub-center-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  margin: 0 auto;
}

.hub-glow-effect {
  position: absolute;
  width: 180px;
  height: 120px;
  background: radial-gradient(circle, rgba(240, 83, 101, 0.65) 0%, rgba(240, 83, 101, 0) 70%);
  filter: blur(25px);
  z-index: -1;
  animation: hubPulse 3s infinite ease-in-out alternate;
}

.hub-badge-inner {
  width: 140px;
  height: 100px;
  background: linear-gradient(135deg, #FF455B 0%, #E01E37 100%);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 16px 40px rgba(240, 83, 101, 0.45), 0 0 20px rgba(240, 83, 101, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.4s ease;
}

.hub-badge-inner:hover {
  transform: scale(1.05);
}

.hub-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.2px;
}

@keyframes hubPulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0.85; }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .features-hub-diagram {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hub-connector-lines {
    display: none;
  }
  .hub-center-badge {
    order: -1;
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   UNIFIED AI AUTOMATION PLATFORM SECTION
   ========================================================================== */
.unified-platform-section {
  position: relative;
  background: var(--dark-bg);
  padding: 110px 0 90px 0;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.unified-header {
  max-width: 800px;
  margin: 0 auto 55px auto;
}

.unified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  background: rgba(240, 83, 101, 0.08);
  border: 1px solid rgba(240, 83, 101, 0.3);
  color: #F05365;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.badge-pulse-coral {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F05365;
  box-shadow: 0 0 10px #F05365;
  animation: pulseGlow 2s infinite alternate;
}

.unified-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.unified-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}

/* Stage Layout */
.unified-flow-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

/* TOP LAYER: 8 Incoming Channels Grid */
.incoming-channels-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 1140px;
  z-index: 5;
}

.channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 8px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: var(--transition-fast);
  cursor: pointer;
}

.channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 83, 101, 0.4);
  box-shadow: 0 8px 24px rgba(240, 83, 101, 0.2);
  background: var(--dark-card-hover);
}

.channel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.channel-card:hover .channel-icon {
  transform: scale(1.1);
  background: rgba(240, 83, 101, 0.15);
}

.channel-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  white-space: nowrap;
}

/* MIDDLE LAYER: SVG Wires & Core Node */
.neural-convergence-wrapper {
  position: relative;
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -10px;
}

.neural-convergence-svg {
  width: 100%;
  height: auto;
  max-height: 220px;
}

.pulse-line {
  animation: pulseFlow 3s linear infinite;
}
.pulse-in-1 { animation-delay: 0s; }
.pulse-in-2 { animation-delay: 0.4s; }
.pulse-in-3 { animation-delay: 0.8s; }
.pulse-in-4 { animation-delay: 0.2s; }
.pulse-in-5 { animation-delay: 0.6s; }
.pulse-in-6 { animation-delay: 1.0s; }
.pulse-in-7 { animation-delay: 0.3s; }
.pulse-in-8 { animation-delay: 0.7s; }

@keyframes pulseFlow {
  0% { stroke-dashoffset: 180; }
  100% { stroke-dashoffset: -180; }
}

/* Central 1st Automate Core Node */
.unified-core-node {
  position: relative;
  margin-top: -45px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.core-emblem-box {
  width: 80px;
  height: 80px;
  background: var(--dark-card);
  border: 2px solid #F05365;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(240, 83, 101, 0.4), inset 0 0 20px rgba(240, 83, 101, 0.15);
  z-index: 2;
  padding: 14px;
}

.core-emblem-svg {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ring-coral-1 { width: 96px; height: 96px; animation-delay: 0s; }
.ring-coral-2 { width: 118px; height: 118px; animation-delay: 1s; }
.ring-coral-3 { width: 140px; height: 140px; animation-delay: 2s; }

.core-ripple-ring {
  position: absolute;
  border-radius: 28px;
  border: 1.5px solid rgba(240, 83, 101, 0.35);
  animation: coreRippleCoral 3s ease-out infinite;
  pointer-events: none;
}

@keyframes coreRippleCoral {
  0% { transform: scale(0.9); opacity: 0.85; border-color: rgba(240, 83, 101, 0.6); }
  100% { transform: scale(1.38); opacity: 0; border-color: rgba(240, 83, 101, 0); }
}

/* Outbound Wires Wrapper */
.neural-divergence-wrapper {
  position: relative;
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -35px;
}

.neural-divergence-svg {
  width: 100%;
  height: auto;
  max-height: 160px;
}

.pulse-out-1 { animation-delay: 0.1s; }
.pulse-out-2 { animation-delay: 0.5s; }
.pulse-out-3 { animation-delay: 0.9s; }
.pulse-out-4 { animation-delay: 0.3s; }
.pulse-out-5 { animation-delay: 0.7s; }
.pulse-out-6 { animation-delay: 0.2s; }
.pulse-out-7 { animation-delay: 0.6s; }

/* BOTTOM LAYER: 7 Outgoing Actions Grid */
.outgoing-actions-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 1140px;
  margin-top: -15px;
  z-index: 5;
}

.action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 10px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: var(--transition-fast);
  cursor: pointer;
}

.action-card.card-accent-coral {
  border-color: rgba(240, 83, 101, 0.4);
  background: rgba(240, 83, 101, 0.08);
  box-shadow: 0 0 25px rgba(240, 83, 101, 0.15);
}

.action-card:hover {
  transform: translateY(-4px);
  border-color: #F05365;
  box-shadow: 0 8px 25px rgba(240, 83, 101, 0.25);
  background: var(--dark-card-hover);
}

.action-badge-icon {
  font-size: 1.5rem;
  margin-bottom: 2px;
}

.action-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.action-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .incoming-channels-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .outgoing-actions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .neural-convergence-wrapper, .neural-divergence-wrapper {
    display: none;
  }
  .unified-core-node {
    margin: 30px 0;
  }
}

@media (max-width: 640px) {
  .incoming-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .outgoing-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .unified-title {
    font-size: 2.1rem;
  }
}

/* ==========================================================================
   INNOVATIVE AI SERVICES / WHAT WE DO SECTION
   ========================================================================== */
.what-we-do-section {
  position: relative;
  background: var(--dark-bg);
  padding: 100px 0;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Orbital Card */
.orbital-hub-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 28px;
  padding: 40px 32px 32px 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hub-ambient-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(240, 83, 101, 0.12) 50%, transparent 80%);
  filter: blur(40px);
  pointer-events: none;
}

.orbital-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}

/* Arc Orbital Canvas Stage */
.orbital-stage {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.orbital-arcs-svg {
  width: 100%;
  height: 100%;
}

/* Central 1st Automate Core Node inside Arc Stage */
.arc-core-node {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.core-mini-box {
  width: 54px;
  height: 54px;
  background: var(--dark-card);
  border: 1.5px solid #F05365;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(240, 83, 101, 0.4), inset 0 0 12px rgba(240, 83, 101, 0.2);
  z-index: 2;
  padding: 10px;
}

.core-mini-svg {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.core-mini-ripple {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  border: 1px solid rgba(240, 83, 101, 0.4);
  animation: miniRipple 2.5s ease-out infinite;
  pointer-events: none;
}

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

/* Animated SVG Arc Pulses */
.arc-pulse-glow {
  animation: arcDashMove 3s linear infinite;
}

.arc-pulse-glow-rev {
  animation: arcDashMoveRev 4s linear infinite;
}

@keyframes arcDashMove {
  0% { stroke-dashoffset: 210; }
  100% { stroke-dashoffset: 0; }
}

@keyframes arcDashMoveRev {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 165; }
}

/* OUTER ARC RING TRACK (Radius = 170px, Diameter = 340px) */
.track-outer {
  position: absolute;
  left: 50%;
  top: 200px;
  width: 340px;
  height: 340px;
  margin-left: -170px;
  margin-top: -170px;
  border-radius: 50%;
  pointer-events: none;
  animation: rotateOuterRing 14s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

@keyframes rotateOuterRing {
  0% { transform: rotate(-7deg); }
  100% { transform: rotate(7deg); }
}

/* MIDDLE ARC RING TRACK (Radius = 125px, Diameter = 250px) */
.track-middle {
  position: absolute;
  left: 50%;
  top: 200px;
  width: 250px;
  height: 250px;
  margin-left: -125px;
  margin-top: -125px;
  border-radius: 50%;
  pointer-events: none;
  animation: rotateMiddleRing 11s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

@keyframes rotateMiddleRing {
  0% { transform: rotate(9deg); }
  100% { transform: rotate(-9deg); }
}

.orbit-badge {
  position: absolute;
  width: 42px;
  height: 42px;
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  margin-left: -21px;
  margin-top: -21px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.track-outer .orbit-badge {
  animation: counterRotateOuter 14s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.track-middle .orbit-badge {
  animation: counterRotateMiddle 11s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

@keyframes counterRotateOuter {
  0% { transform: rotate(7deg); }
  100% { transform: rotate(-7deg); }
}

@keyframes counterRotateMiddle {
  0% { transform: rotate(-9deg); }
  100% { transform: rotate(9deg); }
}

.orbit-badge:hover {
  transform: scale(1.35) !important;
  border-color: #F05365;
  box-shadow: 0 0 24px rgba(240, 83, 101, 0.6);
  z-index: 30;
}

/* 4 Logos Sitting DIRECTLY ON THE OUTER DASHED ARC (Radius = 170px) */
.track-outer .channel-pos-whatsapp  { left: 2.6px;   top: 140.5px; }
.track-outer .channel-pos-instagram { left: 98.2px;  top: 15.9px;  }
.track-outer .channel-pos-google    { left: 241.8px; top: 15.9px;  }
.track-outer .channel-pos-phone     { left: 337.4px; top: 140.5px; }

/* 3 Logos Sitting DIRECTLY ON THE MIDDLE SOLID ARC (Radius = 125px) */
.track-middle .channel-pos-messenger { left: 36.6px;  top: 36.6px;  }
.track-middle .channel-pos-webchat   { left: 125px;   top: 0px;     }
.track-middle .channel-pos-email     { left: 213.4px; top: 36.6px;  }


/* Bottom Chips Row */
.orbital-chips-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.orbit-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.chip-star {
  color: #F05365;
  font-size: 0.8rem;
}

/* Right Column Content */
.what-we-do-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(240, 83, 101, 0.08);
  border: 1px solid rgba(240, 83, 101, 0.25);
  color: #F05365;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.badge-sparkle {
  color: #F05365;
  font-size: 0.75rem;
}

.what-we-do-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.what-we-do-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
}

/* Checkmark Pills Grid */
.checkmark-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-fast);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.check-pill:hover {
  border-color: #F05365;
  background: rgba(240, 83, 101, 0.1);
  transform: translateY(-2px);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(240, 83, 101, 0.18);
  color: #F05365;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .what-we-do-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   LIGHT MODE OVERRIDES FOR ALL SECTIONS
   ========================================================================== */
[data-theme="light"] .unified-platform-section,
[data-theme="light"] .what-we-do-section {
  background: #F8FAFC;
}

[data-theme="light"] .channel-card,
[data-theme="light"] .action-card,
[data-theme="light"] .orbital-hub-card,
[data-theme="light"] .check-pill {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .channel-card:hover,
[data-theme="light"] .action-card:hover,
[data-theme="light"] .check-pill:hover {
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(240, 83, 101, 0.15);
}

[data-theme="light"] .channel-icon {
  background: #F1F5F9;
}

[data-theme="light"] .orbit-chip {
  background: #F1F5F9;
  border-color: rgba(0, 0, 0, 0.08);
  color: #475569;
}

[data-theme="light"] .orbit-badge {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .core-emblem-box,
[data-theme="light"] .core-mini-box {
  background: #FFFFFF;
}

/* ==========================================================================
   VERTICAL EXPANDABLE ACCORDION SECTION (Full-Width Segmented Divider Style)
   ========================================================================== */
.vertical-accordion-section {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.container-fullwidth {
  width: 100%;
  max-width: 100%;
  padding: 0; /* 0 side padding for true corner-to-corner full width */
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container-fullwidth {
    padding: 0;
  }
}

/* Asymmetric Section Header Matching Reference Design */
.header-asymmetric {
  max-width: 100%;
  margin: 0 0 60px 0;
  padding: 0 48px;
}

.header-row-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}

.header-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.header-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.01em;
  margin-right: 8px;
}

.status-dot-green {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 12px #10B981;
  display: inline-block;
}

/* Dark Iridescent Fluid Metallic Capsule Element */
.inline-fluid-capsule {
  width: 160px;
  height: 52px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  background: #0B0D10;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9), 0 4px 16px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.fluid-shimmer-wave {
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(240, 83, 101, 0.35) 25%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(240, 83, 101, 0.35) 75%,
    rgba(255, 255, 255, 0.05) 100%
  );
  animation: fluidWaveFlow 6s linear infinite;
  filter: blur(3px);
}

@keyframes fluidWaveFlow {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

.header-title-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.035em;
  margin: 0;
  line-height: 1.1;
}

.header-view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 24px;
  border-radius: 50px;
  background: var(--coral-primary);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(240, 83, 101, 0.35);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-view-more-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: #D83B4F;
  box-shadow: 0 12px 32px rgba(240, 83, 101, 0.5);
}

.header-view-more-btn .btn-arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #000000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
}

@media (max-width: 992px) {
  .header-asymmetric {
    padding: 0 24px;
  }
  .header-title-text {
    font-size: 2.5rem;
  }
  .inline-fluid-capsule {
    width: 120px;
    height: 44px;
  }
}

/* Full-Bleed Segmented Outer Block (Corner-to-Corner Full-Width) */
.accordion-segmented-block {
  width: 100%;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  border-left: none;
  border-right: none;
  border-radius: 0; /* Corner-to-corner full-bleed */
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.vertical-accordion-container {
  display: flex;
  height: 560px;
  gap: 0; /* NO GAPS - Seamless divider lines */
  width: 100%;
}

.accordion-column {
  flex: 0.8;
  background: transparent;
  border: none;
  border-right: 1px solid var(--dark-border); /* Continuous sleek divider line */
  border-radius: 0;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-color 0.3s ease;
}

.accordion-column:last-child {
  border-right: none; /* No right border on last column */
}

.accordion-column:hover,
.accordion-column.active {
  border-right-color: rgba(240, 83, 101, 0.35);
  background: rgba(240, 83, 101, 0.02);
}

.accordion-column.active {
  flex: 3.5;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02) 0%, rgba(240, 83, 101, 0.05) 100%);
}

/* Collapsed Title & Orientation */
.column-collapsed-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  transition: opacity 0.3s ease;
  height: 100%;
  justify-content: flex-end;
}

.accordion-column.active .column-collapsed-title {
  display: none;
}

.col-number {
  font-size: 1.1rem;
  color: var(--coral-primary);
  font-weight: 800;
}

/* Expanded Content Area */
.column-expanded-content {
  display: none;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

.accordion-column.active .column-expanded-content {
  display: flex;
  opacity: 1;
}

.column-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.col-expanded-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  letter-spacing: -0.02em;
}

.col-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(240, 83, 101, 0.4);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.col-action-btn:hover {
  transform: scale(1.12) rotate(45deg);
  background: #D83B4F;
  box-shadow: 0 6px 24px rgba(240, 83, 101, 0.6);
}

.col-expanded-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 24px;
}

/* Visual Image & Glass Cards Inside Expanded Column */
.col-expanded-visual {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.glass-feature-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: radial-gradient(circle at top left, rgba(240, 83, 101, 0.08) 0%, rgba(18, 21, 27, 0.9) 100%);
  width: 100%;
}

.glass-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--coral-primary);
}

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

.glass-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.time-slot-pill, .crm-stage-chip, .nurture-step {
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
}

.active-slot, .chip-lead {
  background: rgba(240, 83, 101, 0.15);
  border-color: rgba(240, 83, 101, 0.4);
  color: var(--coral-primary);
}

/* Bottom Bar */
.column-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
}

.accordion-column.active .column-bottom-bar {
  display: none;
}

.col-arrow-icon {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-column:hover .col-arrow-icon,
.accordion-column.active .col-arrow-icon {
  color: var(--coral-primary);
  transform: translate(2px, -2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .accordion-segmented-block {
    border-radius: 20px;
  }
  .vertical-accordion-container {
    flex-direction: column;
    height: auto;
  }
  .accordion-column {
    flex: 1 !important;
    height: auto;
    padding: 24px;
    border-right: none;
    border-bottom: 1px solid var(--dark-border);
  }
  .accordion-column:last-child {
    border-bottom: none;
  }
  .column-collapsed-title {
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 12px;
    height: auto;
  }
  .column-expanded-content {
    display: flex !important;
    opacity: 1 !important;
  }
}

/* Light mode overrides for full-width segmented divider accordion */
[data-theme="light"] .vertical-accordion-section {
  background: #F8FAFC;
}

[data-theme="light"] .accordion-segmented-block {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: none;
  border-right: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .accordion-column {
  border-right-color: rgba(0, 0, 0, 0.08);
  background: transparent;
}

[data-theme="light"] .accordion-column:hover,
[data-theme="light"] .accordion-column.active {
  background: linear-gradient(145deg, #FFFFFF 0%, rgba(240, 83, 101, 0.04) 100%);
  border-right-color: rgba(240, 83, 101, 0.3);
}

[data-theme="light"] .time-slot-pill,
[data-theme="light"] .crm-stage-chip,
[data-theme="light"] .nurture-step {
  background: #F1F5F9;
  border-color: rgba(0, 0, 0, 0.06);
  color: #334155;
}

/* ==========================================================================
   STICKY HORIZONTAL SCROLL PROJECTS SHOWCASE SECTION (Reference Layout Match)
   ========================================================================== */
/* ==========================================================================
   STICKY HORIZONTAL SCROLL PROJECTS SHOWCASE SECTION (Reference Layout Match)
   ========================================================================== */
.sticky-projects-section {
  height: 320vh; /* Extended track height for 5 project cards + CTA */
  position: relative;
  background: var(--dark-bg);
}

.sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 48px;
}

.projects-floating-header {
  position: relative;
  top: auto;
  left: auto;
  padding-left: 4vw;
  margin-bottom: 24px;
  z-index: 20;
}

.projects-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  letter-spacing: -0.03em;
}

.horizontal-project-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 4vw;
  width: max-content;
  will-change: transform;
  margin-top: 0;
}

/* Bigger Edge-Connected Project Cards */
a.project-card,
.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 680px;
  height: 480px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(240, 83, 101, 0.6);
  box-shadow: 0 28px 70px rgba(240, 83, 101, 0.25);
}

.project-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-bg-img {
  transform: scale(1.06);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(11, 13, 16, 0.96) 88%);
}

.project-card-badges {
  position: absolute;
  top: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.project-badge {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-white {
  background: #FFFFFF;
  color: #0F172A;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.badge-coral {
  background: var(--coral-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(240, 83, 101, 0.4);
}

.project-card-footer {
  position: absolute;
  bottom: 36px;
  left: 36px;
  right: 36px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.project-card-metric {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--coral-primary);
  letter-spacing: 0.5px;
}

.project-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

.project-card:hover .project-card-arrow {
  transform: translateX(4px);
}

/* End CTA Card: Explore More (Reference Image 2 Match) */
.project-cta-card {
  width: 580px;
  height: 480px;
  border-radius: 28px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-cta-card:hover {
  transform: translateY(-8px);
  border-color: var(--coral-primary);
}

.explore-more-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--coral-primary);
  letter-spacing: -0.03em;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.explore-more-link .explore-text {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

.explore-more-link .explore-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.explore-more-link:hover .explore-arrow {
  transform: rotate(45deg) scale(1.1);
  background: var(--coral-primary);
  color: #FFFFFF;
}

.projects-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral-primary);
  box-shadow: 0 0 10px var(--coral-primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
}

/* Light Mode Overrides for Sticky Projects Section */
[data-theme="light"] .sticky-projects-section {
  background: #FAFAFC;
}

[data-theme="light"] .project-card,
[data-theme="light"] .project-cta-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .project-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(15, 23, 42, 0.85) 90%);
}

[data-theme="light"] .explore-more-link .explore-arrow {
  background: #0F172A;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  /* Featured Case Studies: Mobile Horizontal Touch-Swipe Carousel (No Scroll-Stopping) */
  .sticky-projects-section {
    height: auto !important;
    min-height: unset !important;
    position: relative !important;
    padding: 60px 0 80px !important;
    overflow: hidden !important;
  }

  .sticky-viewport {
    position: static !important;
    height: auto !important;
    width: 100% !important;
    overflow: visible !important;
    padding-top: 0 !important;
    display: block !important;
  }

  .projects-floating-header {
    padding: 0 20px !important;
    margin-bottom: 20px !important;
  }

  .projects-section-title {
    font-size: 2rem !important;
  }

  .horizontal-project-strip {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 10px 20px 24px !important;
    width: auto !important;
    max-width: 100% !important;
    transform: none !important;
    scrollbar-width: none !important;
  }
  .horizontal-project-strip::-webkit-scrollbar {
    display: none !important;
  }

  a.project-card,
  .project-card {
    width: 84vw !important;
    max-width: 360px !important;
    height: 420px !important;
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
    border-radius: 22px !important;
  }

  .project-cta-card {
    width: 84vw !important;
    max-width: 360px !important;
    height: 420px !important;
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
    border-radius: 22px !important;
  }

  .project-card-title {
    font-size: 1.65rem !important;
  }

  .explore-more-link {
    font-size: 2rem;
  }

  .projects-scroll-indicator {
    display: none !important;
  }
}

/* ==========================================================================
   1. CONNECT YOUR FAVOURITE TOOLS SECTION (Reference Match 1)
   ========================================================================== */
.fav-tools-section {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.fav-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.fav-tools-left .section-tag {
  color: var(--coral-primary);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fav-tools-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.tools-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tools-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.tools-check-list li .check-icon {
  color: var(--coral-primary);
  font-weight: 800;
  font-size: 1.2rem;
}

.btn-build-ai {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border: 1px solid rgba(240, 83, 101, 0.4);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-build-ai:hover {
  transform: translateY(-3px);
  border-color: var(--coral-primary);
  box-shadow: 0 16px 40px rgba(240, 83, 101, 0.3);
}

.btn-build-ai .pill-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Tools Glass Icon Grid (3 Columns + Floating Animation) */
.tools-logo-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  perspective: 1000px;
}

.tool-glass-card {
  height: 100px;
  border-radius: 20px;
  background: rgba(24, 28, 36, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  animation: toolFloat 4s ease-in-out infinite alternate;
}

.tool-glass-card:nth-child(1) { animation-delay: 0s; }
.tool-glass-card:nth-child(2) { animation-delay: 0.4s; }
.tool-glass-card:nth-child(3) { animation-delay: 0.8s; }
.tool-glass-card:nth-child(4) { animation-delay: 1.2s; }
.tool-glass-card:nth-child(5) { animation-delay: 1.6s; }
.tool-glass-card:nth-child(6) { animation-delay: 2s; }
.tool-glass-card:nth-child(7) { animation-delay: 2.4s; }
.tool-glass-card:nth-child(8) { animation-delay: 2.8s; }
.tool-glass-card:nth-child(9) { animation-delay: 3.2s; }
.tool-glass-card:nth-child(10) { animation-delay: 3.6s; }
.tool-glass-card:nth-child(11) { animation-delay: 4s; }
.tool-glass-card:nth-child(12) { animation-delay: 4.4s; }

@keyframes toolFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}

.tool-glass-card:hover {
  transform: translateY(-8px) scale(1.06) !important;
  border-color: rgba(240, 83, 101, 0.5);
  box-shadow: 0 18px 40px rgba(240, 83, 101, 0.28);
  background: rgba(24, 28, 36, 0.95);
  animation-play-state: paused;
}

.tool-glass-card img,
.tool-glass-card svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tool-name-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* Light mode for Fav Tools */
[data-theme="light"] .fav-tools-section {
  background: #FAFAFC;
}

[data-theme="light"] .tool-glass-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .btn-build-ai {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
}

/* ==========================================================================
   2. AWARDS AND CERTIFICATIONS SECTION (Reference Match 2 - Always Dark Mode)
   ========================================================================== */
.awards-section,
[data-theme="light"] .awards-section {
  padding: 70px 0;
  background: #0B0D10 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #F8FAFC !important;
}

.awards-header {
  text-align: center;
  margin-bottom: 40px;
}

.awards-header .section-tag {
  color: var(--coral-primary) !important;
  font-weight: 700;
  letter-spacing: 1px;
}

.awards-header .section-title {
  color: #FFFFFF !important;
}

.awards-header .section-subtitle {
  color: #94A3B8 !important;
}

/* Single Line Horizontal Strip Matching User Reference Image 2 */
.awards-logo-ribbon {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none; /* Firefox */
}

.awards-logo-ribbon::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.award-logo-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0.92;
}

.award-logo-direct:hover {
  transform: translateY(-3px) scale(1.06);
  opacity: 1;
}

.award-logo-direct img {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.award-logo-direct img[src*="cloudflare"] {
  height: 30px;
  max-width: 125px;
}

.award-logo-direct img[src*="forbes"] {
  height: 32px;
}

/* ==========================================================================
   3. CLIENT TESTIMONIALS & AUTHENTIC CHAT SCREENSHOTS SECTION (Organic Collage)
   ========================================================================== */
.testimonials-section {
  padding: 120px 0;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .testimonials-section {
  background: #08090C;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials-section .section-title {
  color: #0F172A;
}

[data-theme="dark"] .testimonials-section .section-title {
  color: #FFFFFF;
}

.testimonials-organic-canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 1360px;
  margin: 54px auto 0 auto;
  position: relative;
  padding: 10px 0;
}

.testimonial-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.row-top-3,
.row-top-4 {
  margin-bottom: -15px;
  z-index: 10;
}

.row-bottom-3 {
  z-index: 20;
}

.row-top-3 .organic-screenshot-card,
.row-top-4 .organic-screenshot-card {
  width: 320px;
  max-width: 320px;
  margin-left: -20px;
}

.row-top-3 .organic-screenshot-card:first-child,
.row-top-4 .organic-screenshot-card:first-child {
  margin-left: 0;
}

.row-bottom-3 .organic-screenshot-card {
  width: 320px;
  max-width: 320px;
  margin-left: -20px;
}

.row-bottom-3 .organic-screenshot-card:first-child {
  margin-left: 0;
}

.organic-screenshot-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

[data-theme="dark"] .organic-screenshot-card {
  background: #11141A;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Natural Rotations & Overlapping Z-Indexes */
.card-rotate-left-lg {
  transform: rotate(-3deg) translateY(-4px);
  z-index: 5;
}

.card-rotate-right-md {
  transform: rotate(2.4deg) translateY(10px);
  z-index: 12;
}

.card-rotate-left-sm {
  transform: rotate(-2deg) translateY(-2px);
  z-index: 8;
}

.card-rotate-right-lg {
  transform: rotate(3deg) translateY(8px);
  z-index: 15;
}

.card-rotate-left-md {
  transform: rotate(-3.2deg) translateY(-10px);
  z-index: 25;
}

.card-rotate-right-sm {
  transform: rotate(2.5deg) translateY(6px);
  z-index: 18;
}

.card-rotate-center {
  transform: rotate(-1.5deg) translateY(4px);
  z-index: 30;
}

/* Floating Animation on Hover */
.organic-screenshot-card:hover {
  transform: rotate(0deg) translateY(-18px) scale(1.04) !important;
  z-index: 30 !important;
  box-shadow: 0 36px 90px rgba(240, 83, 101, 0.22), 0 12px 30px rgba(0, 0, 0, 0.15) !important;
  border-color: var(--coral-primary);
}

.organic-screenshot-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  display: block;
}

@media (max-width: 992px) {
  .testimonials-organic-canvas {
    gap: 28px;
  }
  .card-rotate-left-lg,
  .card-rotate-right-md,
  .card-rotate-left-sm,
  .card-rotate-right-lg,
  .card-rotate-left-md,
  .card-rotate-right-sm,
  .card-rotate-center {
    width: 100%;
    max-width: 440px;
    transform: rotate(0deg) translateY(0);
  }
}

/* Authentic WhatsApp Chat Review Card */
.chat-screenshot-header.whatsapp-header {
  background: #075E54;
  color: #FFFFFF;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.whatsapp-chat-body {
  background: #0B141A;
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.whatsapp-bubble {
  background: #005C4B;
  color: #E9EDEF;
  border-radius: 12px 12px 0 12px;
  padding: 14px 16px;
  font-size: 0.92rem;
  line-height: 1.45;
  position: relative;
  margin-left: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.whatsapp-bubble .time-check {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.72rem;
  color: #8696A0;
  margin-top: 8px;
}

.whatsapp-bubble .ticks {
  color: #53BDEB;
  font-weight: 800;
}

/* Authentic Email Inbox Review Card */
.email-screenshot-header {
  background: #1E293B;
  padding: 12px 16px;
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.email-dot-red { width: 10px; height: 10px; border-radius: 50%; background: #EF4444; }
.email-dot-yellow { width: 10px; height: 10px; border-radius: 50%; background: #F59E0B; }
.email-dot-green { width: 10px; height: 10px; border-radius: 50%; background: #10B981; }

.email-body-content {
  padding: 20px;
  flex-grow: 1;
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.5;
}

.email-subject-line {
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.email-sender-meta {
  font-size: 0.78rem;
  color: var(--coral-primary);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Authentic Messenger Chat Review Card */
.messenger-header {
  background: linear-gradient(135deg, #0084FF 0%, #00C6FF 100%);
  color: #FFFFFF;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.messenger-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0084FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.messenger-chat-body {
  background: var(--dark-card);
  padding: 20px;
  flex-grow: 1;
}

.messenger-bubble {
  background: #0084FF;
  color: #FFFFFF;
  border-radius: 18px 18px 4px 18px;
  padding: 14px 16px;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Google & Upwork Verified Cards (Reference Image 3 Match) */
.verified-review-card {
  padding: 24px;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.avatar-blue { background: #3B82F6; }
.avatar-red { background: #EF4444; }
.avatar-orange { background: #F59E0B; }
.avatar-green { background: #10B981; }

.reviewer-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
}

.review-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
}

/* Light mode for Testimonials & Awards */
[data-theme="light"] .testimonials-section {
  background: #FAFAFC;
}

[data-theme="light"] .testimonial-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .reviewer-name {
  color: #0F172A;
}

[data-theme="light"] .review-text-body {
  color: #475569;
}

@media (max-width: 1024px) {
  .fav-tools-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .tools-logo-matrix {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   4. FINAL HIGH-CONVERTING CTA & CONTACT SECTION (Linear / Vercel Premium SaaS Style)
   ========================================================================== */
.final-cta-contact-section,
.contact-agency-section {
  padding: 120px 0;
  background: #030712;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.glow-top-left {
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 83, 101, 0.14) 0%, transparent 70%);
}

.glow-bottom-right {
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

/* Left Column Styling */
.autopilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(240, 83, 101, 0.1);
  border: 1px solid rgba(240, 83, 101, 0.3);
  color: var(--coral-primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(240, 83, 101, 0.15);
}

.lightning-icon {
  font-size: 1rem;
}

.final-cta-heading {
  font-size: 3.4rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  font-family: var(--font-title);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.final-cta-description {
  font-size: 1.15rem;
  color: #F1F5F9;
  font-weight: 600;
  margin-bottom: 12px;
}

.final-cta-subdescription {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 36px;
}

.final-cta-subdescription strong {
  color: var(--coral-primary);
}

/* AI Network Mesh Container & Floating Nodes */
.ai-network-mesh-container {
  position: relative;
  height: 80px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 16px;
  overflow: hidden;
}

.network-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  animation: nodeFloat 4s ease-in-out infinite alternate;
}

.node-whatsapp { animation-delay: 0s; }
.node-instagram { animation-delay: 0.5s; }
.node-messenger { animation-delay: 1s; }
.node-email { animation-delay: 1.5s; }
.node-phone { animation-delay: 2s; }
.node-calendar { animation-delay: 2.5s; }
.node-ghl { animation-delay: 3s; }

@keyframes nodeFloat {
  0% { transform: translateY(0); box-shadow: 0 4px 15px rgba(0,0,0,0.4); }
  100% { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(240, 83, 101, 0.35); border-color: var(--coral-primary); }
}

.network-pulse-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
}

.pulse-line {
  fill: none;
  stroke: var(--coral-primary);
  stroke-width: 1.5;
  stroke-dasharray: 6, 6;
  animation: strokePulse 12s linear infinite;
}

@keyframes strokePulse {
  to { stroke-dashoffset: -100; }
}

/* 4 Trust Metric Cards (2x2 Grid) */
.trust-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 18px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.metric-glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(240, 83, 101, 0.4);
  box-shadow: 0 16px 36px rgba(240, 83, 101, 0.18);
}

.metric-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

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

.metric-label {
  font-size: 0.8rem;
  color: #94A3B8;
  font-weight: 600;
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

/* Right Side Contact Form Card */
.final-contact-form-card {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 44px 40px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.65);
  position: relative;
}

.form-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-card-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  font-family: var(--font-title);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.form-card-subtitle {
  font-size: 0.95rem;
  color: #94A3B8;
}

.premium-form-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Floating Label Inputs */
.floating-field-group {
  position: relative;
  width: 100%;
}

.premium-input-field {
  width: 100%;
  padding: 22px 18px 8px 18px;
  height: 60px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.premium-input-field.textarea-field {
  height: 110px;
  padding-top: 24px;
  resize: vertical;
}

.premium-input-field.select-field {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F05365' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 48px;
  cursor: pointer;
  background-color: rgba(30, 41, 59, 0.7);
  color: #FFFFFF;
}

.premium-input-field.select-field option {
  background-color: #1E293B; /* Dark slate matching dark theme */
  color: #F8FAFC;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: inherit;
}

.premium-input-field.select-field option:disabled {
  color: #64748B;
}

.premium-input-field.select-field option:hover,
.premium-input-field.select-field option:focus,
.premium-input-field.select-field option:checked {
  background-color: var(--coral-primary) !important;
  color: #FFFFFF !important;
}

.floating-label {
  position: absolute;
  left: 18px;
  top: 18px;
  color: #64748B;
  font-size: 0.9rem;
  pointer-events: none;
  transition: all 0.25s ease;
}

/* Floating label effect when focused, populated or valid select */
.premium-input-field:focus ~ .floating-label,
.premium-input-field:not(:placeholder-shown) ~ .floating-label,
.premium-input-field.select-field:valid ~ .floating-label {
  top: 6px;
  font-size: 0.72rem;
  color: var(--coral-primary);
  font-weight: 700;
}

.premium-input-field:focus {
  border-color: var(--coral-primary);
  outline: none;
  background: rgba(30, 41, 59, 0.95);
  box-shadow: 0 0 24px rgba(240, 83, 101, 0.3);
}

/* Large Full-Width Button */
.btn-primary-cta-glow {
  width: 100%;
  background: linear-gradient(135deg, #F05365 0%, #E11D48 100%);
  color: #FFFFFF;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 20px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(240, 83, 101, 0.4);
}

.btn-primary-cta-glow:hover {
  background: linear-gradient(135deg, #FF5B6E 0%, #F02851 100%);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 60px rgba(240, 83, 101, 0.55);
}

@media (max-width: 992px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .final-cta-heading {
    font-size: 2.6rem;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
  }
}

/* Light Mode Theme Overrides for Final CTA / Contact Section */
[data-theme="light"] .final-cta-contact-section {
  background: #F8FAFC !important;
  border-top: 1px solid #E2E8F0;
}

[data-theme="light"] .final-cta-heading {
  color: #0F172A !important;
}

[data-theme="light"] .final-cta-subdescription {
  color: #475569 !important;
}

[data-theme="light"] .metric-glass-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .metric-glass-card:hover {
  background: #FFFFFF !important;
  border-color: var(--coral-primary) !important;
  box-shadow: 0 16px 36px rgba(240, 83, 101, 0.15) !important;
}

[data-theme="light"] .metric-label {
  color: #64748B !important;
}

[data-theme="light"] .metric-value {
  color: #0F172A !important;
}

[data-theme="light"] .final-contact-form-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .form-card-title {
  color: #0F172A !important;
}

[data-theme="light"] .form-card-subtitle {
  color: #64748B !important;
}

[data-theme="light"] .premium-input-field {
  background: #F1F5F9 !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
}

[data-theme="light"] .premium-input-field:focus {
  background: #FFFFFF !important;
  border-color: var(--coral-primary) !important;
  box-shadow: 0 0 20px rgba(240, 83, 101, 0.2) !important;
}

[data-theme="light"] .floating-label {
  color: #64748B !important;
}

[data-theme="light"] .premium-input-field:focus ~ .floating-label,
[data-theme="light"] .premium-input-field:not(:placeholder-shown) ~ .floating-label {
  color: var(--coral-primary) !important;
}

/* High-Impact Value Highlights Grid & Live Operational Status Box */
.cta-highlights-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.highlight-pill-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 20px;
  border-radius: 16px;
  color: #E2E8F0;
  font-size: 0.98rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.highlight-pill-item:hover {
  transform: translateX(6px);
  border-color: rgba(240, 83, 101, 0.4);
  background: rgba(240, 83, 101, 0.06);
}

.pill-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F05365 0%, #D92338 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(240, 83, 101, 0.35);
}

.highlight-pill-item strong {
  color: #FFFFFF;
}

/* ==========================================================================
   INTERACTIVE CALL LOG OPPORTUNITY COMPARISON WIDGET ("As it is" vs "With us")
   ========================================================================== */

.call-log-comparison-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(240, 83, 101, 0.12);
  margin-top: 10px;
  font-family: 'Space Mono', 'Consolas', 'Plus Jakarta Sans', monospace, sans-serif;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Light Theme Styling for Comparison Widget */
[data-theme="light"] .call-log-comparison-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08) !important;
}

.call-log-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .call-log-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.call-log-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.log-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.call-log-comparison-card.mode-as-it-is .log-status-dot {
  background: #EF4444;
  box-shadow: 0 0 10px #EF4444;
}

.log-title-text {
  font-size: 1rem;
  font-weight: 700;
  color: #F8FAFC;
  letter-spacing: -0.2px;
}

[data-theme="light"] .log-title-text {
  color: #0F172A;
}

/* Segmented Pill Switch */
.log-toggle-switch {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 3px;
  gap: 4px;
}

[data-theme="light"] .log-toggle-switch {
  background: #F1F5F9;
  border-color: rgba(0, 0, 0, 0.08);
}

.log-toggle-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.25s ease;
}

[data-theme="light"] .log-toggle-btn {
  color: #64748B;
}

.log-toggle-btn.active {
  background: #0F172A;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .log-toggle-btn.active {
  background: #0F172A;
  color: #FFFFFF;
}

/* Log Rows Table */
.call-log-body {
  display: flex;
  flex-direction: column;
}

.log-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

[data-theme="light"] .log-row {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.log-row:last-child {
  border-bottom: none;
}

.log-time {
  color: #64748B;
  font-size: 0.8rem;
}

.log-details {
  display: flex;
  flex-direction: column;
}

.log-lead-contact {
  color: #CBD5E1;
  font-size: 0.85rem;
  line-height: 1.4;
}

[data-theme="light"] .log-lead-contact {
  color: #334155;
}

.log-lead-contact strong {
  color: #F8FAFC;
  font-weight: 700;
}

[data-theme="light"] .log-lead-contact strong {
  color: #0F172A;
}

.log-status-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.log-badge-status {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.log-status-col.missed .log-badge-status {
  color: #EF4444;
}

.log-status-col.missed .log-revenue-val {
  color: #EF4444;
  font-weight: 800;
  font-size: 0.95rem;
}

.log-status-col.booked .log-badge-status {
  color: #10B981;
}

.log-status-col.booked .log-revenue-val {
  color: #10B981;
  font-weight: 800;
  font-size: 0.95rem;
}

/* Log Footer Total */
.log-footer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px dashed rgba(255, 255, 255, 0.12);
}

[data-theme="light"] .log-footer-total {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.log-footer-total .total-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 1px;
}

.log-footer-total .total-amount {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.log-footer-total .total-amount.loss {
  color: #EF4444;
}

.log-footer-total .total-amount.gain {
  color: #10B981;
}

/* Light Mode Overrides for Highlights & Status Box */
[data-theme="light"] .highlight-pill-item {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  color: #334155 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .highlight-pill-item strong {
  color: #0F172A !important;
}

[data-theme="light"] .live-status-box {
  background: #FFFFFF !important;
  border: 1px solid rgba(240, 83, 101, 0.3) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   Executive Business Command Center Dashboard Showcase Styles
   ========================================================================== */
.dashboard-mode-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  background: var(--dark-card, #FFFFFF);
  border: 1px solid var(--dark-border, rgba(0,0,0,0.08));
  padding: 6px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.mode-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 40px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.mode-tab-btn:focus,
.mode-tab-btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.mode-tab-btn:hover {
  color: var(--text-main);
  background: rgba(240, 83, 101, 0.06);
}

.mode-tab-btn.active {
  background: var(--coral-primary, #F05365);
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(240, 83, 101, 0.35);
}

.dashboard-view-mode {
  display: none;
  width: 100%;
  position: relative;
  max-height: 640px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.dashboard-view-mode.active {
  display: block;
}

/* Custom Sleek Scrollbar for Dashboard View Mode & Internal Feeds */
.dashboard-view-mode::-webkit-scrollbar,
.activity-feed-list::-webkit-scrollbar,
.dash-content-area::-webkit-scrollbar {
  width: 6px;
}

.dashboard-view-mode::-webkit-scrollbar-track,
.activity-feed-list::-webkit-scrollbar-track,
.dash-content-area::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}

[data-theme="dark"] .dashboard-view-mode::-webkit-scrollbar-track,
[data-theme="dark"] .activity-feed-list::-webkit-scrollbar-track,
[data-theme="dark"] .dash-content-area::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-view-mode::-webkit-scrollbar-thumb,
.activity-feed-list::-webkit-scrollbar-thumb,
.dash-content-area::-webkit-scrollbar-thumb {
  background: rgba(240, 83, 101, 0.35);
  border-radius: 10px;
}

.dashboard-view-mode::-webkit-scrollbar-thumb:hover,
.activity-feed-list::-webkit-scrollbar-thumb:hover,
.dash-content-area::-webkit-scrollbar-thumb:hover {
  background: var(--coral-primary, #F05365);
}

/* Executive Command Center Main Grid */
.cmd-center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px;
}

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

.cmd-section-card {
  background: var(--dark-card, #FFFFFF);
  border: 1px solid var(--dark-border, rgba(0,0,0,0.08));
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
  margin-bottom: 16px;
}

.cmd-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--dark-border, rgba(0,0,0,0.06));
}

.cmd-card-header h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

/* Lead Sources Visualization */
.lead-sources-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.source-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.source-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.source-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.source-bar-wrapper {
  position: relative;
  height: 12px;
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
}

[data-theme="dark"] .source-bar-wrapper {
  background: rgba(255,255,255,0.08);
}

.source-bar-qual {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--coral-primary, #F05365);
  border-radius: 10px;
  transition: width 1s ease;
}

/* Funnel Visualization */
.funnel-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.funnel-step-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.funnel-step-label {
  width: 150px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  flex-shrink: 0;
}

.funnel-step-bar-container {
  flex: 1;
  height: 28px;
  background: rgba(0,0,0,0.04);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

[data-theme="dark"] .funnel-step-bar-container {
  background: rgba(255,255,255,0.06);
}

.funnel-step-bar {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #F05365 0%, #FF7A59 100%);
  transition: width 0.8s ease;
}

.funnel-step-value {
  position: absolute;
  right: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-main);
}

/* AI Status Panel */
.ai-agent-status-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
}

.agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agent-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.agent-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

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

.status-badge-active {
  font-size: 0.72rem;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* AI Performance Grid */
.ai-perf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ai-perf-item {
  background: rgba(240, 83, 101, 0.04);
  border: 1px solid rgba(240, 83, 101, 0.1);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.perf-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--coral-primary, #F05365);
}

.perf-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Executive Analytics & BI Section Styles */
.analytics-metric-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .analytics-metric-summary {
    grid-template-columns: 1fr;
  }
}

.summary-pill {
  background: var(--dark-surface, rgba(0,0,0,0.02));
  border: 1px solid var(--dark-border, rgba(0,0,0,0.06));
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summary-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.summary-val {
  font-size: 0.95rem;
  font-weight: 800;
}

.analytics-chart-container {
  background: var(--dark-surface, rgba(0,0,0,0.02));
  border: 1px solid var(--dark-border, rgba(0,0,0,0.06));
  border-radius: 14px;
  padding: 16px 20px;
}

.chart-header-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.growth-bars-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: flex-end;
  height: 140px;
  padding-bottom: 10px;
}

.growth-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.bar-fill-wrapper {
  flex: 1;
  width: 100%;
  max-width: 32px;
  background: rgba(0,0,0,0.04);
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

[data-theme="dark"] .bar-fill-wrapper {
  background: rgba(255,255,255,0.06);
}

.growth-bar-fill {
  width: 100%;
  background: rgba(240, 83, 101, 0.3);
  border-radius: 8px 8px 0 0;
  transition: height 0.8s ease;
}

.growth-bar-fill.active-fill {
  background: linear-gradient(180deg, #F05365 0%, #FF7A59 100%);
  box-shadow: 0 4px 14px rgba(240, 83, 101, 0.3);
}

.bar-amt {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-main);
}

.bar-month {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Call Log Scroll Area Styles */
.log-scroll-area {
  max-height: 210px;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding-right: 4px;
}

.log-scroll-area::-webkit-scrollbar {
  width: 5px;
}

.log-scroll-area::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}

[data-theme="dark"] .log-scroll-area::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.log-scroll-area::-webkit-scrollbar-thumb {
  background: rgba(240, 83, 101, 0.4);
  border-radius: 10px;
}

.log-scroll-area::-webkit-scrollbar-thumb:hover {
  background: var(--coral-primary, #F05365);
}





/* ==========================================================================
   ENHANCED MOBILE DRAWER & FORM SPINNER
   ========================================================================== */
@keyframes mobileNavFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(18, 21, 27, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    gap: 16px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
    animation: mobileNavFadeIn 0.25s ease-out forwards;
  }

  [data-theme="light"] .nav-links.mobile-open {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .nav-links.mobile-open a {
    font-size: 1.05rem;
    padding: 8px 0;
  }

  .nav-links.mobile-open .nav-dropdown {
    width: 100%;
  }

  .nav-links.mobile-open .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    margin-top: 8px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  [data-theme="light"] .nav-links.mobile-open .nav-dropdown .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.03);
  }
}


/* ==========================================================================
   HEADER & NAVBAR PRECISION ENHANCEMENTS
   ========================================================================== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links .nav-link.active,
.nav-dropdown-trigger.active {
  color: var(--coral-primary) !important;
  font-weight: 700;
}

.dropdown-item.active {
  background: rgba(240, 83, 101, 0.12) !important;
}

.dropdown-item.active .dropdown-text strong {
  color: var(--coral-primary) !important;
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .nav-links a {
  color: #475569;
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-dropdown:hover .nav-dropdown-trigger {
  color: var(--coral-primary) !important;
}

[data-theme="light"] .nav-links a.active,
[data-theme="light"] .nav-dropdown-trigger.active {
  color: var(--coral-primary) !important;
}

@media (max-width: 992px) {
  .nav-links {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .nav-actions {
    gap: 12px;
  }
  .nav-cta {
    display: none;
  }
}

/* ==========================================================================
   FOOTER ENHANCEMENTS & TRUST BADGES
   ========================================================================== */
.footer-social-icon svg {
  display: block;
  transition: transform 0.2s ease;
}

.footer-social-icon:hover svg {
  transform: scale(1.15);
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94A3B8 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.2s ease;
}

.trust-badge-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #F8FAFC !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}


/* ==========================================================================
   HERO FLANKS PRECISION POSITIONING (Item 4)
   ========================================================================== */
.hero-stage-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.flank-left, .flank-right {
  position: absolute;
  top: 10px;
  width: 220px;
  height: 480px;
  pointer-events: auto;
  z-index: 5;
}

.flank-left {
  left: 0;
}

.flank-right {
  right: 0;
}

@media (max-width: 1100px) {
  .flank-left, .flank-right {
    display: none;
  }
}

/* ==========================================================================
   EXECUTIVE COMMAND CENTER BALANCED 2-COL LAYOUT (Item 5)
   ========================================================================== */
.cmd-center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px;
}

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

.cmd-grid-left, .cmd-grid-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* AI Fleet List */
.ai-fleet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fleet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

[data-theme="light"] .fleet-item {
  background: #F8FAFC;
  border-color: rgba(0, 0, 0, 0.06);
}

.fleet-item:hover {
  transform: translateX(4px);
  border-color: var(--coral-primary);
}

.fleet-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.fleet-info {
  flex: 1;
}

.fleet-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.fleet-name-row strong {
  font-size: 0.88rem;
  color: var(--text-main);
}

.fleet-speed {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

.fleet-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Bookings Stream List */
.bookings-stream-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stream-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--dark-border);
}

[data-theme="light"] .stream-item {
  background: #F8FAFC;
  border-color: rgba(0, 0, 0, 0.06);
}

.stream-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 60px;
}

.stream-details {
  flex: 1;
}

.stream-lead {
  font-size: 0.84rem;
  color: var(--text-main);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stream-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.stream-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #10B981;
}

.badge-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(240, 83, 101, 0.12);
  color: var(--coral-primary);
}

/* ==========================================================================
   ENDLESS SEAMLESS MARQUEE (Item 6)
   ========================================================================== */
.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track-left {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 4px 0;
  animation: marqueeScrollLeft 32s linear infinite;
  white-space: nowrap;
}

.marquee-track-right {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 4px 0;
  animation: marqueeScrollRight 32s linear infinite;
  white-space: nowrap;
}

.marquee-container:hover .marquee-track-left,
.marquee-container:hover .marquee-track-right {
  animation-play-state: paused;
}

@keyframes marqueeScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ==========================================================================
   ACCORDION VISUAL POLISH (Item 7)
   ========================================================================== */
.col-expanded-visual {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.col-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ==========================================================================
   FINAL CTA & CONTACT SECTION POLISH (Request 2)
   ========================================================================== */
.final-cta-contact-section {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 56px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.final-cta-left-col {
  display: flex;
  flex-direction: column;
}

.autopilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 40px;
  background: rgba(240, 83, 101, 0.1);
  border: 1px solid rgba(240, 83, 101, 0.25);
  color: var(--coral-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  width: fit-content;
}

.final-cta-heading {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .final-cta-heading {
    font-size: 2.3rem;
  }
}

.final-cta-subdescription {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Call Log Comparison Card */
.call-log-comparison-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 22px 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 24px rgba(240, 83, 101, 0.08);
  font-family: inherit;
  transition: all 0.3s ease;
}

[data-theme="light"] .call-log-comparison-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05) !important;
}

.call-log-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .call-log-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.call-log-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.log-title-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.log-toggle-switch {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}

[data-theme="light"] .log-toggle-switch {
  background: #F1F5F9;
  border-color: rgba(0, 0, 0, 0.06);
}

.log-toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.log-toggle-btn.active {
  background: #0F172A;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .log-toggle-btn.active {
  background: #0F172A;
  color: #FFFFFF;
}

.log-scroll-area {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.log-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .log-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.log-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 44px;
}

.log-details {
  flex: 1;
  margin: 0 12px;
}

.log-lead-contact {
  font-size: 0.84rem;
  color: var(--text-main);
  line-height: 1.4;
}

.log-lead-contact strong {
  color: var(--text-main);
}

.log-status-col {
  display: flex;
  align-items: center;
  gap: 8px;
}

.log-badge-status {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.log-status-col.booked .log-badge-status {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.log-status-col.missed .log-badge-status {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

.log-revenue-val {
  font-size: 0.88rem;
  font-weight: 800;
  min-width: 60px;
  text-align: right;
}

.log-status-col.booked .log-revenue-val {
  color: #10B981;
}

.log-status-col.missed .log-revenue-val {
  color: #EF4444;
}

.log-footer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px 4px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .log-footer-total {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.total-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.total-amount {
  font-size: 1.35rem;
  font-weight: 900;
}

.total-amount.gain {
  color: #10B981;
}

.total-amount.loss {
  color: #EF4444;
}

/* Contact Form Card */
.final-contact-form-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 34px 32px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(240, 83, 101, 0.08);
}

[data-theme="light"] .final-contact-form-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06) !important;
}

.form-card-header {
  margin-bottom: 24px;
}

.form-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-card-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.premium-form-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }
}

.floating-field-group {
  position: relative;
  width: 100%;
}

.premium-input-field {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

[data-theme="light"] .premium-input-field {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #0F172A !important;
}

.premium-input-field:focus {
  border-color: var(--coral-primary) !important;
  box-shadow: 0 0 0 4px rgba(240, 83, 101, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

[data-theme="light"] .premium-input-field:focus {
  background: #FFFFFF !important;
  border-color: var(--coral-primary) !important;
  box-shadow: 0 0 0 4px rgba(240, 83, 101, 0.12) !important;
}

.floating-label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.premium-input-field:focus ~ .floating-label,
.premium-input-field:not(:placeholder-shown) ~ .floating-label,
.select-field:valid ~ .floating-label {
  top: -10px;
  left: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--coral-primary) !important;
  background: var(--dark-bg);
  padding: 0 6px;
  border-radius: 4px;
}

[data-theme="light"] .premium-input-field:focus ~ .floating-label,
[data-theme="light"] .premium-input-field:not(:placeholder-shown) ~ .floating-label,
[data-theme="light"] .select-field:valid ~ .floating-label {
  background: #FFFFFF !important;
  color: var(--coral-primary) !important;
}

.select-field {
  cursor: pointer;
}

.textarea-field {
  resize: vertical;
  min-height: 85px;
}

.form-sms-disclaimer {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
  text-align: left;
}

.text-link {
  color: var(--coral-primary);
  text-decoration: underline;
}

.btn-primary-cta-glow {
  width: 100%;
  padding: 16px 28px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 40px;
  background: linear-gradient(135deg, #F05365 0%, #E02845 100%);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(240, 83, 101, 0.35);
  transition: all 0.25s ease;
}

.btn-primary-cta-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(240, 83, 101, 0.45);
}


/* ==========================================================================
   HIGH-HIERARCHY MODERN CONTACT FORM STYLES
   ========================================================================== */
.clean-form-hierarchy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.form-field-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

[data-theme="light"] .form-field-label {
  color: #1E293B;
}

.label-svg {
  color: var(--coral-primary);
  flex-shrink: 0;
}

.required-star {
  color: var(--coral-primary);
  font-weight: 800;
}

.optional-tag {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

.modern-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.modern-input::placeholder {
  color: #64748B;
  opacity: 0.8;
  font-size: 0.88rem;
}

.modern-input:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--coral-primary) !important;
  box-shadow: 0 0 0 3.5px rgba(240, 83, 101, 0.16) !important;
}

[data-theme="light"] .modern-input {
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #0F172A !important;
}

[data-theme="light"] .modern-input::placeholder {
  color: #94A3B8;
}

[data-theme="light"] .modern-input:focus {
  background: #FFFFFF !important;
  border-color: var(--coral-primary) !important;
  box-shadow: 0 0 0 3.5px rgba(240, 83, 101, 0.14) !important;
}

/* Custom Select Wrapper */
.select-wrapper {
  position: relative;
  width: 100%;
}

.modern-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 38px;
}

.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--coral-primary);
  font-size: 1rem;
  pointer-events: none;
  font-weight: 800;
}

.modern-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

.form-footer-group {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* ==========================================================================
   AI VOICE AGENT INNER PAGE STYLES (13-SECTION BLUEPRINT)
   ========================================================================== */

/* 1. HERO */
.voice-hero-section {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.voice-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 992px) {
  .voice-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.voice-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(240, 83, 101, 0.1);
  border: 1px solid rgba(240, 83, 101, 0.25);
  color: var(--coral-primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.pulse-dot-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-primary);
  box-shadow: 0 0 10px var(--coral-primary);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.voice-hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .voice-hero-title {
    font-size: 2.3rem;
  }
}

.voice-hero-subhead {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

.voice-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.voice-hero-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 1.02rem;
}

.voice-hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.02rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  transition: all 0.2s ease;
}

[data-theme="light"] .voice-hero-secondary-btn {
  background: #F1F5F9;
  border-color: #CBD5E1;
  color: #0F172A;
}

.voice-hero-secondary-btn:hover {
  background: rgba(240, 83, 101, 0.1);
  border-color: var(--coral-primary);
  color: var(--coral-primary);
}

.voice-hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-check {
  color: #10B981;
  font-weight: 900;
}

/* Hero Right Live Call Card Simulation */
.live-call-simulation-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(240, 83, 101, 0.1);
  backdrop-filter: blur(16px);
  position: relative;
}

[data-theme="light"] .live-call-simulation-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

.sim-call-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

[data-theme="light"] .sim-call-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.caller-id-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.caller-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(240, 83, 101, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
}

.caller-meta {
  display: flex;
  flex-direction: column;
}

.caller-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}

.call-duration {
  font-size: 0.78rem;
  color: #10B981;
  font-weight: 700;
}

.call-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
  font-size: 0.74rem;
  font-weight: 800;
}

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

.sim-waveform-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 6px 0;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

[data-theme="light"] .sim-waveform-container {
  background: #F8FAFC;
}

.sound-wave-bar {
  width: 4px;
  background: var(--coral-primary);
  border-radius: 4px;
  animation: wave-bounce 1.2s infinite ease-in-out alternate;
}

.sound-wave-bar.h-3 { height: 8px; animation-delay: 0.1s; }
.sound-wave-bar.h-7 { height: 16px; animation-delay: 0.3s; }
.sound-wave-bar.h-12 { height: 26px; animation-delay: 0.2s; }
.sound-wave-bar.h-18 { height: 32px; animation-delay: 0.5s; }
.sound-wave-bar.h-14 { height: 22px; animation-delay: 0.15s; }
.sound-wave-bar.h-8 { height: 14px; animation-delay: 0.4s; }
.sound-wave-bar.h-16 { height: 28px; animation-delay: 0.25s; }
.sound-wave-bar.h-20 { height: 34px; animation-delay: 0.6s; }
.sound-wave-bar.h-10 { height: 18px; animation-delay: 0.35s; }
.sound-wave-bar.h-15 { height: 24px; animation-delay: 0.45s; }
.sound-wave-bar.h-6 { height: 12px; animation-delay: 0.2s; }

@keyframes wave-bounce {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.sim-transcript-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  max-height: 230px;
  overflow-y: auto;
}

.transcript-line {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.transcript-line .speaker-tag {
  font-weight: 800;
  display: block;
  font-size: 0.74rem;
  margin-bottom: 2px;
}

.line-caller {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #64748B;
  color: var(--text-main);
}

[data-theme="light"] .line-caller {
  background: #F1F5F9;
}

.line-ai {
  background: rgba(240, 83, 101, 0.08);
  border-left: 3px solid var(--coral-primary);
  color: var(--text-main);
}

.line-ai .speaker-tag {
  color: var(--coral-primary);
}

.sim-automated-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .sim-automated-actions {
  border-top-color: rgba(0, 0, 0, 0.06);
}

.action-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 10px;
  border-radius: 8px;
}

[data-theme="light"] .action-pill {
  background: #F8FAFC;
}

/* 2. DEFINITION STRIP */
.definition-strip-section {
  padding: 20px 0 50px;
}

.definition-box-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1.5px solid rgba(240, 83, 101, 0.25);
  border-radius: 20px;
  padding: 32px 40px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

[data-theme="light"] .definition-box-card {
  background: #FFFFFF !important;
  border-color: rgba(240, 83, 101, 0.25) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.definition-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--coral-primary);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.definition-heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.definition-body-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-main);
}

/* 3. PROBLEM SECTION */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

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

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

.moment-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.2s ease;
}

[data-theme="light"] .moment-card {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.moment-card:hover {
  transform: translateY(-3px);
}

.moment-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.moment-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.moment-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.causal-chain-card {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

[data-theme="light"] .causal-chain-card {
  background: #FFF5F5 !important;
  border-color: rgba(239, 68, 68, 0.2) !important;
}

.causal-chain-intro {
  font-size: 1.02rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.causal-chain-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.chain-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 8px 16px;
  border-radius: 12px;
}

[data-theme="light"] .chain-step {
  background: #FFFFFF;
  border-color: rgba(239, 68, 68, 0.25);
}

.step-num {
  font-size: 0.74rem;
  font-weight: 800;
  color: #EF4444;
}

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

.chain-arrow {
  color: #EF4444;
  font-weight: 900;
  font-size: 1.1rem;
}

.causal-chain-conclusion {
  font-size: 1.05rem;
  color: #EF4444;
}

/* 4. SOLUTION SECTION */
.solution-highlight-box {
  background: rgba(240, 83, 101, 0.08);
  border: 1px solid rgba(240, 83, 101, 0.2);
  border-radius: 16px;
  padding: 20px 28px;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

[data-theme="light"] .solution-highlight-box {
  background: #FFF1F2;
}

.highlight-text {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--text-main);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-box {
  border-radius: 20px;
  padding: 28px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
}

.box-without {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.03);
}

[data-theme="light"] .box-without {
  background: #FFFFFF !important;
  border-color: rgba(239, 68, 68, 0.2) !important;
}

.box-with {
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.03);
}

[data-theme="light"] .box-with {
  background: #FFFFFF !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
}

.comp-header {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .comp-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.comp-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.badge-loss {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

.badge-gain {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.comp-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.comp-step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
}

.step-time {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  min-width: 60px;
  padding-top: 2px;
}

.comp-step p {
  color: var(--text-main);
  margin: 0;
  line-height: 1.5;
}

.comp-step.step-result {
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 10px;
}

.comp-step.step-result.loss {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.comp-step.step-result.gain {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

/* 5. HOW IT WORKS (Timeline) */
.call-anatomy-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

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

@media (max-width: 576px) {
  .call-anatomy-timeline {
    grid-template-columns: 1fr;
  }
}

.timeline-step {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

[data-theme="light"] .timeline-step {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.step-rail-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(240, 83, 101, 0.25);
  line-height: 1;
  margin-bottom: 12px;
}

.step-badge-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--coral-primary);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.step-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* 6. HEAR IT (Audio Showcase) */
.interactive-audio-showcase {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .interactive-audio-showcase {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06) !important;
}

.player-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .player-top-bar {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.player-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #10B981;
}

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

.player-model-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.audio-control-deck {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

[data-theme="light"] .audio-control-deck {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.audio-play-trigger {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--coral-primary);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(240, 83, 101, 0.4);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.audio-play-trigger:hover {
  transform: scale(1.06);
}

.audio-track-info {
  flex: 1;
}

.track-title-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.track-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}

.track-time {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-muted);
}

.audio-progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

[data-theme="light"] .audio-progress-bar-wrap {
  background: #E2E8F0;
}

.audio-progress-fill {
  height: 100%;
  background: var(--coral-primary);
  transition: width 0.3s linear;
}

.audio-transcript-sync-container {
  margin-bottom: 20px;
}

.transcript-header-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.transcript-dialogue-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 6px;
}

.dialogue-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.dialogue-avatar {
  font-size: 1.2rem;
  flex-shrink: 0;
  padding-top: 2px;
}

.dialogue-content strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.dialogue-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0;
}

.dialogue-ai {
  background: rgba(240, 83, 101, 0.08);
  border: 1px solid rgba(240, 83, 101, 0.2);
}

.dialogue-ai.active {
  box-shadow: 0 0 0 2px var(--coral-primary);
}

.dialogue-caller {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .dialogue-caller {
  background: #F8FAFC;
  border-color: #E2E8F0;
}

.audio-insight-note {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 14px 18px;
  border-left: 3px solid #10B981;
}

[data-theme="light"] .audio-insight-note {
  background: #F8FAFC;
}

.audio-insight-note p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-main);
  margin: 0;
}

/* 7. CAPABILITIES */
.capabilities-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

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

.cap-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 32px;
}

[data-theme="light"] .cap-card {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.cap-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .cap-card-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.cap-header-icon {
  font-size: 1.8rem;
}

.cap-type {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--coral-primary);
  letter-spacing: 0.5px;
}

.cap-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 2px 0 0;
}

.cap-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cap-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--text-main);
}

.check-coral {
  color: var(--coral-primary);
  font-weight: 900;
  flex-shrink: 0;
}

/* 8. SCENARIOS */
.scenarios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

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

.scenario-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  padding: 24px;
}

[data-theme="light"] .scenario-card {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.scenario-timestamp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .scenario-timestamp {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.time-badge {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--coral-primary);
  background: rgba(240, 83, 101, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.scenario-type {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.scenario-comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scen-row {
  font-size: 0.88rem;
  line-height: 1.5;
}

.scen-now {
  color: #EF4444;
}

.scen-now p {
  color: var(--text-muted);
  margin: 2px 0 0;
}

.scen-agent {
  color: #10B981;
}

.scen-agent p {
  color: var(--text-main);
  margin: 2px 0 0;
}

/* 9. INDUSTRY CARDS */
.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

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

@media (max-width: 576px) {
  .industry-cards-grid {
    grid-template-columns: 1fr;
  }
}

.industry-profile-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  padding: 26px 22px;
  transition: transform 0.2s ease;
}

[data-theme="light"] .industry-profile-card {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.industry-profile-card:hover {
  transform: translateY(-3px);
}

.ind-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(240, 83, 101, 0.1);
  color: var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ind-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.ind-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* 10. INTEGRATIONS */
.integrations-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 28px;
}

.integration-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

[data-theme="light"] .integration-badge-card {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.integration-badge-card img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.number-preservation-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 30px;
  padding: 12px 24px;
  max-width: 820px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--text-main);
  text-align: center;
}

[data-theme="light"] .number-preservation-callout {
  background: #F0FDF4;
}

/* 11. WHY US */
.comparison-tool-vs-managed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto 48px;
}

@media (max-width: 768px) {
  .comparison-tool-vs-managed {
    grid-template-columns: 1fr;
  }
}

.tool-column {
  border-radius: 22px;
  padding: 32px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
}

.column-raw-tool {
  opacity: 0.85;
}

.column-managed-service {
  border-color: rgba(240, 83, 101, 0.4);
  background: rgba(240, 83, 101, 0.04);
  box-shadow: 0 10px 30px rgba(240, 83, 101, 0.08);
}

[data-theme="light"] .column-managed-service {
  background: #FFFFFF !important;
  border-color: var(--coral-primary) !important;
  box-shadow: 0 10px 30px rgba(240, 83, 101, 0.1) !important;
}

.column-header-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.column-header-pill.badge-coral {
  background: var(--coral-primary);
  color: #FFFFFF;
}

.col-main-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
}

.col-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.col-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-main);
}

.cross-icon {
  color: #EF4444;
  font-weight: 900;
  flex-shrink: 0;
}

.build-phases-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

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

@media (max-width: 576px) {
  .build-phases-stepper {
    grid-template-columns: 1fr;
  }
}

.stepper-phase {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  padding: 24px;
}

[data-theme="light"] .stepper-phase {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.phase-number {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--coral-primary);
  background: rgba(240, 83, 101, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
}

.phase-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.phase-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}


/* ==========================================================================
   AI VOICE AGENT PAGE — HIGH HIERARCHY & LUXURY UI STYLES
   ========================================================================== */

.glow-hero-accent {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 83, 101, 0.15) 0%, rgba(99, 91, 255, 0.05) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.gradient-text-coral {
  background: linear-gradient(135deg, #F05365 0%, #FF7582 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-hero-primary-glow {
  background: linear-gradient(135deg, #F05365 0%, #E02845 100%);
  color: #FFFFFF !important;
  font-weight: 800;
  padding: 17px 34px;
  border-radius: 40px;
  box-shadow: 0 12px 32px rgba(240, 83, 101, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-hero-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(240, 83, 101, 0.5);
  color: #FFFFFF !important;
}

.btn-hero-secondary-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main) !important;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
  text-decoration: none;
}

[data-theme="light"] .btn-hero-secondary-glass {
  background: #F1F5F9;
  border-color: #CBD5E1;
  color: #0F172A !important;
}

.btn-hero-secondary-glass:hover {
  border-color: var(--coral-primary);
  color: var(--coral-primary) !important;
  transform: translateY(-2px);
}

.play-btn-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--coral-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow-icon {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-hero-primary-glow:hover .btn-arrow-icon {
  transform: translateX(4px);
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-main);
}

[data-theme="light"] .trust-badge-pill {
  background: #F8FAFC;
  border-color: #E2E8F0;
  color: #1E293B;
}

.trust-check-icon {
  color: #10B981;
  font-weight: 900;
}

/* Definition Top Row */
.definition-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-sparkle {
  color: #F59E0B;
}

.definition-scope {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Problem Moments Header */
.section-tag-warning {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
  color: #EF4444;
}

.moment-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.moment-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.moment-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #EF4444;
}

.chain-intro-wrap {
  margin-bottom: 20px;
}

.chain-warning-pill {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  margin-bottom: 8px;
}

/* Solution Highlight */
.highlight-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.highlight-sparkle-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.comp-step-body {
  flex: 1;
}

.comp-step-body strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.comp-step-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Stepped Timeline */
.step-top-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

/* Audio Player Streaming Badge */
.status-stream-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #10B981;
  letter-spacing: 0.5px;
}

.transcript-header-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Capabilities Card Styling */
.cap-card-inbound {
  border-top: 3px solid #00A1E0;
}

.cap-card-outbound {
  border-top: 3px solid var(--coral-primary);
}

.cap-header-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

[data-theme="light"] .cap-header-icon-box {
  background: #F1F5F9;
}

/* Scenarios Comparison Label */
.scen-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 3px;
  letter-spacing: 0.5px;
}

.scen-now .scen-label {
  color: #EF4444;
}

.scen-agent .scen-label {
  color: #10B981;
}

/* Hero Simulator Refinements */
.caller-avatar-pulse {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(240, 83, 101, 0.15);
  color: var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-glow-reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 28px 28px 0 0;
}


/* ==========================================================================
   AI VOICE AGENT PAGE — 100% DESIGN.MD ALIGNED SPECIFICATION
   ========================================================================== */

/* Hero Layout */
.voice-hero-section {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
}

@media (max-width: 768px) {
  .voice-hero-section {
    padding: 110px 0 50px;
  }
}

.voice-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .voice-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.voice-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral-light);
  border: 1px solid var(--dark-border-glow);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--coral-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pulse-dot-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-primary);
  box-shadow: 0 0 8px var(--coral-primary);
  animation: pulseNode 2s infinite;
}

.voice-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .voice-hero-title {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}

.voice-hero-subhead {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
}

.voice-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.voice-hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Live Simulation Card on Right */
.live-call-simulation-card {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card), 0 0 40px rgba(240, 83, 101, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

[data-theme="light"] .live-call-simulation-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: var(--shadow-card);
}

.sim-call-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 18px;
}

.caller-id-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.caller-avatar-pulse {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral-light);
  color: var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.caller-meta {
  display: flex;
  flex-direction: column;
}

.caller-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.call-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.call-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.15);
  color: var(--green-success);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.live-pulsing-node {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-success);
  box-shadow: 0 0 6px var(--green-success);
  animation: pulseNode 1.5s infinite;
}

.sim-transcript-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.transcript-line {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.55;
}

.line-caller {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
}

[data-theme="light"] .line-caller {
  background: #F1F5F9;
  border-color: #E2E8F0;
  color: #334155;
}

.line-ai {
  background: var(--coral-light);
  border: 1px solid var(--dark-border-glow);
  color: var(--text-main);
}

[data-theme="light"] .line-ai {
  background: #FFF1F2;
  border-color: rgba(240, 83, 101, 0.2);
  color: #0F172A;
}

.speaker-tag {
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 2px;
  display: block;
}

.line-caller .speaker-tag {
  color: var(--text-muted);
}

.line-ai .speaker-tag {
  color: var(--coral-primary);
}

.sim-automated-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.action-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-main);
}

[data-theme="light"] .action-pill {
  background: #F8FAFC;
  border-color: #E2E8F0;
}

/* Definition Strip */
.definition-strip-section {
  padding: 40px 0;
  background: var(--dark-bg);
}

.definition-box-card {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border-glow);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  box-shadow: var(--shadow-card);
}

[data-theme="light"] .definition-box-card {
  background: #FFFFFF;
  border-color: rgba(240, 83, 101, 0.25);
}

.definition-badge {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--coral-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.definition-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.definition-body-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Moments Grid */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

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

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

.moment-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition-smooth);
}

.moment-card:hover {
  transform: translateY(-3px);
  border-color: var(--dark-border-glow);
  box-shadow: var(--shadow-card);
}

[data-theme="light"] .moment-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.moment-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.moment-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Causal Chain */
.causal-chain-card {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}

[data-theme="light"] .causal-chain-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.causal-chain-intro {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 28px;
}

.causal-chain-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.chain-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  padding: 12px 20px;
  border-radius: var(--radius-full);
}

[data-theme="light"] .chain-step {
  background: #F1F5F9;
  border-color: #E2E8F0;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--coral-primary);
}

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

.chain-arrow {
  color: var(--coral-primary);
  font-size: 1.2rem;
  font-weight: 800;
}

.causal-chain-conclusion {
  font-size: 1.05rem;
  color: var(--text-main);
}

/* Solution Highlight & Before/After */
.solution-highlight-box {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border-glow);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  text-align: center;
  margin-top: 36px;
  margin-bottom: 48px;
}

[data-theme="light"] .solution-highlight-box {
  background: #FFFFFF;
  border-color: rgba(240, 83, 101, 0.25);
}

.highlight-text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-main);
  margin: 0;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-box {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}

[data-theme="light"] .comparison-box {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.box-without {
  border-top: 4px solid var(--red-error);
}

.box-with {
  border-top: 4px solid var(--coral-primary);
}

.comp-header {
  margin-bottom: 24px;
}

.comp-badge {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 8px;
}

.badge-loss {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

.badge-gain {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.comp-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
}

.comp-step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--dark-surface);
}

[data-theme="light"] .comp-step {
  background: #F1F5F9;
}

.step-time {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--coral-primary);
  white-space: nowrap;
}

.step-result {
  padding: 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.step-result.loss {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #EF4444;
}

.step-result.gain {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10B981;
}

/* Call Anatomy 8-Stage Timeline */
.call-anatomy-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

@media (max-width: 576px) {
  .call-anatomy-timeline {
    grid-template-columns: 1fr;
  }
}

.timeline-step {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-step:hover {
  transform: translateY(-3px);
  border-color: var(--dark-border-glow);
  box-shadow: var(--shadow-card);
}

[data-theme="light"] .timeline-step {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.step-rail-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--coral-primary);
}

.step-badge-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 10px;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Interactive Audio / Transcript Showcase */
.interactive-audio-showcase {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  margin-top: 48px;
}

[data-theme="light"] .interactive-audio-showcase {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.player-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 24px;
}

.player-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral-light);
  color: var(--coral-primary);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.voice-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral-primary);
}

.player-model-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.audio-transcript-sync-container {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

[data-theme="light"] .audio-transcript-sync-container {
  background: #F8FAFC;
  border-color: #E2E8F0;
}

.transcript-header-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.transcript-dialogue-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dialogue-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.dialogue-avatar {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.dialogue-content strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.dialogue-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.audio-insight-note {
  background: var(--coral-light);
  border: 1px solid var(--dark-border-glow);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-main);
}

/* Capabilities 2-Col Grid */
.capabilities-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

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

.cap-card {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

[data-theme="light"] .cap-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.cap-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cap-type {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--coral-primary);
}

.cap-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.cap-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cap-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--text-main);
}

.check-coral {
  color: var(--coral-primary);
  font-weight: 800;
}

/* Scenarios 4-Grid */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

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

.scenario-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

[data-theme="light"] .scenario-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.scenario-timestamp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.time-badge {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--coral-primary);
  background: var(--coral-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.scenario-type {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.scenario-comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scen-row {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  line-height: 1.55;
}

.scen-now {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: var(--text-muted);
}

.scen-agent {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--text-main);
}

/* Industry Cards */
.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

@media (max-width: 576px) {
  .industry-cards-grid {
    grid-template-columns: 1fr;
  }
}

.industry-profile-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition-smooth);
}

.industry-profile-card:hover {
  transform: translateY(-3px);
  border-color: var(--dark-border-glow);
  box-shadow: var(--shadow-card);
}

[data-theme="light"] .industry-profile-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.ind-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--coral-light);
  color: var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ind-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.ind-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Integrations Section */
.integrations-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.integration-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
}

[data-theme="light"] .integration-badge-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.integration-badge-card img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.number-preservation-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  padding: 16px 28px;
  border-radius: var(--radius-full);
  max-width: 780px;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

[data-theme="light"] .number-preservation-callout {
  background: #F1F5F9;
  border-color: #E2E8F0;
}

/* Why Us Comparison & Stepper */
.comparison-tool-vs-managed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .comparison-tool-vs-managed {
    grid-template-columns: 1fr;
  }
}

.tool-column {
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

[data-theme="light"] .tool-column {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.column-raw-tool {
  border-top: 4px solid var(--text-muted);
}

.column-managed-service {
  border-top: 4px solid var(--coral-primary);
}

.column-header-pill {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 12px;
  background: var(--dark-surface);
  color: var(--text-muted);
}

.column-header-pill.badge-coral {
  background: var(--coral-light);
  color: var(--coral-primary);
}

.col-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
}

.col-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.col-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--text-main);
}

.cross-icon {
  color: var(--text-muted);
  font-weight: 800;
}

.build-phases-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 576px) {
  .build-phases-stepper {
    grid-template-columns: 1fr;
  }
}

.stepper-phase {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

[data-theme="light"] .stepper-phase {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.phase-number {
  font-family: 'Space Mono', monospace;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--coral-primary);
  margin-bottom: 10px;
}

.phase-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.phase-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}


/* ==========================================================================
   FAQ PAGE — 100% FULLY RESPONSIVE & MOBILE-OPTIMIZED STYLES
   ========================================================================== */

.faq-hero-section {
  padding: 140px 0 60px;
  background: radial-gradient(circle at 50% 20%, rgba(240, 83, 101, 0.12) 0%, transparent 70%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-hero-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.faq-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto 36px;
}

.faq-search-wrapper {
  width: 100%;
  max-width: 620px;
  margin: 0 auto 28px;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 18px 24px 18px 52px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  background: var(--dark-card);
  border: 1.5px solid var(--dark-border);
  color: var(--text-main);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

[data-theme="light"] .faq-search-input {
  background: #FFFFFF;
  border-color: #CBD5E1;
  color: #0F172A;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-search-input:focus {
  border-color: var(--coral-primary) !important;
  box-shadow: 0 0 0 4px rgba(240, 83, 101, 0.18) !important;
  outline: none;
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--coral-primary);
  pointer-events: none;
  width: 22px;
  height: 22px;
}

/* Category Filter Chips */
.faq-category-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.faq-cat-chip {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 700;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

[data-theme="light"] .faq-cat-chip {
  background: #FFFFFF;
  border-color: #E2E8F0;
  color: #64748B;
}

.faq-cat-chip:hover {
  border-color: var(--coral-primary);
  color: var(--coral-primary);
}

.faq-cat-chip.active {
  background: var(--coral-primary);
  border-color: var(--coral-primary);
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(240, 83, 101, 0.35);
}

/* Accordion Container */
.faq-main-section {
  padding: 0 0 100px;
}

.faq-accordion-wrap,
.faq-accordion-wrapper,
#faqExtraContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  width: 100%;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-card);
}

[data-theme="light"] .faq-item {
  background: #FFFFFF !important;
  border-color: #E2E8F0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

.faq-item:hover {
  border-color: rgba(240, 83, 101, 0.35) !important;
}

.faq-item.active {
  border-color: var(--coral-primary) !important;
  box-shadow: 0 8px 30px rgba(240, 83, 101, 0.14) !important;
}

.faq-question-btn {
  width: 100%;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-main);
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  gap: 16px;
  transition: color 0.2s ease;
}

[data-theme="light"] .faq-question-btn {
  color: #0F172A !important;
}

.faq-question-btn:hover,
.faq-item.active .faq-question-btn {
  color: var(--coral-primary) !important;
}

.faq-icon {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--coral-primary);
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--coral-light);
  transition: transform 0.25s ease;
}

.faq-answer-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer-content {
  max-height: 1200px;
  opacity: 1;
  padding: 0 28px 24px;
}

.faq-answer-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 10px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

[data-theme="light"] .faq-answer-content p {
  color: #475569 !important;
}

.faq-answer-content strong {
  color: var(--text-main);
  font-weight: 700;
}

[data-theme="light"] .faq-answer-content strong {
  color: #0F172A !important;
}

.btn-show-more-faqs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1.02rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--coral-primary) 0%, #D83B4F 100%);
  color: #FFFFFF !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(240, 83, 101, 0.25);
  transition: var(--transition-smooth);
}

.btn-show-more-faqs:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(240, 83, 101, 0.4);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE BREAKPOINTS FOR FAQ PAGE
   ========================================================================== */

@media (max-width: 992px) {
  .faq-hero-section {
    padding: 120px 0 50px;
  }
  .faq-hero-title {
    font-size: 2.8rem;
  }
  .faq-hero-subtitle {
    font-size: 1.05rem;
  }
  .faq-question-btn {
    padding: 18px 22px;
    font-size: 1rem;
  }
  .faq-answer-content {
    padding: 0 22px;
  }
  .faq-item.active .faq-answer-content {
    padding: 0 22px 20px;
  }
}

@media (max-width: 768px) {
  .faq-hero-section {
    padding: 100px 0 40px;
  }
  .faq-hero-container {
    padding: 0 16px;
  }
  .faq-hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .faq-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .faq-search-wrapper {
    margin-bottom: 20px;
  }
  .faq-search-input {
    padding: 14px 20px 14px 44px;
    font-size: 0.92rem;
  }
  .faq-search-icon {
    left: 16px;
    width: 18px;
    height: 18px;
  }
  .faq-category-chips {
    gap: 8px;
    margin-bottom: 28px;
  }
  .faq-cat-chip {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
  .faq-main-section {
    padding: 0 0 70px;
  }
  .faq-question-btn {
    padding: 16px 18px;
    font-size: 0.94rem;
    gap: 12px;
  }
  .faq-icon {
    width: 22px;
    height: 22px;
    font-size: 1.2rem;
  }
  .faq-answer-content {
    padding: 0 18px;
  }
  .faq-item.active .faq-answer-content {
    padding: 0 18px 18px;
  }
  .faq-answer-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .btn-show-more-faqs {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .faq-hero-title {
    font-size: 1.85rem;
  }
  .faq-question-btn {
    padding: 14px 14px;
    font-size: 0.88rem;
  }
  .faq-answer-content {
    padding: 0 14px;
  }
  .faq-item.active .faq-answer-content {
    padding: 0 14px 16px;
  }
  .faq-answer-content p {
    font-size: 0.86rem;
  }
}

/* Footer Direct Contact Links */
.footer-contact-info {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #F8FAFC !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-contact-link.phone-link {
  color: #F8FAFC !important;
}

.footer-contact-link.phone-link:hover {
  color: var(--coral-primary, #F05365) !important;
  transform: translateX(4px);
}

.footer-contact-link.email-link {
  color: var(--coral-primary, #F05365) !important;
}

.footer-contact-link.email-link:hover {
  color: #FFFFFF !important;
  transform: translateX(4px);
}

.footer-contact-link .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  transition: background 0.2s ease;
}

.footer-contact-link:hover .contact-icon {
  background: rgba(240, 83, 101, 0.25);
}

/* ==========================================================================
   CASE STUDY COMPONENTS (DESIGN.md Compliant)
   ========================================================================== */

.case-study-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.case-study-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: center;
}

.case-study-hero .browser-chrome-frame {
  width: 100%;
  max-width: 720px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 50px rgba(240, 83, 101, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg, 24px);
  transform: scale(1.06);
  transform-origin: center right;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-hero .browser-chrome-frame:hover {
  transform: scale(1.08);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.8), 0 0 60px rgba(240, 83, 101, 0.28);
}

[data-theme="light"] .case-study-hero .browser-chrome-frame {
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.12), 0 0 40px rgba(240, 83, 101, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 1100px) {
  .case-study-hero .browser-chrome-frame {
    transform: none;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .case-study-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Browser Chrome Frame for Real Screenshots */
.browser-chrome-frame {
  background: var(--dark-surface, #12151B);
  border: 1px solid var(--dark-border, rgba(255, 255, 255, 0.08));
  border-radius: var(--radius-md, 14px);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  position: relative;
}

[data-theme="light"] .browser-chrome-frame {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.08);
}

.browser-chrome-header {
  height: 38px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--dark-border, rgba(255, 255, 255, 0.08));
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
}

[data-theme="light"] .browser-chrome-header {
  background: #F8FAFC;
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.chrome-dot.dot-red { background: #FF5F56; }
.chrome-dot.dot-yellow { background: #FFBD2E; }
.chrome-dot.dot-green { background: #27C93F; }

.chrome-title {
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.browser-chrome-body {
  padding: 0;
  position: relative;
}

.browser-chrome-body img {
  width: 100%;
  height: auto;
  display: block;
}

/* Annotation Overlay Pills */
.annotated-frame-wrap {
  position: relative;
}

.annotation-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 83, 101, 0.95);
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(240, 83, 101, 0.4);
  letter-spacing: 0.2px;
}

.annotation-badge.annotation-green {
  background: rgba(16, 185, 129, 0.95);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.annotation-callout-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--dark-border, rgba(255, 255, 255, 0.06));
}

/* Project Details Metadata Grid */
.project-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

@media (max-width: 540px) {
  .project-details-grid {
    grid-template-columns: 1fr;
  }
}

.project-meta-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.project-meta-card:hover {
  border-color: var(--dark-border-glow);
  transform: translateY(-2px);
}

.project-meta-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-meta-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
}

/* Paired Evidence Grid */
.paired-evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 900px) {
  .paired-evidence-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Technical Architecture Breakdown Cards */
.tech-spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--dark-border);
  align-items: baseline;
}

@media (max-width: 640px) {
  .tech-spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.tech-spec-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--coral-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-spec-body {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
}

/* ==========================================================================
   INTERACTIVE INCOMING AI VOICE CALL WIDGET (CENTER BOTTOM CAPSULE)
   ========================================================================== */
.incoming-call-overlay {
  position: fixed;
  bottom: 24px;
  left: 50%;
  right: auto;
  z-index: 99999;
  font-family: 'Plus Jakarta Sans', sans-serif;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(35px) scale(0.94);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.incoming-call-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.incoming-call-card {
  width: auto;
  min-width: 440px;
  max-width: min(540px, calc(100vw - 32px));
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 35px rgba(240, 83, 101, 0.22);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .incoming-call-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16), 0 0 25px rgba(240, 83, 101, 0.16);
}

.incoming-call-glow {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(240, 83, 101, 0.3) 0%, rgba(16, 185, 129, 0) 70%);
  pointer-events: none;
  filter: blur(30px);
}

/* Avatar on the Left */
.incoming-avatar-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.incoming-avatar-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border: 2px solid var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(240, 83, 101, 0.35);
}

.incoming-avatar-img img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.caller-ripple-1,
.caller-ripple-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--coral-primary);
  opacity: 0.8;
  animation: caller-ripple 2s infinite cubic-bezier(0.2, 0.6, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

.caller-ripple-2 {
  animation-delay: 0.8s;
}

@keyframes caller-ripple {
  0% {
    width: 46px;
    height: 46px;
    opacity: 0.9;
  }
  100% {
    width: 86px;
    height: 86px;
    opacity: 0;
  }
}

/* Center Info Column */
.incoming-caller-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.incoming-caller-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.incoming-caller-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.incoming-caller-tag .pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
  animation: tag-pulse 1.2s infinite ease-in-out;
}

@keyframes tag-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.incoming-caller-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-heading, #F8FAFC);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="light"] .incoming-caller-name {
  color: #0F172A;
}

.incoming-caller-status {
  font-size: 0.76rem;
  color: var(--text-muted, #94A3B8);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

/* Call Actions on the Right */
.incoming-call-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.call-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.call-action-btn svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

/* Decline Button */
.call-btn-decline {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

.call-btn-decline:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
}

.call-btn-decline svg {
  transform: rotate(135deg);
}

/* Accept Button */
.call-btn-accept {
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.5);
  animation: phone-shake 1.8s infinite ease-in-out;
}

.call-btn-accept:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.7);
  animation: none;
}

@keyframes phone-shake {
  0%, 100% { transform: rotate(0) scale(1); }
  10%, 30%, 50% { transform: rotate(-8deg) scale(1.05); }
  20%, 40% { transform: rotate(8deg) scale(1.05); }
  60% { transform: rotate(0) scale(1); }
}

/* Active In-Call View */
.incoming-call-card.in-call .incoming-caller-tag {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #3B82F6;
}

.incoming-call-card.in-call .incoming-caller-tag .pulse-dot {
  background: #3B82F6;
  box-shadow: 0 0 6px #3B82F6;
}

.incoming-call-card.in-call .caller-ripple-1,
.incoming-call-card.in-call .caller-ripple-2 {
  display: none;
}

.call-sound-wave {
  display: none;
  align-items: center;
  gap: 3px;
  height: 16px;
  margin-top: 3px;
}

.incoming-call-card.in-call .call-sound-wave {
  display: flex;
}

.call-sound-wave span {
  width: 3px;
  height: 6px;
  background: var(--coral-primary);
  border-radius: 3px;
  animation: sound-wave 1s infinite ease-in-out;
}

.call-sound-wave span:nth-child(1) { animation-delay: 0.1s; }
.call-sound-wave span:nth-child(2) { animation-delay: 0.3s; }
.call-sound-wave span:nth-child(3) { animation-delay: 0.2s; }
.call-sound-wave span:nth-child(4) { animation-delay: 0.5s; }
.call-sound-wave span:nth-child(5) { animation-delay: 0.4s; }
.call-sound-wave span:nth-child(6) { animation-delay: 0.2s; }
.call-sound-wave span:nth-child(7) { animation-delay: 0.6s; }

@keyframes sound-wave {
  0%, 100% { height: 4px; }
  50% { height: 16px; }
}

@media (max-width: 540px) {
  .incoming-call-overlay {
    bottom: 16px;
    width: calc(100vw - 24px);
    max-width: 100vw;
  }
  .incoming-call-card {
    min-width: unset;
    width: 100%;
    border-radius: 24px;
    padding: 10px 14px;
    gap: 10px;
  }
  .incoming-caller-name {
    font-size: 0.85rem;
  }
  .incoming-caller-tag {
    display: none;
  }
}

/* Live Demo Calls Limit / Notice State */
.incoming-call-card.notice-mode {
  border-radius: 20px;
  min-width: unset;
  width: auto;
  max-width: min(520px, calc(100vw - 32px));
  padding: 14px 18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.incoming-call-card.notice-mode .notice-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.incoming-call-card.notice-mode .notice-msg {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0;
}

[data-theme="light"] .incoming-call-card.notice-mode .notice-msg {
  color: #1E293B;
}

.incoming-call-card.notice-mode .notice-btn-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.btn-notice-contact {
  background: var(--coral-primary);
  color: #FFFFFF;
  border: none;
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-notice-contact:hover {
  background: #E04355;
  transform: translateY(-1px);
}

.btn-notice-dismiss {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

[data-theme="light"] .btn-notice-dismiss {
  border-color: rgba(0, 0, 0, 0.15);
  color: #64748B;
}

@keyframes form-highlight-glow {
  0% { box-shadow: 0 0 0 0 rgba(240, 83, 101, 0.7); }
  40% { box-shadow: 0 0 40px 10px rgba(240, 83, 101, 0.4); border-color: var(--coral-primary) !important; }
  100% { box-shadow: 0 0 0 0 rgba(240, 83, 101, 0); }
}

.final-contact-form-card.form-highlighted {
  animation: form-highlight-glow 2.5s ease-out;
  border-color: var(--coral-primary) !important;
}

/* ==========================================================================
   LIVE ACTIVITY / PROJECT COMPLETED SOCIAL PROOF POPUP (1ST AUTOMATE BRANDED)
   ========================================================================== */
.live-activity-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 12px 14px 14px 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(240, 83, 101, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px) scale(0.96);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.live-activity-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

[data-theme="light"] .live-activity-toast {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(240, 83, 101, 0.22);
  box-shadow: 0 14px 35px rgba(240, 83, 101, 0.12), 0 4px 18px rgba(0, 0, 0, 0.06);
}

/* 1st Automate Radar / Map Thumbnail */
.toast-map-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border: 1.5px solid rgba(240, 83, 101, 0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(240, 83, 101, 0.2);
}

[data-theme="light"] .toast-map-thumb {
  background: linear-gradient(135deg, #FFF5F6, #FEE2E2);
  border-color: rgba(240, 83, 101, 0.35);
  box-shadow: 0 4px 12px rgba(240, 83, 101, 0.15);
}

.toast-map-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(240, 83, 101, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(240, 83, 101, 0.12) 1px, transparent 1px);
  background-size: 8px 8px;
}

.toast-radar-ring {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--coral-primary);
  opacity: 0.8;
  animation: radar-expand 2s infinite cubic-bezier(0.2, 0.6, 0.3, 1);
}

.toast-radar-dot {
  position: relative;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral-primary);
  box-shadow: 0 0 10px var(--coral-primary);
}

@keyframes radar-expand {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Toast Content */
.toast-body {
  flex: 1;
  min-width: 0;
}

.toast-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.toast-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--text-heading, #F8FAFC);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-title .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
  flex-shrink: 0;
}

[data-theme="light"] .toast-title {
  color: #0F172A;
}

.toast-close-btn {
  background: none;
  border: none;
  color: var(--text-muted, #94A3B8);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 6px;
  transition: color 0.2s ease;
}

.toast-close-btn:hover {
  color: var(--coral-primary);
}

.toast-project-text {
  font-size: 0.76rem;
  color: var(--text-muted, #94A3B8);
  margin: 0 0 6px 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-project-name {
  color: var(--text-main, #E2E8F0);
  font-weight: 600;
}

[data-theme="light"] .toast-project-name {
  color: #1E293B;
}

.toast-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.toast-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-muted, #94A3B8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="light"] .toast-location {
  color: #64748B;
}

.toast-tag-badge {
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(240, 83, 101, 0.12);
  color: var(--coral-primary);
  border: 1px solid rgba(240, 83, 101, 0.25);
  white-space: nowrap;
}

/* Bottom Progress Countdown Bar */
.toast-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2.5px;
  background: linear-gradient(to right, #F05365, #FF7B89);
  width: 100%;
  transform-origin: left;
  transform: scaleX(1);
}

.toast-progress-bar.animate {
  animation: toast-timer linear forwards;
}

@keyframes toast-timer {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

@media (max-width: 600px) {
  .live-activity-toast {
    bottom: 84px; /* Sit above bottom call capsule on mobile */
    left: 16px;
    right: 16px;
    width: auto;
    max-width: calc(100vw - 32px);
  }
}

/* ==========================================================================
   DASHBOARD TYPE 2: ANALYTICS OVERVIEW (Image 1 Style)
   ========================================================================== */
.analytics-dash-container {
  padding: 16px;
  background: #F8FAFC;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1E293B;
}

[data-theme="dark"] .analytics-dash-container {
  background: #0B1120;
  color: #F1F5F9;
}

/* Top Bar */
.analytics-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

[data-theme="dark"] .analytics-top-bar {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.analytics-brand-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.analytics-brand-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-heading);
}

.analytics-search-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  padding: 6px 14px;
  border-radius: 20px;
  width: 260px;
  font-size: 0.82rem;
  color: #64748B;
  border: 1px solid transparent;
}

[data-theme="dark"] .analytics-search-input {
  background: rgba(255, 255, 255, 0.06);
  color: #94A3B8;
}

.analytics-user-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #64748B;
  font-size: 0.95rem;
}

[data-theme="dark"] .analytics-user-actions {
  color: #94A3B8;
}

.analytics-avatar-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--coral-primary), #FF7B89);
  color: #FFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Sub Header */
.analytics-sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.analytics-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.analytics-page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

[data-theme="dark"] .analytics-page-title {
  color: #F8FAFC;
}

.analytics-view-toggles {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.04);
  padding: 3px;
  border-radius: 8px;
}

[data-theme="dark"] .analytics-view-toggles {
  background: rgba(255, 255, 255, 0.06);
}

.analytics-view-btn {
  padding: 4px 8px;
  border: none;
  background: transparent;
  color: #64748B;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 6px;
}

.analytics-view-btn.active {
  background: #FFFFFF;
  color: #0F172A;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .analytics-view-btn.active {
  background: #1E293B;
  color: #F8FAFC;
}

.analytics-filter-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.analytics-btn-pill {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
}

[data-theme="dark"] .analytics-btn-pill {
  background: #1E293B;
  border-color: rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
}

.analytics-btn-pill.primary {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

[data-theme="dark"] .analytics-btn-pill.primary {
  background: var(--coral-primary);
  border-color: var(--coral-primary);
}

/* Analytics Layout (Sidebar + Main Grid) */
.analytics-main-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
}

.analytics-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.analytics-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #64748B;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

[data-theme="dark"] .analytics-nav-item {
  color: #94A3B8;
}

.analytics-nav-item:hover {
  background: rgba(0, 0, 0, 0.03);
  color: #0F172A;
}

[data-theme="dark"] .analytics-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #F8FAFC;
}

.analytics-nav-item.active {
  background: #FFF1F2;
  color: var(--coral-primary);
  font-weight: 700;
}

[data-theme="dark"] .analytics-nav-item.active {
  background: rgba(240, 83, 101, 0.15);
  color: #FF7B89;
}

/* Widgets Grid */
.analytics-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.analytics-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

[data-theme="dark"] .analytics-card {
  background: #131C31;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.card-header-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.card-title-sm {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1E293B;
  margin: 0;
}

[data-theme="dark"] .card-title-sm {
  color: #F1F5F9;
}

.card-metric-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
  margin: 4px 0 2px 0;
}

[data-theme="dark"] .card-metric-val {
  color: #FFFFFF;
}

.card-subtext-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-block;
}

.card-dropdown-tag {
  font-size: 0.72rem;
  color: #64748B;
  background: rgba(0, 0, 0, 0.04);
  padding: 3px 8px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

[data-theme="dark"] .card-dropdown-tag {
  background: rgba(255, 255, 255, 0.06);
  color: #94A3B8;
}

/* Sales Dynamics Chart Bars */
.sales-dynamics-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  height: 90px;
  margin-top: 14px;
}

.dyn-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.dyn-bar {
  width: 100%;
  border-radius: 6px;
  background: #FECDD3;
  transition: all 0.3s ease;
  position: relative;
}

[data-theme="dark"] .dyn-bar {
  background: rgba(240, 83, 101, 0.25);
}

.dyn-bar-col.active .dyn-bar {
  background: var(--coral-primary);
}

.dyn-bar-col.active .dyn-tooltip {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #0F172A;
  color: #FFF;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  white-space: nowrap;
}

.dyn-month {
  font-size: 0.7rem;
  color: #94A3B8;
  font-weight: 600;
}

/* Geographics Map Visual */
.geographics-map-box {
  position: relative;
  height: 90px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-map-svg {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.geo-pin {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-primary);
  box-shadow: 0 0 6px var(--coral-primary);
  border: 1.5px solid #FFFFFF;
}

.geo-pin.pin-1 { top: 35%; left: 24%; }
.geo-pin.pin-2 { top: 28%; left: 52%; }
.geo-pin.pin-3 { top: 48%; left: 62%; }
.geo-pin.pin-4 { top: 62%; left: 78%; }

.geo-badge-tooltip {
  position: absolute;
  top: 12%;
  left: 52%;
  background: #0F172A;
  color: #FFF;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
}

/* Balance Card (VISA) */
.card-balance-theme {
  background: linear-gradient(135deg, #FFF1F2 0%, #FFFFFF 100%);
  border-color: rgba(240, 83, 101, 0.2);
}

[data-theme="dark"] .card-balance-theme {
  background: linear-gradient(135deg, #1A1F36 0%, #131C31 100%);
  border-color: rgba(240, 83, 101, 0.3);
}

.card-visa-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #1A1F36;
  font-style: italic;
}

[data-theme="dark"] .card-visa-brand {
  color: #FFFFFF;
}

.card-num-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #64748B;
  margin-top: 10px;
}

/* Income Statistic Area Chart */
.income-stat-chart {
  width: 100%;
  height: 80px;
  margin-top: 10px;
}


/* ==========================================================================
   DASHBOARD TYPE 3: LEAD OPERATIONS COCKPIT (Image 2 Style)
   ========================================================================== */
.cockpit-dash-container {
  padding: 18px;
  background: #080D1A;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #E2E8F0;
}

/* Top Header */
.cockpit-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 16px;
}

.cockpit-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 20px;
  width: 280px;
  font-size: 0.82rem;
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cockpit-user-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #F8FAFC;
}

.cockpit-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-primary), #E11D48);
  border: 1.5px solid var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Welcome Row */
.cockpit-welcome-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.cockpit-welcome-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.cockpit-welcome-sub {
  font-size: 0.82rem;
  color: #94A3B8;
  margin: 2px 0 0 0;
}

.cockpit-date-picker {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #E2E8F0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Main Layout Grid */
.cockpit-main-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
}

/* Cockpit Left Sidebar */
.cockpit-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cockpit-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 10px;
  color: #94A3B8;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cockpit-nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
}

.cockpit-nav-item.active {
  background: var(--coral-primary);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(240, 83, 101, 0.4);
}

.cockpit-promo-card {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px;
  font-size: 0.75rem;
}

.cockpit-promo-card strong {
  color: #FFFFFF;
  display: block;
  margin: 4px 0;
  font-size: 0.8rem;
}

.cockpit-promo-card p {
  color: #94A3B8;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.cockpit-promo-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFF;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
}

/* Center Cockpit Area */
.cockpit-center-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 4 Top KPI Cards */
.cockpit-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cockpit-kpi-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px;
  position: relative;
}

.cockpit-kpi-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(240, 83, 101, 0.15);
  color: var(--coral-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 10px;
}

.cockpit-kpi-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #94A3B8;
  margin-bottom: 4px;
}

.cockpit-kpi-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.cockpit-kpi-desc {
  font-size: 0.72rem;
  color: #64748B;
  line-height: 1.35;
  margin: 0;
}

/* Middle Split: Lead Overview Chart + Recent Activity Feed */
.cockpit-middle-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
}

.cockpit-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px;
}

.cockpit-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cockpit-card-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

/* Lead Overview Area Chart */
.lead-chart-box {
  height: 120px;
  position: relative;
}

.lead-tally-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 8px;
  overflow-x: auto;
}

.lead-tally-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tally-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.tally-lbl {
  font-size: 0.68rem;
  color: #94A3B8;
}

.tally-badge {
  font-size: 0.65rem;
  color: #10B981;
  font-weight: 700;
}

/* Recent Activity Feed */
.activity-feed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.activity-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.activity-icon-phone { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.activity-icon-chat { background: rgba(168, 85, 247, 0.15); color: #A855F7; }
.activity-icon-calendar { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }
.activity-icon-mail { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }
.activity-icon-check { background: rgba(16, 185, 129, 0.2); color: #10B981; }

.activity-feed-text {
  flex: 1;
  min-width: 0;
}

.activity-title-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
}

.activity-time-stamp {
  font-size: 0.7rem;
  color: #64748B;
  font-weight: normal;
}

.activity-sub-desc {
  font-size: 0.72rem;
  color: #94A3B8;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cockpit-view-all-btn {
  width: 100%;
  background: rgba(240, 83, 101, 0.1);
  border: 1px solid rgba(240, 83, 101, 0.3);
  color: var(--coral-primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
}

/* Bottom Strip: 3 Mini Widgets */
.cockpit-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-cockpit-widget {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-donut-box {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE STYLING FOR ENTIRE DASHBOARD SHOWCASE
   ========================================================================== */

/* Laptops & Tablets (Max 1180px) */
@media (max-width: 1180px) {
  .analytics-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cockpit-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cmd-center-grid {
    grid-template-columns: 1fr;
  }
}

/* Medium Tablets & Mobile Breakpoints (Max 992px) */
@media (max-width: 992px) {
  .dashboard-mode-selector {
    max-width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 16px;
    padding: 6px 10px;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
  }

  .mode-tab-btn {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 0.84rem;
    flex-shrink: 0;
  }

  .dashboard-window {
    transform: none !important;
    border-radius: 16px;
  }

  .dashboard-perspective-wrapper {
    perspective: none;
    padding: 0;
  }

  .cockpit-middle-grid {
    grid-template-columns: 1fr;
  }

  .cockpit-bottom-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile Devices (Max 768px) */
@media (max-width: 768px) {
  .analytics-dash-container,
  .cockpit-dash-container {
    padding: 12px;
  }

  /* Top Bars Stacking */
  .analytics-top-bar,
  .cockpit-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .analytics-search-input,
  .cockpit-search {
    width: 100%;
  }

  .analytics-user-actions,
  .cockpit-user-badge {
    width: 100%;
    justify-content: space-between;
  }

  /* Sub Headers */
  .analytics-sub-header,
  .cockpit-welcome-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .analytics-filter-btns,
  .cockpit-date-picker {
    width: 100%;
    justify-content: space-between;
  }

  /* Sidebars Folding to Horizontal Scroll */
  .analytics-main-layout,
  .cockpit-main-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .analytics-sidebar,
  .cockpit-sidebar {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 6px;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .analytics-nav-item,
  .cockpit-nav-item {
    white-space: nowrap;
    padding: 7px 12px;
    font-size: 0.78rem;
    flex-shrink: 0;
  }

  .cockpit-promo-card {
    display: none;
  }

  /* Grid Stacking */
  .analytics-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cockpit-kpi-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dash-kpi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
  }

  .dash-kpi-card {
    padding: 12px;
  }

  .kpi-value-row .kpi-number {
    font-size: 1.2rem;
  }

  .dash-window-header {
    padding: 10px 14px;
  }

  .dash-window-header .window-title {
    font-size: 0.72rem;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dash-window-header .window-status {
    font-size: 0.7rem;
  }
}

/* Small Mobile Screens (Max 480px) */
@media (max-width: 480px) {
  .dash-kpi-grid {
    grid-template-columns: 1fr;
  }

  .lead-tally-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .lead-tally-item {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .card-metric-val {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   INTERACTIVE SUB-PANES & DATA VIEWS FOR DASHBOARDS
   ========================================================================== */
.analytics-content-pane,
.cockpit-content-pane {
  display: none;
  width: 100%;
  animation: fadeInPane 0.25s ease-in-out forwards;
}

.analytics-content-pane.active,
.cockpit-content-pane.active {
  display: block;
}

@keyframes fadeInPane {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Data Tables */
.dash-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  text-align: left;
}

.dash-data-table th {
  padding: 10px 14px;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

[data-theme="light"] .dash-data-table th {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.dash-data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-main);
}

[data-theme="light"] .dash-data-table td {
  border-bottom-color: rgba(0, 0, 0, 0.04);
}

.dash-data-table tr:hover td {
  background: rgba(240, 83, 101, 0.04);
}

/* Status Badges */
.dash-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-pending {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-brand {
  background: rgba(240, 83, 101, 0.15);
  color: var(--coral-primary);
  border: 1px solid rgba(240, 83, 101, 0.3);
}

/* Kanban Columns */
.cockpit-kanban-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1024px) {
  .cockpit-kanban-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cockpit-kanban-board {
    grid-template-columns: 1fr;
  }
}

.kanban-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

[data-theme="light"] .kanban-col {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}

.kanban-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-heading);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kanban-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px;
  font-size: 0.78rem;
}

[data-theme="light"] .kanban-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.kanban-card-title {
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.kanban-card-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

/* Settings Form Grid */
.dash-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .dash-settings-grid {
    grid-template-columns: 1fr;
  }
}

.settings-card-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px;
}

[data-theme="light"] .settings-card-box {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .settings-row {
  border-bottom-color: rgba(0, 0, 0, 0.04);
}

.settings-row:last-child {
  border-bottom: none;
}

/* Toggle Switch */
.dash-toggle-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}

.dash-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.dash-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #475569;
  transition: .3s;
  border-radius: 22px;
}

.dash-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.dash-toggle-switch input:checked + .dash-slider {
  background-color: #10B981;
}

.dash-toggle-switch input:checked + .dash-slider:before {
  transform: translateX(16px);
}






.tool-glass-card .tool-icon-n8n,
.tool-glass-card img[src*="n8n"] {
  width: 44px !important;
  height: 28px !important;
  max-width: 46px !important;
  object-fit: contain;
}



/* ==========================================================================
   ANIMATED RADIAL AI VOICE CONSTELLATION HUB (1ST AUTOMATE BRAND THEME)
   ========================================================================== */

.ai-voice-constellation-hub {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

/* Concentric Dashed Radar Orbit Rings */
.constellation-orbits-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  margin-top: -24px;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(240, 83, 101, 0.22);
  transform-origin: center center;
}

[data-theme="light"] .orbit-ring {
  border-color: rgba(240, 83, 101, 0.18);
}

.ring-inner {
  width: 190px;
  height: 190px;
}

.ring-mid {
  width: 310px;
  height: 310px;
  animation: orbitSpinSlow 90s linear infinite;
}

.ring-outer {
  width: 420px;
  height: 420px;
  animation: orbitSpinReverse 110s linear infinite;
}

@keyframes orbitSpinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Radiating Spoke Connector Lines SVG */
.constellation-spokes-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.spoke-line {
  stroke: rgba(240, 83, 101, 0.22);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}

[data-theme="light"] .spoke-line {
  stroke: rgba(240, 83, 101, 0.18);
}

.active-spoke {
  stroke: rgba(240, 83, 101, 0.45);
  stroke-dasharray: none;
}

/* Center Glowing Pulsing AI Core Orb (1st Automate Coral Theme) */
.constellation-core-orb {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.orb-sphere {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7582 0%, #F05365 50%, #D93B4E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 0 50px rgba(240, 83, 101, 0.65), 0 0 20px rgba(255, 117, 130, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 3;
  animation: orbBreathe 4s ease-in-out infinite alternate;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.orb-sphere:hover {
  transform: scale(1.1);
  box-shadow: 0 0 70px rgba(240, 83, 101, 0.9), 0 0 30px rgba(255, 117, 130, 0.65);
}

.orb-sparkle-icon {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

@keyframes orbBreathe {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Sonar Radar Pulse Waves in Coral */
.orb-radar-wave {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 83, 101, 0.55);
  pointer-events: none;
  z-index: 1;
  animation: radarWaveExpand 4.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 1.5s; }
.wave-3 { animation-delay: 3s; }

@keyframes radarWaveExpand {
  0% {
    width: 82px;
    height: 82px;
    opacity: 0.85;
    transform: scale(1);
  }
  100% {
    width: 250px;
    height: 250px;
    opacity: 0;
    transform: scale(1);
  }
}

/* Floating Action Badges (Nodes) */
.constellation-badge {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(18, 21, 27, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4), 0 0 16px rgba(240, 83, 101, 0.12);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  animation: badgeLevitate 4.5s ease-in-out infinite alternate;
}

[data-theme="light"] .constellation-badge {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.constellation-badge:hover {
  transform: scale(1.18) translateY(-4px) !important;
  z-index: 25;
  border-color: var(--coral-primary);
  box-shadow: 0 14px 32px rgba(240, 83, 101, 0.35);
}

.badge-top-pen {
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.badge-top-right-arrow {
  top: 96px;
  right: 80px;
  animation-delay: 0.6s;
}

.badge-inner-lightning {
  top: 118px;
  right: 175px;
  animation-delay: 1.2s;
}

.badge-top-left-chat {
  top: 104px;
  left: 125px;
  animation-delay: 1.8s;
}

.badge-inner-wand {
  top: 124px;
  left: 195px;
  animation-delay: 2.4s;
}

.badge-bottom-phone {
  top: 262px;
  left: 110px;
  animation-delay: 3s;
}

@keyframes badgeLevitate {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

.badge-top-pen {
  animation: badgeLevitateTop 4.5s ease-in-out infinite alternate;
}

@keyframes badgeLevitateTop {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(-7px); }
}

/* Floating Live Event Notification Cards */
.constellation-event-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(18, 21, 27, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 20px rgba(240, 83, 101, 0.1);
  backdrop-filter: blur(16px);
  z-index: 12;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .constellation-event-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.constellation-event-card:hover {
  transform: translateY(-5px) scale(1.03) !important;
  border-color: rgba(240, 83, 101, 0.4);
  box-shadow: 0 18px 40px rgba(240, 83, 101, 0.18);
}

.event-card-left {
  top: 184px;
  left: 28px;
  animation: cardFloatLeft 4.5s ease-in-out infinite alternate;
}

.event-card-right {
  top: 204px;
  right: 24px;
  animation: cardFloatRight 5s ease-in-out infinite alternate;
}

@keyframes cardFloatLeft {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes cardFloatRight {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

.event-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-amber {
  background: #F59E0B;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
}

.dot-coral {
  background: #F05365;
  box-shadow: 0 0 10px rgba(240, 83, 101, 0.85);
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}

.event-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Bottom Performance KPI Strip */
.constellation-kpi-bar {
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  border-radius: 20px;
  background: rgba(18, 21, 27, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 25px rgba(240, 83, 101, 0.08);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 14px 20px;
  z-index: 15;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.constellation-kpi-bar:hover {
  border-color: rgba(240, 83, 101, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(240, 83, 101, 0.15);
}

[data-theme="light"] .constellation-kpi-bar {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .constellation-kpi-bar:hover {
  border-color: rgba(240, 83, 101, 0.3);
  box-shadow: 0 18px 40px rgba(240, 83, 101, 0.12);
}

.kpi-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kpi-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-phone {
  background: rgba(240, 83, 101, 0.12);
}

.icon-calendar {
  background: rgba(245, 158, 11, 0.12);
}

.icon-messages {
  background: rgba(16, 185, 129, 0.12);
}

.kpi-content {
  display: flex;
  flex-direction: column;
}

.kpi-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.kpi-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.kpi-bar-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .kpi-bar-divider {
  background: rgba(0, 0, 0, 0.08);
}

/* Constellation Hub Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
  .ai-voice-constellation-hub {
    margin-top: 30px;
  }
}

@media (max-width: 580px) {
  .ai-voice-constellation-hub {
    max-width: 100%;
    height: 440px;
    transform: scale(0.88);
    transform-origin: center top;
  }
  .event-card-left {
    left: 4px;
    padding: 8px 12px;
  }
  .event-card-right {
    right: 4px;
    padding: 8px 12px;
  }
  .constellation-kpi-bar {
    left: 0;
    right: 0;
    padding: 10px 14px;
    gap: 8px;
  }
  .kpi-bar-item {
    gap: 8px;
  }
  .kpi-val {
    font-size: 0.95rem;
  }
}


/* ==========================================================================
   THANK YOU / STRATEGY CALL CONFIRMED PAGE (PREMIUM THEME-MATCHED)
   ========================================================================== */
.thank-you-hero-section {
  text-align: center;
}

.thank-you-badge-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-core-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45);
}

.badge-ring-pulse,
.badge-ring-pulse-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #10B981;
  opacity: 0.8;
  animation: badge-pulse 2.4s infinite cubic-bezier(0.2, 0.6, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

.badge-ring-pulse-2 {
  animation-delay: 0.9s;
}

@keyframes badge-pulse {
  0% { width: 80px; height: 80px; opacity: 0.8; }
  100% { width: 140px; height: 140px; opacity: 0; }
}

.thank-you-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.thank-you-subtitle {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 32px;
}

[data-theme="light"] .thank-you-subtitle {
  color: #334155 !important;
}

.thank-you-email-link {
  color: var(--coral-primary);
  font-weight: 700;
  text-decoration: underline;
}

/* Status Bar Strip */
.thank-you-status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: 99px;
  padding: 12px 28px;
  margin: 0 auto 40px;
  max-width: fit-content;
}

[data-theme="light"] .thank-you-status-bar {
  background: #F1F5F9;
  border-color: rgba(0, 0, 0, 0.08);
}

.status-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.status-dot-coral {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-primary);
}

.status-dot-blue {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38BDF8;
}

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

[data-theme="light"] .status-label {
  color: #64748B;
}

.status-value {
  color: var(--text-main);
  font-weight: 700;
}

[data-theme="light"] .status-value {
  color: #0F172A;
}

/* What Happens Next Roadmap Card */
.thank-you-roadmap-card {
  background: #121622;
  border: 1px solid var(--dark-border-glow);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 32px;
  text-align: left;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .thank-you-roadmap-card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.roadmap-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
}

[data-theme="light"] .roadmap-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.roadmap-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--coral-light);
  color: var(--coral-primary);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
}

.roadmap-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

[data-theme="light"] .roadmap-heading {
  color: #0F172A;
}

.roadmap-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

[data-theme="light"] .roadmap-sub {
  color: #64748B;
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roadmap-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.roadmap-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(240, 83, 101, 0.12);
  border: 1px solid rgba(240, 83, 101, 0.3);
  color: var(--coral-primary);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.roadmap-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

[data-theme="light"] .roadmap-content h4 {
  color: #0F172A;
}

.roadmap-content p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

[data-theme="light"] .roadmap-content p {
  color: #475569;
}

/* Preparation Box */
.thank-you-prep-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 28px;
  text-align: left;
}

[data-theme="light"] .thank-you-prep-box {
  background: #F8FAFC;
  border-color: rgba(0, 0, 0, 0.08);
}

.prep-box-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
}

[data-theme="light"] .prep-box-title {
  color: #0F172A;
}

.prep-box-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prep-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

[data-theme="light"] .prep-item {
  color: #475569;
}

.prep-check {
  color: #10B981;
  font-weight: 800;
}

/* Urgent Contact Bar */
.thank-you-urgent-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(240, 83, 101, 0.05);
  border: 1px solid rgba(240, 83, 101, 0.2);
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 36px;
  text-align: left;
  flex-wrap: wrap;
  gap: 16px;
}

[data-theme="light"] .thank-you-urgent-card {
  background: #FFF5F6;
  border-color: rgba(240, 83, 101, 0.25);
}

.urgent-action-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thank-you-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   MOBILE VIEWPORT & PHONE SCREEN HARDENING (360px, 390px, 412px, <= 768px)
   Guarantees zero horizontal overflow, flawless modal sizing, clean touch targets,
   universal 1-column card stacking, safe floating widget clearance, and call safety.
   ========================================================================== */

/* Call Safety: Suppress all third-party chat popups and prompt bubbles during calls */
body.call-session-active chat-widget,
body.call-session-active #chat-widget,
body.call-session-active .chat-widget,
body.call-session-active .floating-chat-container,
body.call-session-active iframe[src*="leadconnector"],
body.call-session-active iframe[title*="Chat Widget"],
body.call-session-active [id*="leadconnector"],
body.call-session-active .lc_text-widget--btn,
body.call-session-active .chat-widget--bubble {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

.incoming-call-overlay {
  z-index: 10000000 !important;
}

.incoming-call-actions .call-action-btn,
#btnEndCall,
#btnDeclineCall,
#btnAcceptCall {
  z-index: 10000005 !important;
  position: relative !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

@media (max-width: 768px) {
  /* Safe clearance: ensure floating chat widget never covers card copy or CTA buttons */
  main {
    padding-bottom: 90px !important;
  }

  /* Universal 1-Column Card Stacking on Phones (360px, 390px, 412px) */
  .services-grid,
  .services-grid-page,
  .industry-cards-grid,
  .call-anatomy-timeline,
  .scenarios-grid,
  .causal-chain-flow,
  .build-phases-stepper,
  .process-grid,
  .what-we-do-grid,
  .features-grid,
  .comparison-grid,
  .value-grid,
  .case-study-grid,
  .case-studies-grid,
  .analytics-cards-grid,
  .cmd-center-grid,
  .cmd-grid-left,
  .cmd-grid-right,
  .lead-sources-grid,
  .growth-bars-grid,
  .cockpit-kpi-grid,
  .dash-settings-grid,
  .fav-tools-grid,
  .demo-grid,
  .final-cta-grid,
  .two-col-grid,
  .three-col-grid,
  .four-col-grid,
  [style*="grid-template-columns: repeat"],
  [style*="grid-template-columns:repeat"],
  [style*="grid-template-columns: 1.2fr"],
  [style*="grid-template-columns:1.2fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 20px !important;
    box-sizing: border-box !important;
  }

  .service-card,
  .service-catalog-card,
  .industry-profile-card,
  .process-card,
  .timeline-step,
  .scenario-card,
  .chain-step,
  .stepper-phase,
  .mission-vision-card,
  .value-card,
  .comparison-card,
  .feature-card,
  .case-study-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 28px 22px !important;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
  }
  .modal-content {
    width: calc(100vw - 24px) !important;
    max-width: 100% !important;
    margin: 12px auto !important;
    padding: 20px 16px !important;
  }
  .hero-title, .section-title {
    word-break: break-word;
  }
  .clean-form-hierarchy .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .incoming-call-overlay {
    width: calc(100vw - 20px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .incoming-call-card {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .dashboard-window, .dashboard-container {
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .clean-form-hierarchy input,
  .clean-form-hierarchy select,
  .clean-form-hierarchy textarea,
  .modal-content input,
  .modal-content select,
  .modal-content textarea {
    font-size: 16px !important; /* Prevents auto-zoom in iOS Safari */
  }
}

