/**
 * EXR Tech Solutions — Clean White Canvas, Bold Black Typography & Cyber Neon Yellow Theme
 * Palette: Pure Modern White Canvas (#ffffff, #f8fafc),
 * Crisp High-Contrast Obsidian Black (#08090d, #0f172a),
 * Electric Cyber Neon Yellow (#ffe600, #facc15, #eab308), Warm Amber (#f59e0b, #d97706),
 * Reversible In/Out Pop & Drop Scroll Physics, 3D Spatial Deck Carousel Click Navigation.
 */

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

:root {
  --font-display: 'Space Grotesk', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Space Grotesk', monospace;
  --font-mono: 'Space Grotesk', monospace;

  /* Clean High-Tech White Canvas & Modern Clean Surfaces */
  --bg-deep: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-card-solid: #ffffff;
  --bg-input: #f8fafc;

  /* Crisp Bold Black Typography */
  --text-black: #08090d;
  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Cyber Neon Yellow & Amber Gold Palette */
  --sky-primary: #ca8a04; /* High-contrast golden yellow for text on white */
  --sky-neon: #ffe600;    /* High-voltage cyber neon yellow */
  --sky-light: #facc15;   /* Bright electric gold */
  --sky-vivid: #ffd000;
  --blue-azure: #d97706;  /* Deep cyber amber */
  --blue-royal: #b45309;  /* Rich bronze gold */
  --cyan-electric: #eab308;
  --emerald-cyber: #059669; /* Tactical cyber emerald */
  --coral-hot: #e11d48;

  /* Cyber Gradients */
  --gradient-aurora: linear-gradient(135deg, #ffd000 0%, #f59e0b 100%);
  --gradient-sky: linear-gradient(135deg, #ffe600 0%, #f59e0b 100%);
  --gradient-fire: linear-gradient(135deg, #f59e0b 0%, #ffd000 100%);
  --gradient-text-hero: linear-gradient(135deg, #08090d 25%, #ca8a04 80%, #eab308 100%);
  --gradient-card-border: linear-gradient(135deg, rgba(234, 179, 8, 0.45) 0%, rgba(15, 23, 42, 0.08) 50%, rgba(234, 179, 8, 0.45) 100%);
  --gradient-border-flowing: linear-gradient(90deg, #ffd000, #f59e0b, #059669, #ffd000);

  /* Shadows & Glow Tokens */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.06), 0 0 15px rgba(255, 208, 0, 0.1);
  --shadow-hover: 0 20px 45px -5px rgba(0, 0, 0, 0.1), 0 0 25px rgba(255, 208, 0, 0.25);
  --glow-sky: 0 8px 25px rgba(234, 179, 8, 0.35);
  --glow-amber: 0 8px 25px rgba(217, 119, 6, 0.3);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;

  --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background-color: var(--bg-deep);
  color: var(--text-black);
  font-family: var(--font-body);
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(rgba(234, 179, 8, 0.22) 1.2px, transparent 1.2px),
    radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 36px 36px, 12px 12px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: var(--text-body);
}

/* Fixed Top Scroll Progress Bar */
.top-scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--gradient-aurora);
  box-shadow: 0 0 12px rgba(234, 179, 8, 0.8);
  z-index: 999999;
  transition: width 0.08s ease-out;
}

/* Three.js 3D Canvas Stage */
#three-canvas-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  pointer-events: auto;
}

.page-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

/* Ambient Soft Glow Orbs (GPU-Optimized, Zero Compositor Lag) */
.aurora-orb-1 {
  position: fixed;
  top: -6vw;
  right: -6vw;
  width: 50vw;
  height: 50vw;
  max-width: 650px;
  max-height: 650px;
  background: radial-gradient(circle, rgba(254, 240, 138, 0.35) 0%, rgba(253, 224, 71, 0.08) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.aurora-orb-2 {
  position: fixed;
  bottom: -8vw;
  left: -6vw;
  width: 50vw;
  height: 50vw;
  max-width: 650px;
  max-height: 650px;
  background: radial-gradient(circle, rgba(253, 230, 138, 0.3) 0%, rgba(254, 240, 138, 0.06) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

/* Magical Floating 3D Geometric Shapes (Continuous Background Motion) */
.magical-floating-geom {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.geom-wire-cube {
  width: 68px;
  height: 68px;
  border: 2px solid #08090d;
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.4);
  border-radius: 12px;
  animation: spinWireCube 18s linear infinite;
}

@keyframes spinWireCube {
  0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  50% { transform: rotateX(180deg) rotateY(180deg) rotateZ(90deg); }
  100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

.geom-dual-ring {
  width: 76px;
  height: 76px;
  border: 2px dashed #d97706;
  border-radius: 50%;
  animation: spinDualRing 12s linear infinite;
  box-shadow: inset 0 0 15px rgba(255, 230, 0, 0.3);
}

@keyframes spinDualRing {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  to { transform: rotate(360deg) scale(1); }
}

/* Typography & Shimmer Gradients */
.gradient-text-aurora {
  background: var(--gradient-aurora);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 5s linear infinite;
}

.gradient-text-hero {
  background: var(--gradient-text-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-fire {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes text-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.serif-italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   STREAMLINED COMPACT ENTERPRISE NAVBAR (Executive Sizing & Glass Pill)
   ========================================================================== */
.nav-container {
  position: fixed;
  top: 0.85rem;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  pointer-events: none;
}

.nav-capsule {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  max-width: 960px;
  padding: 0.38rem 0.95rem 0.38rem 1.15rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08), 0 0 12px rgba(255, 230, 0, 0.1);
  transition: all 0.25s ease;
}
.nav-capsule:hover {
  border-color: #08090d;
  box-shadow: 0 14px 35px -8px rgba(0, 0, 0, 0.12), 0 0 18px rgba(255, 230, 0, 0.22);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #08090d;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
  transition: transform 0.25s ease, filter 0.25s ease;
  display: block;
}
.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 12px rgba(255, 230, 0, 0.45));
}
.footer-brand-logo-img {
  height: 64px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s ease;
  display: block;
}
.footer-brand-logo-img:hover {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 46px;
    max-width: 190px;
  }
}

.brand-name {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #08090d;
}

.brand-name-accent {
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-menu a {
  color: #475569;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.25rem 0;
}
.nav-menu a:hover {
  color: #08090d;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffe600;
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-menu a:hover::after {
  width: 100%;
}

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

/* Sound FX Toggle (Compact Icon Only) */
.sound-toggle-btn-compact {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.sound-toggle-btn-compact:hover {
  background: #fef08a;
  border-color: #08090d;
  color: #08090d;
  transform: scale(1.06);
}
.sound-toggle-btn-compact.active {
  background: #08090d;
  color: #ffe600;
  border-color: #08090d;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Media Kit Button in Header */
.btn-nav-mediakit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  background: #ffffff;
  color: #08090d;
  border: 1px solid rgba(15, 23, 42, 0.14);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-nav-mediakit:hover {
  background: #fef9c3;
  border-color: #08090d;
  transform: translateY(-1px);
}

/* Sleek Free Consultation CTA */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.95rem;
  background: #ffe600;
  color: #08090d;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  border: 1.5px solid #08090d;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(255, 230, 0, 0.3);
  transition: all 0.2s ease;
}
.btn-nav-cta:hover {
  background: #ffd000;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(255, 230, 0, 0.45);
}

/* Mobile Hamburger Toggle */
.mobile-hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.mobile-hamburger-btn:hover,
.mobile-hamburger-btn:active {
  background: #ffe600;
  border-color: #08090d;
}
.mobile-hamburger-btn span {
  width: 20px;
  height: 2px;
  background: #08090d;
  border-radius: 2px;
  transition: all 0.25s ease;
}

@media (max-width: 860px) {
  .nav-menu, .btn-nav-mediakit { display: none !important; }
  .mobile-hamburger-btn { display: flex !important; }
  .nav-capsule { max-width: 95%; padding: 0.35rem 0.85rem; }
}

@media (max-width: 640px) {
  .btn-nav-cta { display: none !important; }
  .nav-capsule { max-width: 96%; padding: 0.35rem 0.7rem; gap: 0.5rem; }
  .brand-logo-img { height: 38px !important; max-width: 155px !important; }
}

/* Mobile Navigation Drawer System */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 9, 13, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  justify-content: flex-end;
}
.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-drawer-card {
  width: 88%;
  max-width: 320px;
  height: 100%;
  background: #ffffff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-drawer-overlay.active .mobile-drawer-card {
  transform: translateX(0);
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.mobile-drawer-close {
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-size: 1.4rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08090d;
}
.mobile-drawer-menu {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-drawer-link {
  color: #08090d;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  transition: background 0.2s ease;
  display: block;
}
.mobile-drawer-link:hover {
  background: #fef9c3;
}
.mobile-drawer-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

/* Hero Section (Responsive & Middle-Placed 3D Moving Hologram) */
.hero-split-stage, .hero-peach-split {
  min-height: calc(100vh - 90px);
  max-height: none !important;
  padding: 5.5rem 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.hero-left-content {
  max-width: 640px;
  position: relative;
  z-index: 10;
}

.hero-right-stage, .hero-right-3d-stage {
  position: relative;
  width: 100%;
  height: 500px;
  max-width: 530px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  transform: translateY(-32px); /* Centered proudly in the middle of the hero stage! */
  background: radial-gradient(circle at center, rgba(255, 230, 0, 0.32) 0%, rgba(255, 240, 138, 0.12) 48%, rgba(255, 255, 255, 0) 74%);
  border-radius: 40px;
  overflow: visible !important;
  animation: hero-orb-float 6s ease-in-out infinite alternate;
}

.canvas-telemetry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(234, 179, 8, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(255, 230, 0, 0.2);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: #08090d;
  font-weight: 800;
  margin-top: -12px;
  position: relative;
  z-index: 10;
  animation: kinetic-badge-float 4.5s ease-in-out infinite alternate;
}

@keyframes hero-orb-float {
  0% {
    transform: translateY(-32px);
  }
  100% {
    transform: translateY(-46px);
  }
}

@keyframes kinetic-badge-float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-8px);
  }
}

@media (max-width: 992px) {
  .hero-split-stage, .hero-peach-split {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
    padding-top: 6rem;
    gap: 2rem;
    text-align: center;
  }
  .hero-right-stage, .hero-right-3d-stage {
    height: 400px;
    margin: 1rem auto;
    transform: none;
    animation: none;
  }
  .hero-left-content {
    margin: 0 auto;
  }
}

.hud-telemetry-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  background: #ffffff;
  border: 1.5px solid rgba(234, 179, 8, 0.4);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.15rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.hud-telemetry-bar strong {
  color: #08090d;
  font-weight: 800;
}

@media (max-width: 640px) {
  .hud-telemetry-bar {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 0.68rem;
    padding: 0.4rem 0.85rem;
    gap: 0.45rem;
    border-radius: 16px;
  }
}

.kinetic-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #08090d;
  margin-bottom: 1.35rem;
}

@media (max-width: 640px) {
  .kinetic-hero-title {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    line-height: 1.12;
  }
}

.hero-editorial-lead {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.2rem;
  font-weight: 450;
}

@media (max-width: 640px) {
  .hero-editorial-lead {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
  }
}

.btn-hero-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.4rem;
  background: #ffe600;
  color: #08090d;
  border: 2px solid #08090d;
  border-radius: var(--radius-full);
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 230, 0, 0.45);
  transition: all 0.3s var(--ease-elastic);
  cursor: pointer;
}
.btn-hero-glow:hover {
  background: #ffd000;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(255, 230, 0, 0.65);
  color: #08090d;
}

.btn-hero-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  background: #ffffff;
  color: #08090d;
  border: 2px solid #08090d;
  border-radius: var(--radius-full);
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.btn-hero-glass:hover {
  background: #fef9c3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Hero Telemetry Stats Row */
.hero-stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.hero-stat-col {
  flex: 1;
  min-width: 0;
}
.hero-stat-col:not(:first-child) {
  border-left: 1px solid rgba(15, 23, 42, 0.1);
  padding-left: 2rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-black);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .hero-stats-row {
    gap: 0.65rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
  }
  .hero-stat-col:not(:first-child) {
    padding-left: 0.65rem;
  }
  .hero-stat-num {
    font-size: 1.22rem;
  }
  .hero-stat-label {
    font-size: 0.64rem;
    line-height: 1.3;
  }
}

/* Floating Orbital Data Pods around Hero 3D Stage */
.orbit-pod {
  position: absolute;
  z-index: 15;
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 0 15px rgba(255, 230, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: #08090d;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.orbit-pod:hover {
  transform: scale(1.1) translateY(-4px) !important;
  border-color: #08090d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 25px rgba(255, 230, 0, 0.4);
}

.orbit-pod-1 { top: 8%; right: -3%; animation: floatPod1 7s ease-in-out infinite alternate; }
.orbit-pod-2 { top: 54%; left: -8%; animation: floatPod2 8s ease-in-out infinite alternate; }
.orbit-pod-3 { bottom: 6%; right: 4%; animation: floatPod3 6.5s ease-in-out infinite alternate; }
.orbit-pod-4 { top: -6%; left: 18%; animation: floatPod4 9s ease-in-out infinite alternate; }

@keyframes floatPod1 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-10px, 15px); }
  100% { transform: translate(8px, -10px); }
}

@keyframes floatPod2 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(12px, -12px); }
  100% { transform: translate(-8px, 14px); }
}

