/* ==========================================================================
   ApexFlow Digital — Futuristic Cyber-Luxury Design System
   UAE-Focused Digital Growth, Web Engineering & AI Automation
   ========================================================================== */

:root {
  /* Futuristic Dark Luxury Palette */
  --bg-void: #030712;
  --bg-primary: #050b1a;
  --bg-secondary: #0a1226;
  --bg-tertiary: #111d38;
  
  /* Cyber Glassmorphism */
  --bg-card: rgba(10, 18, 38, 0.65);
  --bg-card-hover: rgba(17, 29, 56, 0.85);
  --bg-glass: rgba(5, 11, 26, 0.8);
  --bg-terminal: rgba(2, 6, 18, 0.95);
  
  /* Futuristic Neon Accents */
  --neon-cyan: #00f2fe;
  --neon-blue: #4facfe;
  --neon-purple: #9d4edd;
  --neon-magenta: #f72585;
  --neon-emerald: #05ffa1;
  --neon-amber: #ffbe0b;
  
  /* Borders & Grid lines */
  --border-cyber: rgba(0, 242, 254, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 242, 254, 0.4);
  --border-hover: rgba(79, 172, 254, 0.5);
  
  /* Typography Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-glow: #e0f2fe;
  
  /* Futuristic Gradients */
  --gradient-cyber: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #9d4edd 100%);
  --gradient-neon: linear-gradient(90deg, #00f2fe, #05ffa1);
  --gradient-purple: linear-gradient(135deg, #9d4edd 0%, #f72585 100%);
  --gradient-radial-glow: radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.15), transparent 70%);
  --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 242, 254, 0.02) 100%);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Layout & Spacing */
  --max-width: 1240px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Cyber Shadows & Glows */
  --glow-cyan: 0 0 25px rgba(0, 242, 254, 0.35);
  --glow-cyan-lg: 0 0 50px rgba(0, 242, 254, 0.25);
  --glow-emerald: 0 0 25px rgba(5, 255, 161, 0.35);
  --glow-purple: 0 0 30px rgba(157, 78, 221, 0.35);
  --shadow-card: inset 0 1px 1px 0 rgba(255, 255, 255, 0.12), 0 20px 40px -15px rgba(0, 0, 0, 0.7);

  /* Apple Design Fluid Physics & Transitions (WWDC Designing Fluid Interfaces) */
  --apple-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --apple-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --apple-snappy: cubic-bezier(0.2, 0.8, 0.2, 1);
  --apple-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --transition-fast: 0.12s var(--apple-ease);
  --transition-normal: 0.3s var(--apple-spring);
  --transition-smooth: 0.45s var(--apple-spring);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  padding-top: 72px;
  background-image: 
    radial-gradient(at 10% 10%, rgba(0, 242, 254, 0.04) 0px, transparent 50%),
    radial-gradient(at 90% 20%, rgba(157, 78, 221, 0.05) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(5, 255, 161, 0.03) 0px, transparent 50%);
  background-attachment: fixed;
}

/* Cyber Grid Background Overlay */
.cyber-grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
}

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

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