@keyframes floatPod3 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-14px, -10px); }
  100% { transform: translate(10px, 12px); }
}

@keyframes floatPod4 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(15px, 8px); }
  100% { transform: translate(-10px, -8px); }
}

@media (max-width: 992px) {
  .orbit-pod-2 { left: 2%; }
  .orbit-pod-1 { right: 2%; }
}

/* Laser Scanning Line Reveal */
.laser-scan-container {
  position: relative;
  display: inline-block;
}

.laser-scan-line {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  animation: none !important;
}

/* ==========================================================================
   CLUTCH 4.9★ & ENTERPRISE TRUST ACCREDITATION RIBBON
   ========================================================================== */
.trust-ribbon-section {
  padding: 2.5rem 0 3.5rem;
  position: relative;
  z-index: 5;
}

.trust-ribbon-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.trust-badge-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fef9c3;
  border: 1.5px solid rgba(234, 179, 8, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ca8a04;
  font-size: 1.2rem;
}

.trust-badge-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #08090d;
}

.trust-badge-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stars-rating {
  color: #eab308;
  letter-spacing: 2px;
}

/* ==========================================================================
   SCROLL-TRIGGERED TELEMETRY SHOWCASE (Reversible Elastic In/Out Pop & Drop)
   ========================================================================== */
.telemetry-showcase-section {
  padding: 4.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

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

.section-tag-sky {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #08090d;
  background: #fef08a;
  border: 1.5px solid #08090d;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.telemetry-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #08090d;
}

.telemetry-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.telemetry-slide-card {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.telemetry-slide-card:hover {
  transform: translateY(-5px);
  border-color: #08090d;
  box-shadow: var(--shadow-hover);
}

.telemetry-slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-aurora);
}

/* ==========================================================================
   DYNAMIC 3D SPATIAL POP & DROP ANIMATIONS (Reversible In/Out Scroll Choreography)
   ========================================================================== */
/* Initial Hero Entrance Keyframe Choreography (Smooth, Never Blank) */
@keyframes heroGlideInLeft {
  0% {
    opacity: 0;
    transform: perspective(1200px) translate3d(-70px, 15px, -40px) rotateY(-8deg) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: perspective(1200px) translate3d(0, 0, 0) rotateY(0deg) scale(1);
  }
}

@keyframes heroGlideInRight {
  0% {
    opacity: 0;
    transform: perspective(1200px) translate3d(70px, 15px, -40px) rotateY(8deg) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: perspective(1200px) translate3d(0, 0, 0) rotateY(0deg) scale(1);
  }
}

@keyframes heroBadgeDrop {
  0% {
    opacity: 0;
    transform: perspective(1000px) translate3d(0, -35px, -20px) rotateX(10deg) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) translate3d(0, 0, 0) rotateX(0deg) scale(1);
  }
}

#hero .hero-left-content {
  animation: heroGlideInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

#hero .hero-right-stage {
  animation: heroGlideInRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

#hero .hud-telemetry-bar {
  animation: heroBadgeDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Base elements default to visible if JS is disabled */
.pop-from-left,
.pop-from-right,
.drop-from-top {
  opacity: 1;
}

/* When JS scroll choreography is active, apply dynamic 3D perspective in/out physics */
body.js-ready .pop-from-left:not(.is-popped) {
  opacity: 0;
  transform: perspective(1200px) translate3d(-50px, 6px, -25px) rotateY(-5deg) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  will-change: transform, opacity;
}

body.js-ready .pop-from-left.is-popped {
  opacity: 1 !important;
  transform: perspective(1200px) translate3d(0, 0, 0) rotateY(0deg) scale(1) !important;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
}

body.js-ready .pop-from-right:not(.is-popped) {
  opacity: 0;
  transform: perspective(1200px) translate3d(50px, 6px, -25px) rotateY(5deg) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  will-change: transform, opacity;
}

body.js-ready .pop-from-right.is-popped {
  opacity: 1 !important;
  transform: perspective(1200px) translate3d(0, 0, 0) rotateY(0deg) scale(1) !important;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
}

body.js-ready .drop-from-top:not(.is-dropped) {
  opacity: 0;
  transform: perspective(1200px) translate3d(0, -35px, -20px) rotateX(8deg) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  will-change: transform, opacity;
}

body.js-ready .drop-from-top.is-dropped {
  opacity: 1 !important;
  transform: perspective(1200px) translate3d(0, 0, 0) rotateX(0deg) scale(1) !important;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
}

@media (max-width: 768px) {
  body.js-ready .pop-from-left:not(.is-popped),
  body.js-ready .pop-from-right:not(.is-popped) {
    transform: translate3d(0, 18px, 0) scale(0.98) !important;
  }
  .aurora-orb-1, .aurora-orb-2 {
    display: none !important;
  }
}

/* Cascading Stagger Waves (Ultra Fast) */
.stagger-1 { transition-delay: 0.04s !important; }
.stagger-2 { transition-delay: 0.08s !important; }
.stagger-3 { transition-delay: 0.12s !important; }
.stagger-4 { transition-delay: 0.16s !important; }

/* Continuous Floating Physics ("Sab ko floating rakh") */
@keyframes floating-gentle-hover {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes floating-gentle-tilt {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-11px) rotate(0.8deg);
  }
}

.photo-primary-frame {
  animation: floating-gentle-hover 6.5s ease-in-out infinite alternate;
}

.photo-secondary-badge {
  animation: floating-gentle-tilt 5s ease-in-out infinite alternate 0.4s;
}

.tz-clock-tile {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.tz-clock-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(255, 230, 0, 0.25);
}

.floating-quick-dock {
  animation: floating-gentle-hover 4s ease-in-out infinite alternate;
}

/* Responsive Two Column Grid (Who We Are, ROI Simulator, Contact) */
.responsive-two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.responsive-two-column-grid.align-start {
  align-items: flex-start;
}
.responsive-two-column-grid.roi-grid-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

@media (max-width: 992px) {
  .responsive-two-column-grid,
  .responsive-two-column-grid.roi-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .photo-secondary-badge {
    position: static !important;
    margin-top: 1rem;
    max-width: 100% !important;
  }
  .telemetry-showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* Responsive Footer Grid */
.responsive-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .responsive-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 640px) {
  .responsive-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* Services 3D Deck Responsive Protection — Avoid Card Text Overlap */
@media (max-width: 1080px) {
  .spatial-card-item.pos-next,
  .spatial-card-item.pos-prev {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
.spatial-card-item:not(.pos-active) .service-deliverables-list,
.spatial-card-item:not(.pos-active) p {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}
.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #10b981; }

.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald-cyber);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   3-STEP INSTANT ICP & TAM ESTIMATOR WIZARD
   ========================================================================== */
.tam-wizard-section {
  padding: 6rem 0;
  position: relative;
}

.tam-wizard-card {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.tam-wizard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-aurora);
}

.wizard-steps-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.wizard-step-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: #f8fafc;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.wizard-step-pill.active {
  background: #fef08a;
  border-color: #08090d;
  color: #08090d;
  box-shadow: 0 4px 15px rgba(255, 230, 0, 0.25);
  font-weight: 800;
}

.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .wizard-options-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
}

.wizard-opt-btn {
  background: #f8fafc;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  color: #08090d;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wizard-opt-btn:hover {
  border-color: #08090d;
  transform: translateY(-3px);
  background: #fefce8;
}

.wizard-opt-btn.active {
  border-color: #08090d;
  border-width: 2px;
  background: #fef08a;
  box-shadow: 0 6px 20px rgba(255, 230, 0, 0.35);
  color: #08090d;
}

.tam-output-panel {
  background: #08090d; /* High-contrast obsidian dashboard panel */
  border: 2px solid #08090d;
  border-radius: var(--radius-md);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.tam-output-panel div div[style*="font-weight: 800"] {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .tam-output-panel { grid-template-columns: 1fr; }
}

.tam-metric-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffe600;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 20px rgba(255, 230, 0, 0.45);
}

/* ==========================================================================
   3D SPATIAL DECK CAROUSEL (Click-Responsive Card Stage)
   ========================================================================== */
.services-stage-section {
  padding: 6rem 0 3rem;
}

.services-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-pill-btn {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-pill-btn:hover {
  border-color: #08090d;
  color: #08090d;
}

.filter-pill-btn.active {
  background: #08090d;
  color: #ffe600;
  border-color: #08090d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-mode-toggle-btn {
  background: #ffffff;
  border: 2px solid #08090d;
  color: #08090d;
  border-radius: var(--radius-full);
  padding: 0.55rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.view-mode-toggle-btn:hover {
  background: #fef9c3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.services-view-stage {
  position: relative;
  margin-top: 2rem;
}

.spatial-carousel-stage {
  position: relative;
  width: 100%;
  height: 540px;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  overflow: hidden;
  max-width: 100%;
}

@media (max-width: 768px) {
  .spatial-carousel-stage {
    height: 480px;
  }
  .spatial-card-item {
    max-width: 92vw;
  }
  .spatial-card-item.pos-next,
  .spatial-card-item.pos-prev {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .spatial-card-item.pos-active {
    transform: translateX(0) translateZ(0) scale(1) !important;
  }
}

.spatial-track-3d {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* 3D Spatial Cards — With Click Animation & Visual Affordances */
.spatial-card-item {
  position: absolute;
  width: 100%;
  max-width: 490px;
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.45s ease,
              filter 0.45s ease,
              box-shadow 0.45s ease;
  will-change: transform, opacity;
  cursor: pointer;
}

.spatial-card-item.pos-active {
  transform: translateX(0) translateZ(60px) rotateY(0deg) scale(1);
  opacity: 1;
  z-index: 10;
  filter: blur(0px);
  pointer-events: auto;
  cursor: default;
}

.spatial-card-item.pos-next {
  transform: translateX(65%) translateZ(-90px) rotateY(-22deg) scale(0.86);
  opacity: 0.65;
  z-index: 5;
  filter: blur(0.5px);
  cursor: pointer;
}

.spatial-card-item.pos-next:hover {
  transform: translateX(60%) translateZ(-40px) rotateY(-14deg) scale(0.90);
  opacity: 0.95;
  filter: blur(0px);
}

.spatial-card-item.pos-prev {
  transform: translateX(40px) translateZ(-90px) rotateY(-8deg) scale(0.88);
  opacity: 0;
  z-index: 1;
  filter: blur(2px);
  pointer-events: none;
}

.spatial-card-item.pos-prev:hover {
  transform: translateX(-60%) translateZ(-40px) rotateY(14deg) scale(0.90);
  opacity: 0.95;
  filter: blur(0px);
}

.spatial-card-item.pos-hidden {
  transform: translateX(0) translateZ(-250px) scale(0.65);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.service-card-luxe {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card-luxe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-aurora);
}

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

.service-badge-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: #08090d;
  background: #fef08a;
  border: 1px solid #08090d;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-badge-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: #ca8a04;
  border: 1px solid rgba(234, 179, 8, 0.4);
  background: #fefce8;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.service-deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}
.service-deliverables-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-body);
}
.service-deliverables-list li svg {
  color: #ca8a04;
  flex-shrink: 0;
}

.btn-scope-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
  background: #08090d;
  color: #ffe600;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
}

.btn-scope-trigger:hover {
  background: #ffe600;
  color: #08090d;
  box-shadow: 0 4px 20px rgba(255, 230, 0, 0.45);
}

.spatial-carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}