/* Accessibility Focus States (UI UX Pro Max Standards) */
:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible, a:focus-visible {
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   Typography & Futuristic Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

.text-gradient {
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-emerald {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-mono {
  font-family: var(--font-mono);
}

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

.section-alt {
  background-color: rgba(5, 11, 26, 0.7);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

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

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: var(--neon-cyan);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.badge-tag-uae {
  background: rgba(5, 255, 161, 0.08);
  border-color: rgba(5, 255, 161, 0.25);
  color: var(--neon-emerald);
  box-shadow: 0 0 20px rgba(5, 255, 161, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-emerald);
  box-shadow: 0 0 10px var(--neon-emerald);
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(5, 255, 161, 0.7); }
  70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 8px rgba(5, 255, 161, 0); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(5, 255, 161, 0); }
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   Futuristic Buttons & Interactive Controls
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-fast), border-color var(--transition-fast);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Apple Instant Press Feedback (WWDC Designing Fluid Interfaces Principle #1) */
.btn:active,
.nav-btn-whatsapp:active,
.service-tab-btn:active,
.ai-chip:active,
.concierge-chip:active {
  transform: scale(0.965) !important;
  transition: transform 0.08s var(--apple-ease) !important;
}

.btn-primary {
  background: var(--gradient-cyber);
  color: #030712;
  font-weight: 700;
  box-shadow: var(--glow-cyan);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan-lg);
  color: #000000;
}

.btn-secondary {
  background: rgba(10, 18, 38, 0.8);
  color: var(--text-primary);
  border: 1px solid var(--border-cyber);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(17, 29, 56, 0.9);
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.15rem 2.4rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Navigation Bar (Apple / Linear Floating Glass Capsule)
   ========================================================================== */
.header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 32px);
  max-width: 1120px;
  height: 64px;
  background: rgba(4, 9, 24, 0.82);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.85), inset 0 1px 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.35s var(--apple-spring), background-color 0.3s var(--apple-ease), box-shadow 0.3s var(--apple-ease);
}

.nav-container, .header-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.header.scrolled {
  background: rgba(3, 7, 18, 0.94);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 25px rgba(0, 242, 254, 0.15), inset 0 1px 1px 0 rgba(255, 255, 255, 0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-cyber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #030712;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

/* Futuristic Nav Dropdown for Services */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  width: 590px;
  background: #050b1a;
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(0, 242, 254, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.2s;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  pointer-events: none;
}

/* Invisible bridge prevents hover flickering between Services link and menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-dropdown-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dropdown-link {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.825rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  line-height: 1.35;
}

.nav-dropdown-link:hover {
  background: rgba(0, 242, 254, 0.08);
  color: #fff;
  transform: translateX(4px);
}

.nav-dropdown-link strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.825rem;
}

.nav-dropdown-link span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.nav-dropdown-all {
  grid-column: span 2;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.nav-dropdown-all a {
  color: var(--neon-cyan);
  font-size: 0.825rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-all a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .nav-dropdown-menu {
    display: none !important;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Futuristic Nav Action Pills */
.nav-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  font-size: 0.825rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.nav-btn-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

.nav-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--gradient-cyber);
  color: #030712;
  font-size: 0.825rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
  transition: all var(--transition-fast);
}

.nav-btn-cta:hover {
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
  transform: translateY(-1px);
  color: #000000;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 0.4rem;
  border-radius: var(--radius-sm);
}

.mobile-toggle:hover {
  color: var(--neon-cyan);
}

/* ==========================================================================
   Hero Section & Holographic Stage
   ========================================================================== */
.hero {
  padding-top: 4rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
  background: linear-gradient(180deg, #FFFFFF 25%, #E2E8F0 65%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  letter-spacing: -0.012em;
}

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

.hero-trust-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-chip svg {
  color: var(--neon-cyan);
}

/* ==========================================================================
   Interactive Live Cyber Terminal / Automation Simulator
   ========================================================================== */
.terminal-container {
  max-width: 960px;
  margin: 3.5rem auto 0 auto;
  background: var(--bg-terminal);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 0 35px rgba(0, 242, 254, 0.15);
  overflow: hidden;
  text-align: left;
  position: relative;
  z-index: 2;
}

.terminal-header {
  background: rgba(17, 29, 56, 0.8);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-dots {
  display: flex;
  gap: 0.5rem;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--neon-cyan);
}

.terminal-body {
  padding: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.8;
  color: #cbd5e1;
  min-height: 170px;
}

.terminal-log-line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: logFadeIn 0.3s forwards ease-in-out;
}