.spatial-nav-paddles {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.paddle-btn-luxe {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #08090d;
  color: #08090d;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.paddle-btn-luxe:hover {
  background: #ffe600;
  color: #08090d;
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(255, 230, 0, 0.5);
}

.spatial-indicators {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.spatial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.spatial-dot.active {
  width: 28px;
  border-radius: 9999px;
  background: #08090d;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

/* Matrix Mode View Switch */
.services-9-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.services-view-stage.matrix-mode .spatial-carousel-stage {
  display: none !important;
}

.services-view-stage.matrix-mode .services-9-grid {
  display: grid !important;
}

.services-view-stage.matrix-mode .spatial-carousel-controls {
  display: none !important;
}

.services-view-stage.deck-mode .services-9-grid {
  display: none !important;
}

/* ==========================================================================
   ENTERPRISE CRM & TECH STACK MARQUEE
   ========================================================================== */
.tech-stack-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.tech-marquee-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2rem 0;
  overflow: hidden;
  background: #f8fafc;
  border-top: 1.5px solid rgba(15, 23, 42, 0.1);
  border-bottom: 1.5px solid rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-sm);
}

.tech-marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: techMarqueeScroll 26s linear infinite;
  flex-shrink: 0;
}

@keyframes techMarqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tech-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.75rem;
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #08090d;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.tech-pill-badge:hover {
  border-color: #08090d;
  background: #fef9c3;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 230, 0, 0.25);
}

/* ==========================================================================
   VERIFIED INDUSTRY CASE STUDIES VAULT
   ========================================================================== */
.case-studies-section {
  padding: 6.5rem 0;
  position: relative;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.25rem;
  margin-top: 3rem;
}

.case-studies-grid .case-study-card {
  grid-column: span 2;
}

/* Center the bottom 2 cards directly beneath the top 3 cards */
.case-studies-grid .case-study-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.case-studies-grid .case-study-card:nth-child(5) {
  grid-column: 4 / span 2;
}

@media (max-width: 992px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .case-studies-grid .case-study-card,
  .case-studies-grid .case-study-card:nth-child(4),
  .case-studies-grid .case-study-card:nth-child(5) {
    grid-column: span 1 !important;
  }
  .case-studies-grid .case-study-card:nth-child(5) {
    grid-column: 1 / -1 !important;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .case-studies-grid .case-study-card,
  .case-studies-grid .case-study-card:nth-child(4),
  .case-studies-grid .case-study-card:nth-child(5) {
    grid-column: auto !important;
    max-width: 100%;
    margin: 0;
    padding: 1.6rem 1.25rem !important;
    box-sizing: border-box;
  }
}

.case-study-card {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.case-study-card:hover {
  border-color: #08090d;
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.case-metric-highlight {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #ca8a04;
  line-height: 1;
  margin: 1.25rem 0 0.5rem;
}

/* Modal System */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 13, 0.7);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-content-card {
  background: #ffffff;
  border: 2px solid #08090d;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  color: #08090d;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1.5px solid rgba(15, 23, 42, 0.15);
  color: #08090d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-close-btn:hover {
  background: #08090d;
  color: #ffe600;
}

/* ==========================================================================
   GLOBAL OPERATIONS COMMAND CENTER (Pune HQ + Multi-Timezone Live Clocks)
   ========================================================================== */
.pune-hq-section {
  padding: 6.5rem 0;
  position: relative;
}

.pune-radar-visual {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  pointer-events: none;
}

.radar-ring-1 { width: 50px; height: 50px; }
.radar-ring-2 { width: 110px; height: 110px; border-color: rgba(234, 179, 8, 0.35); }
.radar-ring-3 {
  width: 170px;
  height: 170px;
  border-style: dashed;
  animation: radarRotateRing 22s linear infinite;
}

@keyframes radarRotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-ping-pulse {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #08090d;
  box-shadow: 0 0 15px #ffe600;
  z-index: 2;
}

.radar-ping-wave {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ca8a04;
  animation: radarWave 2.6s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

@keyframes radarWave {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(8.5); opacity: 0; }
}

.radar-sweep-beam {
  position: absolute;
  width: 85px;
  height: 85px;
  top: 5px;
  right: 5px;
  background: conic-gradient(from 0deg, rgba(234, 179, 8, 0.5) 0deg, transparent 70deg);
  border-radius: 100% 0 0 0;
  transform-origin: bottom left;
  animation: radarBeamRotate 3.6s linear infinite;
  pointer-events: none;
}

@keyframes radarBeamRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 4-Timezone Command Center Cards */
.timezone-clocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.tz-clock-tile {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  text-align: left;
}

.tz-clock-tile:hover {
  border-color: #08090d;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.tz-clock-time {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 900;
  color: #08090d;
  margin: 0.5rem 0 0.2rem;
}

/* Magnetic Cursor */
.cyber-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #08090d;
  box-shadow: 0 0 8px #ffe600;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.cyber-cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #08090d;
  background: rgba(255, 230, 0, 0.15);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.cyber-cursor-aura.cursor-hover {
  width: 60px;
  height: 60px;
  border-color: #08090d;
  background: rgba(255, 230, 0, 0.25);
  box-shadow: 0 0 25px rgba(255, 230, 0, 0.4);
}

@media (hover: none) {
  .cyber-cursor-dot, .cyber-cursor-aura { display: none !important; }
}

/* Bento Cards & Sliders */
.bento-card {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: #08090d;
  box-shadow: var(--shadow-hover);
}

.interactive-slider-box {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-card);
}

.cyber-range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.1);
  outline: none;
  -webkit-appearance: none;
}

.cyber-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffe600;
  border: 2px solid #08090d;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Form Inputs & Controls */
.cyber-input-field {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  color: #08090d;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.cyber-input-field:focus {
  outline: none;
  border-color: #08090d;
  background: #ffffff;
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.35);
}

/* Footer Section — Grounded High-Tech Obsidian Black */
.footer-cyber-stage {
  padding: 4.5rem 0 2.5rem;
  background: #08090d;
  color: #94a3b8;
  border-top: 2px solid #08090d;
  position: relative;
}
.footer-cyber-stage .brand-name {
  color: #ffffff !important;
}
.footer-cyber-stage ul li {
  color: #94a3b8;
}
.footer-cyber-stage ul li a {
  color: #94a3b8;
  transition: color 0.2s ease;
}
.footer-cyber-stage ul li a:hover {
  color: #ffe600;
}
.footer-cyber-stage [style*="color: var(--text-black)"] {
  color: #ffffff !important;
}
.footer-cyber-stage [style*="color: var(--sky-primary)"] {
  color: #ffe600 !important;
}

/* Case Study Tabs */
.case-tabs-nav {
  display: inline-flex;
  background: rgba(15, 23, 42, 0.05);
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  padding: 0.35rem;
  border-radius: 9999px;
  margin-bottom: 2.5rem;
  gap: 0.5rem;
}
.case-tab-btn {
  padding: 0.65rem 1.6rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}
.case-tab-btn.active {
  background: #08090d;
  color: #ffe600;
  box-shadow: 0 4px 14px rgba(8, 9, 13, 0.25);
}

/* Newsletter Badges Ticker */
.newsletter-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.newsletter-tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 230, 0, 0.15);
  color: #08090d;
  border: 1px solid rgba(234, 179, 8, 0.3);
}
.newsletter-tag-chip .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eab308;
  animation: pulseAura 1.8s infinite ease-in-out;
}

/* Address & Command Dual Hubs */
.dual-hq-grid {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.dual-hq-grid .hq-hub-card {
  width: 100%;
  max-width: 860px;
}
.hq-hub-card {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.hq-hub-card:hover {
  border-color: #08090d;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.hq-hub-card.primary-hq {
  border-left: 4px solid #ffe600;
}

/* Media Kit Button in Header & Hero */
.btn-media-kit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  background: #ffffff;
  color: #08090d;
  border: 1.5px solid #08090d;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-media-kit:hover {
  background: #ffe600;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 230, 0, 0.4);
}
/* ==========================================================================
   15. CLIENT LOGOS TRUST MARQUEE
   ========================================================================== */
.client-trust-section {
  padding: 3rem 0 2.5rem;
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
}
.client-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  align-items: center;
}
.client-marquee-track:hover {
  animation-play-state: paused;
}
.client-logo-card {
  height: 58px;
  min-width: 140px;
  padding: 0.6rem 1.6rem;
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.client-logo-card:hover {
  border-color: #08090d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 230, 0, 0.35);
}
.client-logo-card img {
  max-height: 36px;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.8);
  transition: all 0.25s ease;
}
.client-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ==========================================================================
   16. REAL PHOTOGRAPHY & HOLOGRAPHIC FRAME
   ========================================================================== */
.photo-montage-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.photo-primary-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #08090d;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  background: #08090d;
}
.photo-primary-frame img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-primary-frame:hover img {
  transform: scale(1.04);
}
.photo-secondary-badge {
  position: absolute;
  bottom: -22px;
  right: -15px;
  background: #ffffff;
  border: 2px solid #08090d;
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 290px;
  z-index: 5;
}
.photo-secondary-badge img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  border: 1.5px solid #08090d;
}

/* ==========================================================================
   17. 6 ENTERPRISE TELEMETRY SCALE COUNTERS
   ========================================================================== */
.scale-telemetry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 3rem 0;
}
.scale-counter-card {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.scale-counter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffe600;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.scale-counter-card:hover::before {
  transform: scaleX(1);
}
.scale-counter-card:hover {
  border-color: #08090d;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.scale-counter-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-black);
  margin-bottom: 0.3rem;
  line-height: 1.1;
}
.scale-counter-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* ==========================================================================
   18. PROPRIETARY ENTERPRISE SOFTWARE SUITE (4 PRODUCTS)
   ========================================================================== */
.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .products-grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.product-box-card {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.product-box-card:hover {
  border-color: #08090d;
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.product-tag-pill {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: #08090d;
  background: #ffe600;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  border: 1px solid #08090d;
  margin-bottom: 1rem;
  width: fit-content;
}

/* ==========================================================================
   19. FLOATING ACTION QUICK DOCK
   ========================================================================== */
.floating-quick-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 998;
}
.dock-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #08090d;
  color: #08090d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.dock-action-btn:hover {
  background: #ffe600;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 230, 0, 0.45);
}
.dock-action-btn.whatsapp-btn:hover {
  background: #25d366;
  color: #ffffff;
}

@media (max-width: 640px) {
  .floating-quick-dock {
    bottom: 16px;
    right: 14px;
    gap: 0.45rem;
  }
  .dock-action-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .cyber-cookie-banner {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    padding: 1rem 1.15rem !important;
    border-radius: 14px !important;
  }
}

/* ==========================================================================
   20. JOURNEY EVOLUTION TIMELINE ROADMAP
   ========================================================================== */
.timeline-roadmap-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
}
.timeline-milestone-node {
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  transition: all 0.25s ease;
}
.timeline-milestone-node:hover {
  border-color: #08090d;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.timeline-year-badge {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #08090d;
  background: #ffe600;
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 6px;
  border: 1.5px solid #08090d;
  margin-bottom: 0.75rem;
}/* ==========================================================================
   21. CHAMKILA CYBER NEON YELLOW ENHANCEMENTS
   ========================================================================== */
:root {
  --neon-yellow-core: #ffe600;
  --neon-yellow-hot: #ffff00;
  --neon-yellow-glow: 0 0 25px rgba(255, 230, 0, 0.7), 0 0 50px rgba(255, 230, 0, 0.3);
  --neon-yellow-border: 0 0 15px rgba(255, 230, 0, 0.5);
  --obsidian-dark: #08090d;
}

/* Glowing Neon Utility */
.chamkila-glow {
  box-shadow: var(--neon-yellow-glow) !important;
}

.chamkila-border {
  border-color: var(--neon-yellow-core) !important;
  box-shadow: var(--neon-yellow-border) !important;
}

/* ==========================================================================
   22. HERO GIANT ROTATING CYBER ORBITAL WHEEL (HALF-VISIBLE ON RIGHT EDGE)
   ========================================================================== */
.hero-cyber-orbital-stage {
  position: relative;
  width: 100%;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-orbital-wrapper {
  position: absolute;
  right: -260px; /* Half of circle sits off-screen on the right edge */
  top: 50%;
  transform: translateY(-50%);
  width: clamp(480px, 48vw, 760px);
  height: clamp(480px, 48vw, 760px);
  border-radius: 50%;
  pointer-events: auto;
  user-select: none;
  filter: drop-shadow(0 0 45px rgba(255, 230, 0, 0.28));
  transition: transform 0.4s ease;
}

.hero-orbital-wrapper:hover {
  filter: drop-shadow(0 0 65px rgba(255, 230, 0, 0.45));
}

.hero-giant-cyber-wheel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: hero-orbit-spin-clockwise 32s linear infinite;
  will-change: transform;
}

@keyframes hero-orbit-spin-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes hero-orbit-spin-counter {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes hero-radar-sweep-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbital-svg-base {
  width: 100%;
  height: 100%;
  display: block;
}

.orbital-counter-ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  animation: hero-orbit-spin-counter 24s linear infinite;
  pointer-events: none;
}

.orbital-data-node {
  position: absolute;
  padding: 0.3rem 0.8rem;
  background: #08090d;
  color: #ffe600;
  border: 1.5px solid #ffe600;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: 0 0 16px rgba(255, 230, 0, 0.55);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.orbital-data-node.node-1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.orbital-data-node.node-2 { top: 50%; right: 0%; transform: translate(50%, -50%); }
.orbital-data-node.node-3 { bottom: 0%; left: 50%; transform: translate(-50%, 50%); }
.orbital-data-node.node-4 { top: 50%; left: 0%; transform: translate(-50%, -50%); }

.orbital-radar-sweep {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 230, 0, 0.45) 0deg, rgba(255, 230, 0, 0.08) 55deg, transparent 65deg);
  animation: hero-radar-sweep-spin 6s linear infinite;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.orbital-center-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(140px, 15vw, 190px);
  height: clamp(140px, 15vw, 190px);
  background: #08090d;
  border: 3px solid #ffe600;
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(255, 230, 0, 0.6), inset 0 0 25px rgba(255, 230, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.orbital-center-hub:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 50px rgba(255, 230, 0, 0.8), inset 0 0 30px rgba(255, 230, 0, 0.5);
}