@keyframes logFadeIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.log-time { color: var(--text-muted); font-size: 0.775rem; }
.log-success { color: var(--neon-emerald); font-weight: 600; }
.log-cyan { color: var(--neon-cyan); }
.log-purple { color: #c084fc; }

/* ==========================================================================
   Bento Grid & 3D Interactive Cards
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-8 { grid-column: span 8; }
.bento-col-12 { grid-column: span 12; }

.bento-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.008) 100%), rgba(6, 12, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.16), 0 20px 40px -15px rgba(0, 0, 0, 0.85);
  transition: transform 0.35s var(--apple-spring), box-shadow 0.35s var(--apple-spring), border-color 0.25s var(--apple-ease);
  transform-style: preserve-3d;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.4), transparent);
}

.bento-card:hover {
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.25), 0 25px 50px -10px rgba(0, 242, 254, 0.18), 0 20px 40px rgba(0, 0, 0, 0.9);
  transform: translateY(-4px);
}

.card-icon-glow {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.card-icon-glow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon-emerald {
  background: rgba(5, 255, 161, 0.1);
  border-color: rgba(5, 255, 161, 0.3);
  color: var(--neon-emerald);
  box-shadow: 0 0 15px rgba(5, 255, 161, 0.2);
}

.card-icon-purple {
  background: rgba(157, 78, 221, 0.1);
  border-color: rgba(157, 78, 221, 0.3);
  color: var(--neon-purple);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.bento-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.bento-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   Futuristic Services Section
   ========================================================================== */
.services-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.service-pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.service-pillar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.service-pillar:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), 0 0 35px rgba(0, 242, 254, 0.1);
}

.service-pillar:nth-child(even) {
  direction: rtl;
}

.service-pillar:nth-child(even) .service-content,
.service-pillar:nth-child(even) .service-features {
  direction: ltr;
}

.service-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neon-cyan);
  margin-bottom: 0.85rem;
}

.service-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

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

.feature-item svg {
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.service-preview-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-cyber);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.preview-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: var(--radius-sm);
  color: var(--neon-cyan);
  display: inline-block;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   Futuristic Growth & SEO Audit Tool (Cyber HUD)
   ========================================================================== */
.audit-tool-wrapper {
  background: linear-gradient(180deg, rgba(10, 18, 38, 0.95) 0%, rgba(3, 7, 18, 0.98) 100%);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-card), 0 0 50px rgba(0, 242, 254, 0.2);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.audit-tool-wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gradient-cyber);
  box-shadow: 0 0 15px var(--neon-cyan);
}

.audit-form-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.2fr auto;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.input-field, .select-field {
  width: 100%;
  padding: 1rem 1.35rem;
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid var(--border-cyber);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-fast);
}

.input-field:focus, .select-field:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.25), 0 0 15px rgba(0, 242, 254, 0.2);
}

.audit-results-container {
  display: none;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-cyber);
  animation: fadeIn 0.4s ease-in-out;
}

.audit-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.audit-metric-card {
  background: rgba(5, 11, 26, 0.8);
  border: 1px solid var(--border-cyber);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.metric-score {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-mono);
  margin-bottom: 0.35rem;
  line-height: 1;
}

.score-good { color: var(--neon-emerald); text-shadow: 0 0 15px rgba(5, 255, 161, 0.4); }
.score-medium { color: var(--neon-amber); text-shadow: 0 0 15px rgba(255, 190, 11, 0.4); }
.score-poor { color: #f87171; text-shadow: 0 0 15px rgba(248, 113, 113, 0.4); }

.metric-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   ROI Automation Calculator
   ========================================================================== */
.calculator-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.slider-group {
  margin-bottom: 2rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.slider-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.slider-value {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.range-input {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-tertiary);
  outline: none;
  -webkit-appearance: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--neon-cyan);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.8);
}

.roi-display-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(5, 255, 161, 0.35);
  border-radius: var(--radius-xl);
  padding: 3rem 2.25rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(5, 255, 161, 0.15);
  position: relative;
}

.roi-highlight-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--neon-emerald);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: var(--glow-emerald);
}

.roi-subtext {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   Packages & Pricing Matrix
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.package-card.featured {
  background: linear-gradient(180deg, rgba(17, 29, 56, 0.95) 0%, rgba(5, 11, 26, 0.98) 100%);
  border-color: rgba(0, 242, 254, 0.45);
  box-shadow: var(--shadow-card), 0 0 35px rgba(0, 242, 254, 0.2);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cyber);
  color: #030712;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--glow-cyan);
}

.package-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.package-for {
  font-size: 0.9rem;
  color: var(--text-secondary);
  min-height: 45px;
}

.package-pricing {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon-cyan);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.925rem;
  margin-bottom: 0.85rem;
  color: var(--text-primary);
}

.package-feature svg {
  color: var(--neon-emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   Problem vs Solution Grid
   ========================================================================== */
.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-normal);
}

.problem-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.problem-header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.status-icon-problem {
  color: #f87171;
  font-weight: 800;
  flex-shrink: 0;
}

.problem-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fca5a5;
  line-height: 1.4;
}

.solution-box {
  background: rgba(5, 255, 161, 0.05);
  border-left: 3px solid var(--neon-emerald);
  padding: 1.15rem 1.35rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.solution-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neon-emerald);
  margin-bottom: 0.4rem;
}

.solution-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

/* ==========================================================================
   Futuristic 5-Step Process Pipeline
   ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.process-step:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.2);
  transform: translateY(-5px);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem auto;
  font-family: var(--font-mono);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   Founder / About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.about-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-cyber);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card), 0 0 35px rgba(0, 242, 254, 0.1);
}

.founder-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--gradient-cyber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  font-weight: 800;
  color: #030712;
  margin: 0 auto 1.75rem auto;
  box-shadow: var(--glow-cyan);
}

.founder-name {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.founder-title {
  color: var(--neon-cyan);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.founder-badges {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.founder-badge-item {
  font-family: var(--font-mono);
  font-size: 0.775rem;
  padding: 0.35rem 0.85rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

/* ==========================================================================
   Consultation Form
   ========================================================================== */
.lead-card {
  background: linear-gradient(180deg, rgba(10, 18, 38, 0.98) 0%, rgba(3, 7, 18, 0.99) 100%);
  border: 1px solid var(--border-cyber);
  border-radius: var(--radius-xl);
  padding: 4rem;
  box-shadow: var(--shadow-card), 0 0 45px rgba(0, 242, 254, 0.15);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.65rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
}

.faq-icon {
  transition: transform var(--transition-fast);
  color: var(--neon-cyan);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.65rem;
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  padding-bottom: 1.65rem;
}

/* ==========================================================================
   Floating WhatsApp Button & Toast
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 45px rgba(37, 211, 102, 0.7);
}

.toast {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--neon-emerald);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), 0 0 25px rgba(5, 255, 161, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1000;
  transform: translateY(150%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
  transform: translateY(0);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #02050e;
  border-top: 1px solid var(--border-cyber);
  padding: 5.5rem 0 3rem 0;
  font-size: 0.925rem;
}

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

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 1.25rem;
  max-width: 340px;
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neon-cyan);
  margin-bottom: 1.35rem;
}

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

.footer-link {
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.footer-bottom {
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}
/* ==========================================================================
   Futuristic 3D Globe & Magic UI Beam Pipeline Components
   ========================================================================== */
.human-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(5, 255, 161, 0.08);
  border: 1px solid rgba(5, 255, 161, 0.25);
  font-size: 0.8rem;
  color: #05ffa1;
  font-family: var(--font-mono);
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(5, 255, 161, 0.15);
}

.human-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #05ffa1;
  box-shadow: 0 0 8px #05ffa1;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* 3D UAE Globe Container */
.globe-section-card {
  position: relative;
  background: rgba(5, 11, 26, 0.7);
  border: 1px solid var(--border-cyber);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 242, 254, 0.04);
}

.globe-canvas-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.globe-canvas-wrapper:active {
  cursor: grabbing;
}

#uae-globe-canvas {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}