.hub-pulse-circle {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 230, 0, 0.7);
  animation: hub-pulse-ring 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}

@keyframes hub-pulse-ring {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.hub-inner-emblem {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hub-exr-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: #ffe600;
  letter-spacing: -0.02em;
  text-shadow: 0 0 15px rgba(255, 230, 0, 0.6);
  line-height: 1;
}

.hub-sub-text {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.25em;
  margin-top: 4px;
}

.hero-orbit-hud-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1.5px solid #08090d;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 15px rgba(255, 230, 0, 0.35);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: #08090d;
  font-weight: 800;
  z-index: 15;
  pointer-events: auto;
  white-space: nowrap;
}

.hero-orbit-hud-badge.badge-top {
  top: 15%;
  left: 2%;
  animation: kinetic-badge-float 4.5s ease-in-out infinite alternate;
}

.hero-orbit-hud-badge.badge-bottom {
  bottom: 12%;
  left: 5%;
  animation: kinetic-badge-float 5s ease-in-out infinite alternate 0.5s;
}

@media (max-width: 992px) {
  .hero-cyber-orbital-stage {
    height: 420px;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
  }
  .hero-orbital-wrapper {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    max-width: 95vw;
    max-height: 95vw;
  }
  .hero-orbit-hud-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-cyber-orbital-stage {
    height: 320px;
  }
  .hero-orbital-wrapper {
    width: min(300px, 86vw);
    height: min(300px, 86vw);
  }
}

/* ==========================================================================
   23. SERVICES LEFT-SIDE ROTARY WHEEL & STEP-BY-STEP DIAL SYSTEM
   ========================================================================== */
.services-rotary-split-stage {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: center;
  min-height: 620px;
  margin-top: 2rem;
  overflow: visible;
}

.services-rotary-wheel-stage {
  position: relative;
  width: 320px;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.services-rotary-wheel-wrapper {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: auto;
  user-select: none;
  filter: drop-shadow(0 0 35px rgba(255, 230, 0, 0.3));
}

.services-rotary-dial {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  will-change: transform;
}

/* Continuous Subtle Ambient Spin on the background decorative ring */
.services-dial-ambient-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: hero-orbit-spin-clockwise 45s linear infinite;
  pointer-events: none;
}

.rotary-svg-base {
  width: 100%;
  height: 100%;
  display: block;
}

/* 9 Orbital Service Nodes on the Rotary Dial */
.rotary-service-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  margin-left: -24px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #08090d;
  color: #08090d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}

.rotary-service-node:hover {
  transform: scale(1.18);
  background: #fef08a;
  box-shadow: 0 6px 20px rgba(255, 230, 0, 0.4);
}