.globe-drag-hint {
  position: absolute;
  bottom: 10px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  background: rgba(3, 7, 18, 0.8);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Animated Beam Pipeline (Magic UI Style) */
.animated-beam-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 1.5rem 0;
  align-items: center;
}

.beam-node {
  background: rgba(10, 18, 38, 0.85);
  border: 1px solid var(--border-cyber);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.beam-node:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 242, 254, 0.2);
}

.beam-node-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.beam-node-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.beam-node-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.beam-node-step {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-void);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-size: 0.65rem;
  font-family: var(--font-mono);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.beam-track {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.beam-laser-dot {
  position: absolute;
  top: -3px;
  left: 0;
  width: 40px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, #00f2fe, #05ffa1);
  box-shadow: 0 0 15px #00f2fe, 0 0 25px #05ffa1;
  pointer-events: none;
}

/* Number Ticker Metric Cards */
.metrics-ticker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3.5rem 0;
}

.metric-ticker-card {
  background: rgba(10, 18, 38, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.metric-ticker-card:hover {
  border-color: var(--neon-cyan);
  background: rgba(10, 18, 38, 0.85);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.15);
}

.metric-ticker-number {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

.metric-ticker-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   Interactive Service Stack Tabs (Magic UI & Linear Style)
   ========================================================================== */
.service-tabs-wrapper {
  margin: 3rem 0;
}

.service-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.service-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(10, 18, 38, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.925rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.service-tab-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--text-primary);
  background: rgba(15, 25, 50, 0.8);
}

.service-tab-btn.active {
  background: rgba(0, 242, 254, 0.12);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
}

.service-tab-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.service-tab-panel.active {
  display: block;
}

.tab-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: rgba(10, 18, 38, 0.7);
  border: 1px solid var(--border-cyber);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.tab-illustration-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  background: #030712;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tab-illustration-container svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* ==========================================================================
   Comparison Matrix ("Traditional Agency vs ApexFlow Digital")
   ========================================================================== */
.matrix-container {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(5, 11, 26, 0.6);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

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

.matrix-table th {
  background: rgba(10, 18, 38, 0.9);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.matrix-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.matrix-highlight {
  color: var(--neon-emerald) !important;
  font-weight: 600;
  background: rgba(5, 255, 161, 0.04);
}

.matrix-negative {
  color: #f87171 !important;
}

/* ==========================================================================
   Verified UAE Client Testimonials Grid
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin: 3rem 0;
}

.testimonial-card {
  background: rgba(10, 18, 38, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.12);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-cyber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #030712;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* ==========================================================================
   WhatsApp Floating Concierge Card (Humanizer Popover)
   ========================================================================== */
.whatsapp-concierge-card {
  position: fixed;
  bottom: 95px;
  right: 24px;
  width: 340px;
  background: rgba(5, 11, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 242, 254, 0.2);
  z-index: 999;
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.whatsapp-concierge-card.open {
  display: block;
}

.ai-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-cyber);
  border-radius: 20px;
  padding: 0.25rem 0.65rem;
  color: var(--text-primary);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.ai-chip:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.concierge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.concierge-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.concierge-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-cyber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #030712;
  font-size: 0.85rem;
}

.concierge-close-btn {
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.concierge-close-btn:hover {
  color: #ffffff;
}

.concierge-body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.concierge-prompt-chips {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.concierge-chip {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.concierge-chip:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: #25d366;
  color: #25d366;
  transform: translateX(3px);
}

/* ==========================================================================
   Animations & Responsive Breakpoints
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 2.75rem; }
  .service-pillar { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; }
  .service-pillar:nth-child(even) { direction: ltr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .calculator-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bento-col-4, .bento-col-6, .bento-col-8 { grid-column: span 12; }
  .animated-beam-pipeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .beam-track { display: none; }
  .metrics-ticker-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .tab-content-grid { grid-template-columns: 1fr; padding: 1.75rem; }
}

@media (max-width: 768px) {
  /* Global Base & Header Adjustments */
  :root {
    --header-height: 64px;
  }

  body {
    padding-top: 64px;
  }

  .header {
    height: 64px;
  }

  .header-content {
    padding: 0 1rem;
  }

  .logo {
    gap: 0.5rem;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .logo-tag {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
  }

  /* Fullscreen Cyber Navigation Drawer */
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 64px);
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    align-items: stretch;
    display: none;
    overflow-y: auto;
    z-index: 1000;
    border-top: 1px solid var(--border-subtle);
  }

  .nav-menu.open {
    display: flex;
    animation: fadeIn 0.25s ease forwards;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    color: var(--text-primary);
  }

  .nav-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .nav-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    cursor: pointer;
  }

  /* Hero Section */
  .hero {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }

  .human-status-pill {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
    max-width: 100%;
  }

  .badge-tag-uae {
    font-size: 0.68rem;
    padding: 0.3rem 0.65rem;
    margin-bottom: 1.25rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    line-height: 1.18;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.925rem;
  }

  /* Hero Terminal */
  .terminal-container {
    margin: 2rem 0 1.5rem 0;
    border-radius: var(--radius-md);
  }

  .terminal-header {
    padding: 0.6rem 0.85rem;
    font-size: 0.7rem;
  }

  .terminal-title {
    font-size: 0.68rem;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .terminal-body {
    padding: 0.85rem;
    font-size: 0.72rem;
    min-height: 135px;
  }

  .terminal-log-line {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  /* Metrics Ticker Grid */
  .metrics-ticker-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 2rem 0;
  }

  .metric-ticker-card {
    padding: 1.25rem 0.75rem;
    border-radius: var(--radius-sm);
  }

  .metric-ticker-number {
    font-size: 1.85rem;
    margin-bottom: 0.2rem;
  }

  .metric-ticker-label {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  /* Hero Trust Chips */
  .hero-trust-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.5rem;
  }

  .trust-chip {
    font-size: 0.75rem;
    padding: 0.45rem 0.65rem;
    justify-content: center;
    text-align: center;
  }

  /* Sections & Headings */
  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.65rem, 6vw, 2rem);
    line-height: 1.22;
  }

  .section-subtitle {
    font-size: 0.925rem;
    line-height: 1.6;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Interactive Service Stack Tabs (Touch Friendly Horizontal Scroll) */
  .service-tabs-wrapper {
    margin: 2rem 0 1rem 0;
  }

  .service-tabs-nav {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .service-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .service-tab-btn {
    white-space: nowrap;
    font-size: 0.825rem;
    padding: 0.55rem 1rem;
    flex-shrink: 0;
  }

  .tab-content-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
    gap: 1.5rem;
    border-radius: var(--radius-md);
  }

  /* Beam Pipeline on Mobile */
  .animated-beam-pipeline {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 2rem 0 1rem 0;
  }

  .beam-node {
    padding: 1.5rem 1.25rem;
    text-align: left;
    border-radius: var(--radius-md);
  }

  .beam-node-step {
    left: 1.5rem;
    transform: none;
  }

  .beam-node-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .beam-node-title {
    font-size: 1.05rem;
  }

  .beam-node-desc {
    font-size: 0.825rem;
  }

  /* Comparison Matrix */
  .matrix-container {
    margin: 2rem 0;
    border-radius: var(--radius-md);
  }

  .matrix-table th, .matrix-table td {
    padding: 0.9rem 1rem;
    font-size: 0.825rem;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
  }

  .testimonial-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
  }

  .testimonial-quote {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  /* Bento Grid */
  .bento-grid {
    gap: 1.25rem;
  }

  .bento-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
  }

  /* Forms & Inputs (Prevent iOS Safari Zoom) */
  input, select, textarea {
    font-size: 16px !important;
  }

  .input-field, .select-field, .textarea-field {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lead-card {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .audit-form-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .audit-tool-wrapper {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }

  /* Floating WhatsApp Concierge on Mobile */
  .whatsapp-concierge-card {
    position: fixed;
    bottom: 80px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    z-index: 1000;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .metrics-ticker-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .metric-ticker-card {
    padding: 1rem 0.5rem;
  }

  .metric-ticker-number {
    font-size: 1.6rem;
  }

  .metric-ticker-label {
    font-size: 0.68rem;
  }

  .hero-trust-chips {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Phase 1 Upgrades: Mobile Conversion Quick-Bar & Strategy Booking System
   ========================================================================== */

/* 1. Global Floating Mobile Quick-Bar */
.mobile-conversion-bar {
  display: none;
}

@media (max-width: 768px) {
  body.has-mobile-bar {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .mobile-conversion-bar {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(4, 9, 24, 0.94);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border-top: 1px solid rgba(0, 242, 254, 0.22);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    padding: 6px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    transform: translateY(0);
    transition: transform 0.35s var(--apple-ease);
  }

  .mobile-conversion-bar.hidden {
    transform: translateY(105%);
  }

  .mbar-status-ribbon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 4px 5px;
    font-size: 0.68rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 6px;
  }

  .mbar-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--neon-emerald);
    font-weight: 600;
  }

  .mbar-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon-emerald);
    box-shadow: 0 0 8px var(--neon-emerald);
    animation: pulseDot 1.8s infinite;
  }

  .mbar-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 42px;
    padding: 0 10px;
    border-radius: var(--radius-sm);
    font-size: 0.825rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform 0.1s var(--apple-ease), opacity 0.15s ease;
  }

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

  .mbar-btn-wa {
    background: linear-gradient(135deg, #05ffa1 0%, #00d26a 100%);
    color: #020817;
    box-shadow: 0 2px 14px rgba(5, 255, 161, 0.3);
  }

  .mbar-btn-wa svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
  }

  .mbar-btn-call {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.18) 0%, rgba(79, 172, 254, 0.12) 100%);
    border: 1px solid rgba(0, 242, 254, 0.4);
    color: #f8fafc;
  }

  .mbar-btn-call svg {
    width: 15px;
    height: 15px;
    stroke: var(--neon-cyan);
  }

  /* Lift concierge bubble above the mobile bar */
  .whatsapp-concierge-card {
    bottom: calc(82px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* 2. Executive Modal System (Strategy Call & Audit Download) */
.apex-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 4, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--apple-ease), visibility 0.25s;
}

.apex-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.apex-modal-card {
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(14, 25, 52, 0.95) 0%, rgba(6, 12, 28, 0.98) 100%);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 242, 254, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  padding: 2rem;
  position: relative;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.3s var(--apple-spring);
  color: var(--text-primary);
}

.apex-modal-backdrop.active .apex-modal-card {
  transform: scale(1) translateY(0);
}

.apex-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.apex-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1.08);
}

/* Scheduler Selection Chips */
.scheduler-section-label {
  font-size: 0.775rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.chip-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.chip-btn:hover {
  border-color: rgba(0, 242, 254, 0.4);
  color: var(--text-primary);
}

.chip-btn.active {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--neon-cyan);
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
  font-weight: 600;
}

/* Modal Confirmation Screen */
.booking-success-card {
  text-align: center;
  padding: 1rem 0;
}

.booking-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(5, 255, 161, 0.12);
  border: 2px solid var(--neon-emerald);
  color: var(--neon-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 25px rgba(5, 255, 161, 0.35);
}

/* Switcher Tabs in contact.html */
.consultation-tabs {
  display: flex;
  background: rgba(5, 11, 26, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 1.75rem;
  gap: 4px;
}

.consultation-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.consultation-tab-btn.active {
  background: rgba(0, 242, 254, 0.15);
  color: #fff;
  border: 1px solid rgba(0, 242, 254, 0.35);
  box-shadow: 0 2px 8px rgba(0, 242, 254, 0.2);
}

/* 3. Executive Audit PDF & Printable Report Styles */
@media print {
  body * {
    visibility: hidden;
  }

  #executive-printable-report, #executive-printable-report * {
    visibility: visible;
  }

  #executive-printable-report {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 24px;
    background: #ffffff !important;
    color: #0f172a !important;
  }

  .no-print {
    display: none !important;
  }
}