.rotary-service-node.active {
  background: #ffe600;
  border-color: #08090d;
  color: #08090d;
  transform: scale(1.3);
  box-shadow: 0 0 25px rgba(255, 230, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.rotary-service-node.active::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed #08090d;
  animation: hero-orbit-spin-clockwise 8s linear infinite;
}

.node-label-tooltip {
  position: absolute;
  left: 65px;
  top: 50%;
  transform: translateY(-50%);
  background: #08090d;
  color: #ffe600;
  border: 1px solid #ffe600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.45);
}

.rotary-service-node:hover .node-label-tooltip,
.rotary-service-node.active .node-label-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

/* Active Service Card Stage Right */
.services-active-card-stage {
  position: relative;
  z-index: 10;
}

.service-card-active-view {
  background: #ffffff;
  border: 2px solid #08090d;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 25px rgba(255, 230, 0, 0.2);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  animation: service-slide-reveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-card-active-view::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffe600, #f59e0b, #ffd000);
}

@keyframes service-slide-reveal {
  0% {
    opacity: 0;
    transform: translateX(-40px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.rotary-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.rotary-step-counter {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  color: #08090d;
}

.rotary-step-counter span {
  color: #ca8a04;
}

@media (max-width: 992px) {
  .services-rotary-split-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    overflow: hidden;
  }
  .services-rotary-wheel-stage {
    height: 380px;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
  }
  .services-rotary-wheel-wrapper {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 640px) {
  .node-label-tooltip {
    display: none !important;
  }
  .services-active-card-stage {
    padding: 1.5rem 1.15rem !important;
  }
}

@media (max-width: 480px) {
  .services-rotary-wheel-stage {
    height: 310px;
  }
  .services-rotary-wheel-wrapper {
    transform: translate(-50%, -50%) scale(0.82);
  }
}

/* ==========================================================================
   24. CONTACT INTERACTIVE TELEPHONE POP & RINGING UNIT
   ========================================================================== */
.contact-telephone-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: scale(0.3) translateY(60px);
  transition: opacity 0.5s ease, transform 0.65s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-telephone-unit.is-popped {
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
  animation: telephone-spring-pop 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes telephone-spring-pop {
  0% {
    opacity: 0;
    transform: scale(0.2) translateY(60px) rotate(-12deg);
  }
  65% {
    opacity: 1;
    transform: scale(1.15) translateY(-10px) rotate(4deg);
  }
  82% {
    transform: scale(0.96) translateY(3px) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0deg);
  }
}

.telephone-graphic-container {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 26px;
  background: #08090d;
  border: 3px solid #ffe600;
  box-shadow: 0 0 35px rgba(255, 230, 0, 0.65), 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.telephone-graphic-container:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 50px rgba(255, 230, 0, 0.9), 0 15px 35px rgba(0, 0, 0, 0.3);
}

.telephone-handset {
  color: #ffe600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phone-ring-vibrate 3.5s ease-in-out infinite;
}

@keyframes phone-ring-vibrate {
  0%, 70%, 100% {
    transform: rotate(0deg);
  }
  72%, 76%, 80%, 84% {
    transform: rotate(-10deg) scale(1.08);
  }
  74%, 78%, 82%, 86% {
    transform: rotate(10deg) scale(1.08);
  }
  88% {
    transform: rotate(0deg);
  }
}

.telephone-sound-waves {
  position: absolute;
  inset: -14px;
  border-radius: 34px;
  pointer-events: none;
}

.telephone-sound-waves .wave {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid #ffe600;
  opacity: 0;
  animation: wave-ripple-pulse 3.5s ease-out infinite;
}

.telephone-sound-waves .wave-1 { animation-delay: 2.5s; }
.telephone-sound-waves .wave-2 { animation-delay: 2.8s; }
.telephone-sound-waves .wave-3 { animation-delay: 3.1s; }

@keyframes wave-ripple-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}

.telephone-pop-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.telephone-quick-call-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffe600;
  color: #08090d;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  border: 2px solid #08090d;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 230, 0, 0.45);
  transition: all 0.2s ease;
}

.telephone-quick-call-badge:hover {
  background: #ffd000;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 230, 0, 0.65);
}

.badge-call-cta {
  background: #08090d;
  color: #ffe600;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

/* ==========================================================================
   25. ANIMATED CHARTS, METERS & TABLES
   ========================================================================== */
.tam-animated-chart-box {
  margin-top: 1.8rem;
  padding: 1.5rem;
  background: #f8fafc;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-md);
}

.chart-bar-group {
  margin-bottom: 1.2rem;
}

.chart-bar-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: #08090d;
  margin-bottom: 0.45rem;
}

.chart-bar-track {
  width: 100%;
  height: 12px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.chart-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, #ffe600 0%, #f59e0b 100%);
  box-shadow: 0 0 12px rgba(255, 230, 0, 0.7);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: width;
}

.chart-bar-fill.fill-tam { width: 100%; }
.chart-bar-fill.fill-sam { width: 68%; background: linear-gradient(90deg, #ca8a04 0%, #eab308 100%); }
.chart-bar-fill.fill-som { width: 34%; background: linear-gradient(90deg, #059669 0%, #10b981 100%); }

.roi-animated-growth-track {
  margin-top: 1.25rem;
  padding: 1rem;
  background: #08090d;
  border-radius: var(--radius-sm);
  border: 1px solid #ffe600;
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.25);
}

.roi-growth-bar-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #ffe600;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.roi-growth-bar-fill {
  height: 8px;
  border-radius: 4px;
  background: #ffe600;
  box-shadow: 0 0 14px #ffe600;
  transition: width 0.8s ease;
}

/* ==========================================================================
   26. SERVICES WHEEL DRAG ROTATION & 3D NODE CLICK ENHANCEMENTS
   ========================================================================== */
.services-rotary-dial {
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.services-rotary-dial.is-dragging {
  cursor: grabbing !important;
  transition: none !important; /* Instant response while dragging */
}

/* Ensure Rotary Nodes are elevated and never covered */
.rotary-service-node {
  z-index: 50 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.rotary-service-node span {
  pointer-events: none;
}

.rotary-service-node:hover {
  transform: var(--node-transform) scale(1.22) !important;
  background: #fef08a !important;
  box-shadow: 0 0 25px rgba(255, 230, 0, 0.8), 0 4px 14px rgba(0, 0, 0, 0.2) !important;
}

.rotary-service-node.active {
  background: #ffe600 !important;
  border-color: #08090d !important;
  color: #08090d !important;
  transform: var(--node-transform) scale(1.35) !important;
  box-shadow: 0 0 30px rgba(255, 230, 0, 0.9), 0 0 50px rgba(255, 230, 0, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Dynamic Side Slide-In & Placement Physics for Service Cards */
.card-slide-and-place {
  animation: card-slide-in-place 0.65s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

@keyframes card-slide-in-place {
  0% {
    opacity: 0;
    transform: perspective(1200px) translateX(90px) rotateY(-10deg) scale(0.92);
    box-shadow: -20px 0 40px rgba(255, 230, 0, 0.45);
  }
  65% {
    transform: perspective(1200px) translateX(-6px) rotateY(1deg) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: perspective(1200px) translateX(0) rotateY(0deg) scale(1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 25px rgba(255, 230, 0, 0.2);
  }
}

/* ==========================================================================
   27. KINETIC PORTAL DROP CIRCLE (SCROLL-TRIGGERED TOP-DOWN REVEAL)
   ========================================================================== */
.section-portal-drop-circle {
  position: relative;
  width: 140px;
  height: 140px;
  margin: -70px auto 2.5rem;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-160px) scale(0.4);
  transition: opacity 0.5s ease, transform 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.section-portal-drop-circle.is-dropped {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.portal-inner-wheel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #08090d;
  border: 3px solid #ffe600;
  box-shadow: 0 0 35px rgba(255, 230, 0, 0.7), 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: portal-wheel-auto-spin 12s linear infinite;
}

@keyframes portal-wheel-auto-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.portal-laser-sweep {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 230, 0, 0.6) 0deg, rgba(255, 230, 0, 0.05) 50deg, transparent 60deg);
  animation: portal-wheel-auto-spin 4s linear infinite;
  mix-blend-mode: screen;
}

.portal-center-icon {
  position: relative;
  z-index: 5;
  color: #ffe600;
  font-size: 1.6rem;
  animation: portal-pulse-gentle 2.5s ease-in-out infinite alternate;
}

@keyframes portal-pulse-gentle {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 1; text-shadow: 0 0 15px #ffe600; }
}

/* ==========================================================================
   28. 3D STACKED PAGE DECK ILLUSION EFFECT
   ========================================================================== */
.stacked-deck-container {
  perspective: 1600px;
  transform-style: preserve-3d;
}

.stacked-card-layer {
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  will-change: transform;
}

.stacked-card-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 230, 0, 0.35);
  pointer-events: none;
  opacity: 0.6;
}

/* Subtle stacked depth for product and case study cards */
.product-box-card, .case-study-card {
  transform: perspective(1200px) translateZ(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.product-box-card:hover, .case-study-card:hover {
  transform: perspective(1200px) translate3d(0, -10px, 25px) !important;
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.15), 0 0 25px rgba(255, 230, 0, 0.35) !important;
  border-color: #08090d !important;
}

/* ==========================================================================
   29. ANTI-GRAVITY FLYING NUMBER PARTICLE FOUNTAIN
   ========================================================================== */
.cyber-number-particle-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 20;
}

.cyber-number-particle {
  position: absolute;
  bottom: 10px;
  font-family: var(--font-mono);
  font-weight: 900;
  color: #ffe600;
  text-shadow: 0 0 14px rgba(255, 230, 0, 0.9), 0 0 28px rgba(255, 230, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(0.75rem, 1.4vw, 1.25rem);
  white-space: nowrap;
  pointer-events: none;
  animation: number-particle-fly-vanish var(--duration, 2.4s) cubic-bezier(0.12, 0.8, 0.35, 1) forwards;
  will-change: transform, opacity;
}

@keyframes number-particle-fly-vanish {
  0% {
    opacity: 0;
    transform: translate3d(var(--start-x, 0px), 0px, 0px) scale(0.4) rotate(0deg);
  }
  15% {
    opacity: 1;
    transform: translate3d(var(--mid-x, 10px), -60px, 0px) scale(1.2) rotate(var(--spin, 6deg));
  }
  70% {
    opacity: 0.9;
    transform: translate3d(var(--end-x, -15px), -210px, 0px) scale(1.0) rotate(calc(var(--spin, 6deg) * 2));
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--end-x, -25px), -320px, 0px) scale(0.65) rotate(calc(var(--spin, 6deg) * 3));
  }
}


/* ==========================================================================
   30. 3D STACKED PAGE DECK ILLUSION & LAYERED SHEET STYLING
   ========================================================================== */
.deck-sheet-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-top: 3.5px solid #ffe600;
  border-radius: 26px;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.03), 0 20px 50px rgba(0, 0, 0, 0.07), 0 0 30px rgba(255, 230, 0, 0.12);
  margin-bottom: 3.5rem;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  will-change: transform;
}

.deck-sheet-card:hover {
  transform: translateY(-5px) scale(1.002);
  box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.05), 0 30px 65px rgba(0, 0, 0, 0.12), 0 0 40px rgba(255, 230, 0, 0.25);
}

.deck-sheet-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #08090d;
  color: #ffe600;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.95rem;
  border-radius: 0 0 10px 10px;
  margin-left: 2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2), 0 0 12px rgba(255, 230, 0, 0.4);
}

.deck-sheet-tab .deck-tab-num {
  color: #ffe600;
}

.deck-sheet-tab .deck-tab-sep {
  color: rgba(255, 255, 255, 0.4);
}

.deck-sheet-tab .deck-tab-title {
  color: #ffffff;
}

/* Wheel Affordance Hint Badge */
.wheel-interaction-hint {
  position: absolute;
  top: 18px;
  left: 15px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #08090d;
  border: 1.5px solid #ffe600;
  color: #ffe600;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.4);
  pointer-events: none;
  animation: hint-gentle-pulse 2.5s ease-in-out infinite alternate;
}

.hint-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffe600;
  box-shadow: 0 0 8px #ffe600;
}

@keyframes hint-gentle-pulse {
  0% { transform: translateY(0); box-shadow: 0 0 12px rgba(255, 230, 0, 0.3); }
  100% { transform: translateY(-3px); box-shadow: 0 0 22px rgba(255, 230, 0, 0.6); }
}
/* ==========================================================================
   25. EXECUTIVE MOBILE PERFECTION & FLUID RESPONSIVE POLISH (EXCELSIOR PARITY)
   ========================================================================== */