.executive-report-view {
  background: #ffffff;
  color: #0f172a;
  border-radius: 12px;
  padding: 2.5rem;
  font-family: var(--font-sans);
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin-top: 1.5rem;
  display: none;
}

.rep-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #0f172a;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.rep-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #020617;
  letter-spacing: -0.03em;
}

.rep-scores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 1.5rem 0;
}

.rep-score-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.rep-score-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0284c7;
}

.rep-score-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
}

/* ==========================================================================
   Multi-Type Audit Scanner HUD & Blurred Lead Gate Styles
   ========================================================================== */

.scanner-hud-container {
  background: rgba(3, 7, 18, 0.92);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 254, 0.12);
}

.scanner-progress-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  margin: 0.75rem 0 1rem;
}

.scanner-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00f2fe, #05ffa1);
  box-shadow: 0 0 10px #05ffa1;
  border-radius: 99px;
  transition: width 0.4s ease;
}

.scanner-log-line {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.scanner-log-line.active {
  color: var(--neon-cyan);
  font-weight: 600;
}

.scanner-log-line.done {
  color: var(--neon-emerald);
}

/* Blurred Curiosity Lock Section */
.audit-teaser-container {
  position: relative;
  margin-top: 1.5rem;
}

.audit-blurred-backdrop {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  user-select: none;
  pointer-events: none;
  opacity: 0.45;
  transition: filter 0.3s ease;
}

.lock-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(5, 11, 26, 0.75) 0%, rgba(2, 4, 10, 0.92) 100%);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(0, 242, 254, 0.4);
  padding: 2rem 1.5rem;
  text-align: center;
  z-index: 10;
}

.lock-glowing-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.12);
  border: 1.5px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
  margin-bottom: 1rem;
}

.lock-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}

.lock-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* ==========================================================================
   Real Live Audit Metrics Strip & Itemized Findings
   ========================================================================== */

.live-audit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(5, 255, 161, 0.1);
  border: 1px solid rgba(5, 255, 161, 0.35);
  color: var(--neon-emerald);
  font-family: var(--font-mono);
  font-size: 0.775rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(5, 255, 161, 0.2);
}

.live-metrics-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 1.75rem;
}

.live-metric-chip {
  background: rgba(10, 18, 38, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: all 0.2s ease;
}

.live-metric-chip:hover {
  border-color: rgba(0, 242, 254, 0.35);
  background: rgba(15, 27, 56, 0.95);
}

.live-metric-label {
  font-size: 0.725rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-metric-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-metric-sub {
  font-size: 0.7rem;
  color: var(--neon-cyan);
}

/* Real Itemized Findings Cards */
.findings-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}

.finding-card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.finding-card.pass {
  border-left: 3px solid var(--neon-emerald);
}

.finding-card.warn {
  border-left: 3px solid #f59e0b;
}

.finding-card.fail {
  border-left: 3px solid #f87171;
}

.finding-info {
  flex: 1;
}

.finding-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.finding-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.finding-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.finding-meta {
  text-align: right;
  flex-shrink: 0;
}

.finding-val {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
}

.finding-val.pass { color: var(--neon-emerald); }
.finding-val.warn { color: #f59e0b; }
.finding-val.fail { color: #f87171; }

.finding-badge {
  font-size: 0.675rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0.25rem;
}

.finding-badge.pass { background: rgba(5, 255, 161, 0.12); color: var(--neon-emerald); }
.finding-badge.warn { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.finding-badge.fail { background: rgba(248, 113, 113, 0.12); color: #f87171; }

@media (max-width: 640px) {
  .finding-card {
    flex-direction: column;
  }
  .finding-meta {
    text-align: left;
    margin-top: 0.25rem;
  }
}