@media (max-width: 768px) {
  /* 1. Global Section Spacing — Elegant breathing room */
  section[style*="padding: 6"],
  section[style*="padding: 5"],
  section[style*="padding: 6.5"],
  .services-stage-section,
  .tam-wizard-section,
  .case-studies-section,
  .pune-hq-section,
  .tech-stack-section {
    padding: clamp(2.8rem, 6vw, 3.8rem) 0 !important;
  }

  .container {
    padding: 0 1.15rem !important;
  }

  /* 2. Card Padding Refinements */
  .deck-sheet-card > div[style*="padding: 3rem"] {
    padding: 1.75rem 1.15rem 2.25rem !important;
  }
  .telemetry-slide-card[style*="padding"] {
    padding: 1.75rem 1.15rem !important;
  }
  .deck-sheet-tab {
    margin-left: 1rem !important;
    font-size: 0.68rem !important;
    padding: 0.3rem 0.75rem !important;
  }

  /* 3. Hero Section on Mobile — Clean, High-Contrast & Centered */
  .hero-split-stage {
    padding-top: 5.25rem !important;
    gap: 1.5rem !important;
    min-height: auto !important;
    text-align: center !important;
  }
  .hero-left-content {
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin: 0 auto !important;
  }
  .kinetic-hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.03em !important;
  }
  .hero-editorial-lead {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    max-width: 500px !important;
  }
  .hero-cta-group {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    max-width: 360px !important;
  }
  .hero-cta-group .btn-hero-glow,
  .hero-cta-group .btn-hero-secondary {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.92rem !important;
  }
  .hero-stats-row {
    width: 100% !important;
    max-width: 360px !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    margin-top: 1.75rem !important;
    padding-top: 1.25rem !important;
    border-top: 1px solid rgba(15, 23, 42, 0.1) !important;
  }
  .hero-stat-col {
    padding: 0 !important;
    border: none !important;
    text-align: center !important;
  }
  .hero-stat-num {
    font-size: 1.35rem !important;
  }
  .hero-stat-label {
    font-size: 0.65rem !important;
    line-height: 1.25 !important;
  }

  /* Compact Hero Cyber Wheel as an Emblem */
  .hero-cyber-orbital-stage {
    height: 220px !important;
    margin: 0.75rem auto 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-orbital-wrapper {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 220px !important;
    height: 220px !important;
  }
  .hero-giant-cyber-wheel,
  .hero-giant-cyber-wheel svg {
    width: 220px !important;
    height: 220px !important;
  }
  .orbital-center-hub {
    width: 64px !important;
    height: 64px !important;
  }
  .orbital-center-hub .hub-exr-text {
    font-size: 0.85rem !important;
  }
  .orbital-center-hub .hub-sub-text {
    font-size: 0.45rem !important;
  }
  .orbital-counter-ring {
    display: none !important;
  }

  /* 4. Services Section Mobile Refinements */
  .services-stage-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
    margin-bottom: 1.75rem !important;
  }
  .view-mode-toggle-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1.2rem !important;
    font-size: 0.78rem !important;
  }
  .services-rotary-split-stage {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    min-height: auto !important;
    margin-top: 0.75rem !important;
  }
  /* Services Rotary Wheel Stage - Symmetrical, Centered & Clean */
  .services-rotary-wheel-stage {
    height: 260px !important;
    margin: 1rem auto 1rem !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    position: relative !important;
  }
  .services-rotary-wheel-wrapper {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    margin: 0 auto !important;
    transform: scale(0.50) !important;
    transform-origin: center center !important;
    filter: drop-shadow(0 0 25px rgba(255, 230, 0, 0.35)) !important;
  }
  .services-rotary-wheel-wrapper .orbital-center-hub {
    width: 130px !important;
    height: 130px !important;
    background: #08090d !important;
    border: 2.5px solid #ffe600 !important;
    box-shadow: 0 0 25px rgba(255, 230, 0, 0.55), inset 0 0 15px rgba(255, 230, 0, 0.3) !important;
  }
  .services-rotary-wheel-wrapper .orbital-center-hub .hub-exr-text {
    font-size: 1.35rem !important;
    color: #ffe600 !important;
    letter-spacing: 0.05em !important;
  }
  .services-rotary-wheel-wrapper .orbital-center-hub .hub-sub-text {
    font-size: 0.58rem !important;
    color: #ffffff !important;
    letter-spacing: 0.18em !important;
  }
  .wheel-interaction-hint {
    top: -18px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.65rem !important;
    padding: 0.35rem 0.85rem !important;
    white-space: nowrap !important;
    z-index: 15 !important;
  }

  /* Service Card on Mobile — Flexible, High Readability */
  .services-active-card-stage {
    padding: 0 !important;
    width: 100% !important;
  }
  .spatial-carousel-stage {
    height: auto !important;
    min-height: 480px !important;
    perspective: none !important;
    padding: 0 !important;
  }
  .spatial-track-3d {
    position: relative !important;
    height: auto !important;
    min-height: 480px !important;
  }
  .spatial-card-item {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }
  .spatial-card-item:not(.pos-active) {
    display: none !important;
    visibility: hidden !important;
  }
  .spatial-card-item.pos-active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    animation: mobileCardFadeIn 0.35s ease !important;
  }
  .service-card-luxe {
    padding: 1.6rem 1.25rem !important;
    border-radius: var(--radius-md) !important;
  }
  .service-card-luxe h3 {
    font-size: 1.25rem !important;
  }
  .service-card-luxe p {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }
  .service-deliverables-list li {
    font-size: 0.82rem !important;
    padding: 0.45rem 0 !important;
  }

  /* Rotary Controls Bar & Next/Previous Buttons on Mobile */
  .rotary-controls-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.85rem !important;
    margin-top: 1.25rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
    width: 100% !important;
  }
  .rotary-step-counter {
    font-size: 0.82rem !important;
    text-align: center !important;
    width: 100% !important;
  }
  .spatial-nav-paddles {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.25rem !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .paddle-btn-luxe {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.25rem !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  }
  .spatial-indicators {
    gap: 0.35rem !important;
  }
  .spatial-dot {
    width: 7px !important;
    height: 7px !important;
  }
  .spatial-dot.active {
    width: 22px !important;
  }
  .services-active-card-stage > div[style*="font-family: var(--font-mono)"] {
    text-align: center !important;
    font-size: 0.68rem !important;
    margin-top: 0.65rem !important;
    opacity: 0.85 !important;
  }

  /* Kinetic Transition Portal Circle on Mobile — Clean Separation, Never Overlap */
  .section-portal-drop-circle {
    width: 76px !important;
    height: 76px !important;
    margin: 2.75rem auto 1.75rem !important;
    transform: none !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 10 !important;
    clear: both !important;
  }
  .section-portal-drop-circle::before {
    content: '' !important;
    position: absolute !important;
    inset: -7px !important;
    border-radius: 50% !important;
    border: 1.5px dashed rgba(255, 230, 0, 0.45) !important;
    animation: portal-wheel-auto-spin 20s linear infinite reverse !important;
    pointer-events: none !important;
  }
  .portal-inner-wheel {
    width: 100% !important;
    height: 100% !important;
    border: 2.5px solid #ffe600 !important;
    box-shadow: 0 0 25px rgba(255, 230, 0, 0.55), 0 6px 18px rgba(0, 0, 0, 0.35), inset 0 0 12px rgba(255, 230, 0, 0.2) !important;
  }
  .portal-center-icon {
    font-size: 1.15rem !important;
  }

  /* 5. Grids, Calculators & Forms Stack on Mobile */
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .telemetry-showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .products-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .product-box-card {
    padding: 1.6rem 1.25rem !important;
  }
  .tam-wizard-step {
    padding: 1.5rem 1rem !important;
  }
  .tam-option-pill {
    font-size: 0.78rem !important;
    padding: 0.45rem 0.85rem !important;
  }
  .tam-metrics-summary-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }
  .roi-slider-group {
    margin-bottom: 1.25rem !important;
  }
  .roi-result-card {
    padding: 1.5rem 1.15rem !important;
  }
  .cyber-form-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .cyber-input-field {
    font-size: 0.92rem !important;
    padding: 0.75rem 1rem !important;
  }
  .pune-hq-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .footer-cols-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
