/* ==========================================================================
   ORION MARKETING — Executive Performance Marketing Agency
   Design System & Styling Architecture (Phase 1)
   ========================================================================== */

/* --- Custom Properties / Design Tokens --- */
:root {
  /* Color Palette */
  --bg-main: #000000;
  --bg-surface: #0a0a0c;
  --bg-surface-elevated: #111114;
  --bg-surface-active: #18181c;
  --bg-glass: rgba(10, 10, 12, 0.9);
  --bg-glass-card: rgba(17, 17, 20, 0.92);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-focus: rgba(255, 255, 255, 0.5);

  /* Typography Colors */
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-inverse: #000000;

  /* Accent Color (Cobalt Sapphire) */
  --accent-primary: #ffffff;
  --accent-dark: #e4e4e7;
  --accent-light: #ffffff;
  --accent-glow: rgba(255, 255, 255, 0.16);
  --accent-subtle: rgba(255, 255, 255, 0.06);

  /* Functional Indicators */
  --success: #ffffff;
  --success-glow: rgba(255, 255, 255, 0.22);
  --success-subtle: rgba(255, 255, 255, 0.08);
  --warning: #f59e0b;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions & Radii */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Elevations */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 24px -6px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 24px 48px -12px rgba(0, 0, 0, 0.75);
  --shadow-dashboard: 0 35px 80px -15px rgba(0, 0, 0, 0.9), 0 0 45px -10px rgba(255, 255, 255, 0.135);
}

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

html {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;

  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(ellipse 70% 35% at 50% 0%, rgba(255, 255, 255, 0.036), transparent 70%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.027), transparent 40%),
    linear-gradient(to bottom, transparent 0%, #000000 100%);
  background-repeat: no-repeat;
}

/* Background Grid Overlay (Ultra-subtle, formal) */
.bg-grid {
  position: absolute;
  inset: 0;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 20%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 20%, #000 70%, transparent 100%);
}

/* Links & Buttons Reset */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}

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

/* Common Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

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

/* ==========================================================================
   NAVIGATION BAR (Floating, Glassmorphism, Responsive)
   ========================================================================== */
.header-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  width: calc(100% - 2.5rem);
  max-width: 1140px;
  height: 64px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(10, 13, 19, 0.88);
  border-color: var(--border-medium);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #d4d4d8, #ffffff);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.315);
}

.brand-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.brand-name span.highlight {
  color: var(--accent-light);
  font-weight: 800;
}

.brand-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--text-secondary);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
  padding: 0.25rem 0;
}

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

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease-spring);
  white-space: nowrap;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  padding: 0.625rem 1.35rem;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4d4d8, #e4e4e7);
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.450);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  padding: 0.625rem 1.35rem;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-medium);
  color: #fff;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.mobile-toggle svg {
  width: 20px;
  height: 20px;
}

/* Mobile Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 8, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.3s var(--ease-spring);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   HERO SECTION (Two-Column Master Layout)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

/* --- Hero Left: Content & Positioning --- */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

/* Badge / Label */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.072);
  border: 1px solid rgba(255, 255, 255, 0.225);
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-primary);
  position: relative;
}

.badge-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid var(--accent-light);
  animation: pulseDot 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Main Headline */
.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.85rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 1.35rem;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #ffffff 40%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .text-accent {
  background: linear-gradient(135deg, #ffffff 0%, #e4e4e7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Supporting Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Hero CTA Row */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.arrow-icon {
  transition: transform 0.2s ease;
}

.btn-secondary:hover .arrow-icon {
  transform: translateX(4px);
}

/* Trust Metric Proof Row */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

.trust-number span.plus {
  color: var(--accent-light);
}

.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
}

/* ==========================================================================
   HERO RIGHT: 3D ANIMATED ANALYTICS DASHBOARD
   ========================================================================== */
.dashboard-viewport {
  position: relative;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* Perspective Wrapper that responds to Mouse Parallax & Float */
.dashboard-perspective-wrapper {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  animation: floatingSuspension 7s ease-in-out infinite;
  transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1);
}

/* Slow Floating Ambient Movement */
@keyframes floatingSuspension {
  0%, 100% {
    transform: rotateY(-6deg) rotateX(4deg) translateY(0px);
  }
  50% {
    transform: rotateY(-4deg) rotateX(2deg) translateY(-14px);
  }
}

/* Main Dashboard Glass Card */
.dashboard-card {
  width: 530px;
  background: var(--bg-glass-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dashboard);
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}

/* Subtle Specular Glow on Top Edge */
.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* Ambient Radial Glow Behind */
.dashboard-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.162) 0%, rgba(255, 255, 255, 0.000) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

/* Soft Shadow Below Card */
.dashboard-ground-shadow {
  position: absolute;
  bottom: -45px;
  left: 15%;
  right: 15%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 75%);
  filter: blur(12px);
  transform: rotateX(85deg);
  pointer-events: none;
}

/* --- Dashboard Interior UI --- */

/* Header Bar */
.dash-header {
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.dash-header-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--success-subtle);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--success);
  letter-spacing: 0.04em;
}

.live-dot {
  width: 6px;
  height: 6px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--success);
}

.dash-campaign-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dash-date-pill {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 9px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-subtle);
}

/* Metric Tiles Grid (ROAS, CPA, Revenue, Conv Rate) */
.dash-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1.25rem 1.4rem;
}

.metric-tile {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.metric-tile:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.metric-tile.highlight {
  border-color: rgba(255, 255, 255, 0.270);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.063), rgba(255, 255, 255, 0.02));
}

.metric-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}

.metric-badge {
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 1px 5px;
  border-radius: 4px;
}

.metric-badge.positive {
  color: var(--success);
  background: var(--success-subtle);
}

.metric-val {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

.metric-sub {
  font-size: 0.68rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

/* SVG Chart Area */
.dash-chart-section {
  padding: 0.5rem 1.4rem 1.25rem;
}

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

.chart-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.legend-color {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.legend-color.blue { background: var(--accent-primary); }
.legend-color.slate { background: #475569; }

.svg-chart-container {
  width: 100%;
  height: 100px;
  overflow: visible;
}

.svg-chart-container svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Ad Channel Performance Mini-Cards */
.dash-channels {
  padding: 0 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.channel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  font-size: 0.75rem;
}

.channel-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.channel-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
}

.channel-name {
  font-weight: 600;
  color: var(--text-primary);
}

.channel-metrics {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 500;
}

.channel-spend {
  color: var(--text-secondary);
}

.channel-roas {
  color: var(--accent-light);
  font-weight: 700;
}

/* --- Floating Satellite Chips (Suspended UI Elements) --- */
.satellite-chip {
  position: absolute;
  background: rgba(14, 18, 27, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 255, 255, 0.180);
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
}

/* Satellite Chip 1: Top Right (Surge Alert) */
.chip-top-right {
  top: -24px;
  right: -28px;
  transform: translateZ(55px);
  animation: chipHover1 5s ease-in-out infinite;
}

@keyframes chipHover1 {
  0% { transform: translateZ(55px) translateY(0); }
  100% { transform: translateZ(55px) translateY(-8px); }
}

.chip-icon-pulse {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.180);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 0.8rem;
}

.chip-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.chip-text span.green {
  color: var(--success);
  margin-left: 0.3rem;
}

/* Satellite Chip 2: Bottom Left (Optimization Signal) */
.chip-bottom-left {
  bottom: -22px;
  left: -28px;
  transform: translateZ(45px);
  animation: chipHover2 6s ease-in-out infinite;
}

@keyframes chipHover2 {
  0% { transform: translateZ(45px) translateY(0); }
  100% { transform: translateZ(45px) translateY(7px); }
}

.chip-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.chip-tag strong {
  color: #fff;
}

/* ==========================================================================
   UNDER-HERO CAPABILITY STRIP (Executive, Formal & Grounded)
   ========================================================================== */
.capability-bar-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
}

.capability-strip {
  background: rgba(14, 17, 24, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}

.capability-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Core Pillar Track */
.capability-pillars {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  transition: color 0.2s ease;
}

.pillar-item:hover {
  color: var(--text-primary);
}

.pillar-dot {
  color: var(--accent-primary);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Partner Platforms Strip (Meta, Shopify, Stripe, Klaviyo) */
.partner-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.partner-badges:hover {
  opacity: 0.95;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.partner-item svg {
  height: 18px;
  width: auto;
  fill: currentColor;
}

/* ==========================================================================
   PHASE 2: SECTION HEADERS & SHARED ARCHITECTURE
   ========================================================================== */
.section-header {
  margin-bottom: 4rem;
  max-width: 800px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.section-title .text-gradient {
  background: linear-gradient(135deg, #ffffff 40%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 620px;
}

/* ==========================================================================
   PHASE 2: SERVICES SECTION (Editorial Grid & Layered 3D Visual)
   ========================================================================== */
.services-section {
  position: relative;
  padding: 8rem 0 6.5rem;
  background-image: 
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.027), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.036), transparent 50%);
}

.services-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: start;
}

/* --- Editorial Services List --- */
.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
}

/* Editorial Service Row */
.service-row {
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.25rem 1.25rem;
  border-radius: var(--radius-md);
  outline: none;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.28s var(--ease-spring), 
              background-color 0.28s var(--ease-smooth), 
              border-color 0.28s var(--ease-smooth),
              box-shadow 0.28s var(--ease-smooth);
}

/* Row Hover: lifts by 4-8px, slight 3D tilt, subtle highlight, no aggressive tilt */
.service-row:hover,
.service-row:focus-visible {
  transform: translateY(-6px) rotateX(var(--tilt-x, 1.2deg)) rotateY(var(--tilt-y, -1deg));
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.252);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 255, 255, 0.036);
}

.service-row-inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* Large Service Number */
.service-num-col {
  flex-shrink: 0;
  width: 58px;
}

.service-num {
  font-family: var(--font-main);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  user-select: none;
}

.service-row:hover .service-num {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Service Body */
.service-body {
  flex: 1;
}

.service-headline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.service-name {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.service-row:hover .service-name {
  color: #ffffff;
}

/* Micro Arrow Indicator - moves gently on hover */
.service-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: transform 0.25s var(--ease-spring), 
              background-color 0.25s ease, 
              border-color 0.25s ease, 
              color 0.25s ease;
  flex-shrink: 0;
}

.service-row:hover .service-arrow {
  transform: translateX(5px) translateY(-2px);
  background: rgba(255, 255, 255, 0.135);
  border-color: rgba(255, 255, 255, 0.405);
  color: var(--accent-light);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 520px;
}

/* Service Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-row:hover .service-tag {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

/* ==========================================================================
   CENTRAL 3D MARKETING SYSTEM VISUAL (Layered in Depth with Floating Motion)
   ========================================================================== */
.system-visual-pane {
  position: sticky;
  top: 7rem;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.system-perspective-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  transform-style: preserve-3d;
  will-change: transform;
  animation: systemFloating 8s ease-in-out infinite;
  transition: transform 0.18s cubic-bezier(0.2, 0, 0.2, 1);
}

@keyframes systemFloating {
  0% {
    transform: rotateY(5deg) rotateX(2.5deg) translateY(0px);
  }
  100% {
    transform: rotateY(3deg) rotateX(1deg) translateY(-12px);
  }
}

.system-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.135) 0%, rgba(255, 255, 255, 0.000) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

.system-console-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.4rem 1.75rem;
  box-shadow: var(--shadow-dashboard);
  transform-style: preserve-3d;
  position: relative;
}

.system-console-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

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

.system-header-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.pulse-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
}

.system-badge-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.090);
  color: var(--accent-light);
  border: 1px solid rgba(255, 255, 255, 0.225);
}

/* System Pipeline Container */
.system-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transform-style: preserve-3d;
}

/* Step Glass Card (Layered in 3D Depth) */
.flow-card {
  position: relative;
  background: rgba(14, 18, 27, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: transform 0.25s var(--ease-smooth), border-color 0.25s ease, background-color 0.25s ease;
  will-change: transform;
}

.flow-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(22, 28, 42, 0.95);
}

/* Progressive 3D Stepped Z-Depth for Layered Architecture */
.flow-depth-1 { transform: translateZ(12px); }
.flow-depth-2 { transform: translateZ(24px); }
.flow-depth-3 { transform: translateZ(36px); }
.flow-depth-4 { transform: translateZ(26px); }
.flow-depth-5 { transform: translateZ(48px); }

/* Outcome Highlighting for Stage 5: Growth */
.flow-card.highlight-card {
  border-color: rgba(255, 255, 255, 0.405);
  background: linear-gradient(135deg, rgba(26, 36, 54, 0.95), rgba(15, 23, 42, 0.98));
  box-shadow: 0 8px 24px -4px rgba(255, 255, 255, 0.225);
}

.flow-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  flex-shrink: 0;
  width: 78px;
}

.flow-card-badge.highlight {
  color: var(--accent-light);
}

.flow-card-content {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
}

.flow-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.flow-icon.highlight {
  background: linear-gradient(135deg, #d4d4d8, #ffffff);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.450);
}

.flow-details {
  display: flex;
  flex-direction: column;
}

.flow-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.flow-sub {
  font-size: 0.68rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.flow-metric {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: right;
  flex-shrink: 0;
}

.flow-metric.highlight {
  color: var(--success);
  font-weight: 700;
}

/* Flow Connector Links */
.flow-link {
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.flow-arrow-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--border-medium), rgba(255, 255, 255, 0.450));
  position: relative;
}

.flow-dot-pulse {
  position: absolute;
  top: 0;
  left: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 6px var(--accent-primary);
  animation: flowPulse 2s ease-in-out infinite;
}

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

.system-ground-shadow {
  position: absolute;
  bottom: -35px;
  left: 10%;
  right: 10%;
  height: 25px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, transparent 75%);
  filter: blur(10px);
  transform: rotateX(85deg);
  pointer-events: none;
}

/* ==========================================================================
   PHASE 2: APPROACH SECTION (Commercial Economics & Guiding Principles)
   ========================================================================== */
.approach-section {
  position: relative;
  padding: 8rem 0 6.5rem;
  background-image: 
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 255, 255, 0.072), transparent 70%),
    linear-gradient(to bottom, #000000 0%, #07070c 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}

/* Approach Narrative */
.approach-narrative {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.approach-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.approach-text {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.approach-cta-wrap {
  display: flex;
  align-items: center;
}

/* Three Principles Grid */
.principles-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.principle-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  transition: transform 0.25s var(--ease-spring), 
              border-color 0.25s ease, 
              background-color 0.25s ease,
              box-shadow 0.25s ease;
}

.principle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.315);
  background: rgba(22, 28, 42, 0.85);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.072);
}

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

.principle-number {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  font-family: var(--font-mono, monospace);
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.090);
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.180);
}

.principle-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.principle-card:hover .principle-icon {
  background: rgba(255, 255, 255, 0.135);
  transform: scale(1.05);
}

.principle-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

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

/* ==========================================================================
   PHASE 4: SOCIAL PROOF SECTION (Minimal Authentic Verification Framework)
   ========================================================================== */
.proof-section {
  position: relative;
  padding: 8rem 0 6.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.036), transparent 60%);
}

.section-header-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 740px;
}

.section-header-center .hero-badge {
  margin-left: auto;
  margin-right: auto;
}

.section-header-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Minimal Authentic Verification Card */
.proof-verification-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.75rem;
  margin-bottom: 3rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-dashboard);
}

.proof-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
}

.proof-shield-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.090);
  border: 1px solid rgba(255, 255, 255, 0.225);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.proof-shield-icon svg {
  width: 24px;
  height: 24px;
}

.proof-content-wrap {
  flex: 1;
}

.proof-status-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.proof-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.108);
  border: 1px solid rgba(255, 255, 255, 0.270);
  color: var(--accent-light);
}

.proof-compliance-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono, monospace);
}

.proof-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

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

/* Production-Ready Testimonial Grid (Minimal Glass Effect & Subtle Float) */
.testimonials-framework {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1040px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(14, 18, 27, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  animation: subtleTestimonialFloat 6s ease-in-out infinite;
  will-change: transform;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:nth-child(2) {
  animation-delay: -4.5s;
}

@keyframes subtleTestimonialFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.315);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.65), 0 0 20px rgba(255, 255, 255, 0.072);
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-author-meta {
  display: flex;
  flex-direction: column;
}

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

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

.testimonial-metric-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-light);
  padding: 2px 7px;
  background: rgba(255, 255, 255, 0.090);
  border: 1px solid rgba(255, 255, 255, 0.180);
  border-radius: var(--radius-xs);
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  font-style: normal;
}

.testimonial-result-row {
  font-size: 0.8rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.result-label {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.result-value {
  color: var(--success);
  font-weight: 700;
  font-size: 0.82rem;
}

/* ==========================================================================
   PHASE 4: FINAL CALL TO ACTION (3D Layered Glass Panel)
   ========================================================================== */
.final-cta-section {
  padding: 8rem 0 6.5rem;
  position: relative;
  overflow: hidden;
}

.final-cta-stage {
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  max-width: 1040px;
  margin: 0 auto;
}

/* 3D Layered Glass Backdrop (Slow Floating Depth, Controlled Ambient Shading) */
.cta-3d-backdrop {
  position: absolute;
  inset: -15px -20px;
  pointer-events: none;
  transform-style: preserve-3d;
  z-index: 1;
}

.cta-glass-plane {
  position: absolute;
  border-radius: calc(var(--radius-xl) + 6px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cta-plane-back {
  inset: 0;
  background: rgba(14, 20, 32, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateZ(-25px);
  animation: ctaSlowFloatBack 8s ease-in-out infinite;
}

.cta-plane-front {
  inset: 12px;
  background: rgba(20, 28, 44, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.180);
  transform: translateZ(15px);
  animation: ctaSlowFloatFront 7s ease-in-out infinite;
}

@keyframes ctaSlowFloatBack {
  0% { transform: translateZ(-25px) translateY(0); }
  100% { transform: translateZ(-25px) translateY(-7px); }
}

@keyframes ctaSlowFloatFront {
  0% { transform: translateZ(15px) translateY(0); }
  100% { transform: translateZ(15px) translateY(6px); }
}

/* Main CTA Card Panel */
.final-cta-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(14, 20, 32, 0.92) 0%, rgba(10, 14, 23, 0.97) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 5rem 3.5rem;
  text-align: center;
  box-shadow: var(--shadow-dashboard);
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.450), transparent);
}

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-headline {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.final-cta-subtext {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   PHASE 4: CONTACT SECTION (Clean Professional Form & Reliable UX)
   ========================================================================== */
.contact-section {
  padding: 8rem 0 7rem;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
  background: #000000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}

/* Contact Left: Briefing */
.contact-brief {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-headline {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.contact-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.contact-reassurance-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

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

.reassurance-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.072);
  border: 1px solid rgba(255, 255, 255, 0.180);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.reassurance-icon svg {
  width: 18px;
  height: 18px;
}

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

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

/* Contact Right: Glass Form */
.contact-glass-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 3rem 2.75rem;
  box-shadow: var(--shadow-dashboard);
  position: relative;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-label .required {
  color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.135);
}

/* Field Error State */
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.field-error-msg {
  font-size: 0.72rem;
  color: #f87171;
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .field-error-msg {
  display: block;
}

/* Custom Dropdown Styling */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper .form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.select-wrapper .form-select option {
  background: #0d0c15;
  color: #ffffff;
}

.select-caret {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.form-privacy-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

/* Success Confirmation State Card */
.contact-success-state {
  background: rgba(14, 28, 22, 0.95);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.success-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  margin-bottom: 0.5rem;
}

.success-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.success-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.success-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 0 1rem 0;
}

/* ==========================================================================
   PHASE 4: MINIMAL PREMIUM FOOTER
   ========================================================================== */
.site-footer {
  background: #030406;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand-col {
  max-width: 360px;
}

.footer-positioning {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1.15rem;
  max-width: 320px;
}

.footer-col-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(2px);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.social-link:hover {
  color: var(--accent-light) !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

/* ==========================================================================
   PHASE 3: SELECTED WORK SECTION (Case Study Slots & 3D Layered Stacks)
   ========================================================================== */
.work-section {
  position: relative;
  padding: 8rem 0 6.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.036), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.027), transparent 50%);
}

.case-studies-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Editorial Case Study Slot Card */
.case-study-slot {
  position: relative;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 3rem 3rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  overflow: visible;
}

.case-study-slot:hover {
  border-color: rgba(255, 255, 255, 0.315);
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.75), 0 0 30px rgba(255, 255, 255, 0.072);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Column: Structured Metadata & Strategy */
.case-study-content {
  display: flex;
  flex-direction: column;
}

.case-study-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.090);
  border: 1px solid rgba(255, 255, 255, 0.252);
  border-radius: var(--radius-xs);
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
  animation: pulseDot 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

.case-study-title {
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.case-study-summary {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Structured Metadata Key-Value Schema */
.case-study-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.meta-item {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.875rem;
}

.meta-label {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.meta-value {
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.confidential-tag {
  font-size: 0.75rem;
  color: var(--accent-light);
  margin-left: 0.35rem;
  font-family: var(--font-mono, monospace);
  font-weight: 600;
}

.meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.meta-tags .service-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
}

.outcome-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-light);
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1.4;
}

.outcome-status svg {
  flex-shrink: 0;
}

.case-study-footer-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px dashed var(--border-subtle);
  padding-top: 0.85rem;
}

/* Right Column: Interactive 3D Layered Screenshot & Telemetry Stack */
.case-study-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.case-study-stack-wrapper {
  perspective: 1200px;
  perspective-origin: 50% 50%;
  width: 100%;
  max-width: 440px;
}

.case-study-stack {
  position: relative;
  width: 100%;
  height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-spring);
}

.stack-layer {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

/* Background Layer: Wireframe Performance / Telemetry Graph */
.stack-layer-back {
  background: rgba(14, 18, 27, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateZ(-15px) translateY(8px) translateX(8px);
  padding: 1.25rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack-header-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-subtle);
}

.stack-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.stack-dot.red { background: rgba(239, 68, 68, 0.7); }
.stack-dot.yellow { background: rgba(234, 179, 8, 0.7); }
.stack-dot.green { background: rgba(255, 255, 255, 0.300); }

.stack-title-tab {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: var(--font-mono, monospace);
  margin-left: 0.5rem;
}

.stack-chart-preview {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preview-svg-chart {
  width: 100%;
  height: 100%;
}

.stack-chart-grid-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.stack-chart-grid-lines span {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
}

.stack-metrics-preview {
  display: flex;
  gap: 0.5rem;
}

.stack-metric-pill {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
}

.stack-metric-pill .highlight {
  color: var(--accent-light);
  font-weight: 700;
}

/* Foreground Layer: Campaign Creative Matrix & Conversion UI */
.stack-layer-front {
  background: rgba(18, 24, 38, 0.95);
  border: 1px solid var(--border-medium);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.75);
  transform: translateZ(20px);
  padding: 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stack-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

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

.creative-slot-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.creative-status-chip {
  font-size: 0.65rem;
  font-family: var(--font-mono, monospace);
  color: var(--accent-light);
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.108);
  border-radius: var(--radius-xs);
}

/* Creative Matrix Grid Preview */
.stack-creative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0.85rem 0;
}

.creative-thumbnail {
  background: rgba(10, 14, 23, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  aspect-ratio: 9/12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.45rem;
  position: relative;
  overflow: hidden;
}

.creative-thumb-overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.58rem;
}

.thumb-badge {
  font-weight: 700;
  color: var(--text-primary);
}

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

.creative-waveform {
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  border-radius: 2px;
}

/* Pipeline Telemetry Preview */
.stack-pipeline-preview {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1rem 0;
}

.pipeline-bar-row {
  display: grid;
  grid-template-columns: 85px 1fr 65px;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.72rem;
}

.p-stage {
  color: var(--text-secondary);
  font-weight: 500;
}

.p-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.p-fill {
  height: 100%;
  background: var(--border-medium);
  border-radius: 3px;
}

.p-fill.active {
  background: linear-gradient(90deg, #e4e4e7, #ffffff);
}

.p-val {
  color: var(--text-muted);
  text-align: right;
  font-size: 0.68rem;
  font-weight: 600;
}

/* Multi-variant preview */
.stack-multivariant-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.85rem 0;
}

.variant-box {
  background: rgba(10, 14, 23, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
}

.variant-box.winner {
  border-color: rgba(255, 255, 255, 0.360);
  background: rgba(15, 23, 42, 0.85);
}

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

.v-tag { font-weight: 700; color: var(--text-primary); }
.v-pill { color: var(--text-muted); }
.v-pill.win { color: var(--success); font-weight: 700; }

.v-layout-mock {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v-header-wire {
  height: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
}

.v-header-wire.win {
  background: rgba(255, 255, 255, 0.180);
}

.v-body-wire {
  height: 28px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 2px;
}

.v-body-wire.win {
  background: rgba(255, 255, 255, 0.090);
}

/* Funnel Strip at bottom of front card */
.stack-funnel-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 14, 23, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 0.45rem 0.65rem;
  margin-top: 0.5rem;
}

.funnel-step {
  display: flex;
  flex-direction: column;
  font-size: 0.62rem;
}

.funnel-step .f-lbl {
  color: var(--text-muted);
}

.funnel-step .f-val {
  font-weight: 700;
  color: var(--text-secondary);
}

.funnel-step.active .f-val {
  color: var(--accent-light);
}

.f-arrow {
  color: var(--text-muted);
  font-size: 0.65rem;
}

/* Floating Badge Layer */
.stack-layer-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  z-index: 3;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(10, 14, 23, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.360);
  color: var(--accent-light);
  transform: translateZ(35px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.4s var(--ease-spring);
}

/* 3D HOVER SEPARATION ON CASE STUDY CARDS */
.case-study-slot:hover .case-study-stack .stack-layer-front {
  transform: translateZ(40px) translateY(-10px);
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.85), 0 0 24px rgba(255, 255, 255, 0.135);
  border-color: rgba(255, 255, 255, 0.405);
}

.case-study-slot:hover .case-study-stack .stack-layer-back {
  transform: translateZ(-30px) translateX(-14px) translateY(14px);
  border-color: rgba(255, 255, 255, 0.16);
}

.case-study-slot:hover .case-study-stack .stack-layer-badge {
  transform: translateZ(55px) translateY(-14px);
}

/* ==========================================================================
   PHASE 3: PROCESS SECTION (Scroll Timeline with 3D Markers)
   ========================================================================== */
.process-section {
  position: relative;
  padding: 8rem 0 7rem;
  border-bottom: 1px solid var(--border-subtle);
  background-image: 
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 255, 255, 0.027), transparent 70%);
}

.process-timeline-wrapper {
  position: relative;
  margin-top: 4.5rem;
}

/* Desktop Horizontal Track Line */
.process-track-line {
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border-subtle);
  z-index: 1;
}

.process-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #e4e4e7, #ffffff);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.450);
  transition: width 0.4s ease-out;
}

/* 4 Stages Grid */
.process-stages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
  position: relative;
  z-index: 2;
}

.process-stage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.65;
}

.process-stage-card.is-active {
  opacity: 1;
}

.stage-marker-wrap {
  position: relative;
  margin-bottom: 2rem;
}

/* 3D Marker Container */
.process-marker {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: rgba(14, 18, 27, 0.9);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.4s var(--ease-spring);
  transform-style: preserve-3d;
  perspective: 600px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
}

.marker-face {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  will-change: transform;
}

.marker-face svg {
  width: 100%;
  height: 100%;
}

.marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.225) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

/* Active Stage Presentation & 3D Gentle Rotation */
.process-stage-card.is-active .process-marker {
  border-color: rgba(255, 255, 255, 0.450);
  background: linear-gradient(135deg, rgba(26, 36, 54, 0.95), rgba(15, 23, 42, 0.98));
  color: var(--accent-light);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.360);
}

.process-stage-card.is-active .marker-face {
  transform: rotateY(180deg) rotateX(10deg);
  color: #ffffff;
}

.process-stage-card.is-active .marker-pulse {
  opacity: 1;
  animation: markerGlow 2s infinite ease-in-out;
}

@keyframes markerGlow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

.stage-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stage-num {
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.stage-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.stage-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 250px;
}

.stage-tags {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}

.stage-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.process-stage-card.is-active .stage-tag {
  border-color: rgba(255, 255, 255, 0.225);
  color: var(--text-secondary);
}

/* ==========================================================================
   PHASE 3: ABOUT SECTION (Calm Architecture & Core Philosophy)
   ========================================================================== */
.about-section {
  position: relative;
  padding: 8rem 0 7rem;
  background: #06070a;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

/* Subtle Layered Technical Coordinate Grid Backdrop */
.about-grid-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.backdrop-grid-plane {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 35%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, black 20%, transparent 80%);
  opacity: 0.85;
}

.backdrop-coord-marker {
  position: absolute;
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coord-tl { top: 2.5rem; left: 3rem; }
.coord-br { bottom: 2.5rem; right: 3rem; }

.about-container {
  position: relative;
  z-index: 1;
}

/* Featured Philosophy Statement Pull-Quote Card */
.philosophy-statement-card {
  position: relative;
  background: var(--bg-glass-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3.5rem;
  margin-bottom: 4.5rem;
  box-shadow: var(--shadow-dashboard);
  overflow: hidden;
}

.philosophy-quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 7rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.108);
  pointer-events: none;
  user-select: none;
}

.philosophy-quote-text {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 1.5rem 0;
  font-style: normal;
  max-width: 850px;
}

.philosophy-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.author-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
}

.author-rule {
  height: 1px;
  width: 40px;
  background: var(--border-medium);
}

.author-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Six Pillars Grid */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.about-pillar-card {
  background: rgba(14, 18, 27, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.about-pillar-card:hover {
  border-color: rgba(255, 255, 255, 0.270);
  background: rgba(18, 24, 38, 0.85);
  transform: translateY(-3px);
}

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

.pillar-marker {
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-light);
  padding: 2px 7px;
  background: rgba(255, 255, 255, 0.090);
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.180);
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   PHASE 4: SOCIAL PROOF SECTION
   ========================================================================== */
.proof-section {
  padding: 8rem 0 7rem;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(8, 11, 17, 0.95) 50%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.proof-verification-card {
  max-width: 860px;
  margin: 0 auto 3rem;
  background: rgba(14, 18, 27, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.proof-verification-card:hover {
  border-color: rgba(255, 255, 255, 0.315);
  transform: translateY(-2px);
}

.proof-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
}

.proof-shield-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.090);
  border: 1px solid rgba(255, 255, 255, 0.225);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

.proof-shield-icon svg {
  width: 26px;
  height: 26px;
}

.proof-content-wrap {
  flex: 1;
}

.proof-status-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.proof-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.108);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.180);
}

.proof-compliance-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.proof-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.proof-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Future Testimonials Framework (Minimal Glass Effect & Subtle Float) */
.testimonials-framework {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(14, 18, 27, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: subtleTestimonialFloat 6s ease-in-out infinite;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.testimonial-card:nth-child(2) {
  animation-delay: -5s;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.315);
  background: rgba(18, 24, 38, 0.75);
  transform: translateY(-4px);
}

@keyframes subtleTestimonialFloat {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-6px);
  }
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-author-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

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

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

.testimonial-metric-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.090);
  border: 1px solid rgba(255, 255, 255, 0.180);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: normal;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.testimonial-result-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.result-label {
  color: var(--text-muted);
  font-weight: 500;
}

.result-value {
  color: var(--accent-light);
  font-weight: 600;
  font-family: var(--font-mono, monospace);
}

/* ==========================================================================
   PHASE 4: FINAL CALL TO ACTION SECTION (3D Layered Glass Panel)
   ========================================================================== */
.final-cta-section {
  padding: 9rem 0 8rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.final-cta-stage {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  perspective: 1200px;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3D Layered Glass Backdrop - Slow Floating Depth, No Heavy Glow */
.cta-3d-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform-style: preserve-3d;
  z-index: 1;
}

.cta-glass-plane {
  position: absolute;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: rgba(14, 18, 27, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.5s ease;
}

.cta-plane-back {
  inset: -20px -25px;
  transform: translateZ(-35px) rotate(-1.5deg);
  border-color: rgba(255, 255, 255, 0.108);
  background: rgba(10, 14, 22, 0.45);
  animation: ctaSlowFloatBack 8s ease-in-out infinite;
}

.cta-plane-front {
  inset: -10px -12px;
  transform: translateZ(-15px) rotate(1deg);
  border-color: rgba(255, 255, 255, 0.162);
  background: rgba(16, 22, 34, 0.35);
  animation: ctaSlowFloatFront 7s ease-in-out infinite;
}

@keyframes ctaSlowFloatBack {
  0% {
    transform: translateZ(-35px) rotate(-1.5deg) translateY(0);
  }
  100% {
    transform: translateZ(-45px) rotate(-2deg) translateY(8px);
  }
}

@keyframes ctaSlowFloatFront {
  0% {
    transform: translateZ(-15px) rotate(1deg) translateY(0);
  }
  100% {
    transform: translateZ(-10px) rotate(1.5deg) translateY(-6px);
  }
}

/* Main CTA Content Panel */
.final-cta-card {
  position: relative;
  z-index: 2;
  background: rgba(14, 18, 27, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3.5rem;
  text-align: center;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateZ(10px);
}

.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.final-cta-headline {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 1.5rem 0 1.25rem;
}

.final-cta-subtext {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 auto 2.5rem;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   PHASE 4: CONTACT SECTION (Clean Professional Form)
   ========================================================================== */
.contact-section {
  padding: 8rem 0 7rem;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(9, 12, 19, 0.9) 100%);
  border-top: 1px solid var(--border-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-brief {
  position: sticky;
  top: 6rem;
}

.contact-headline {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 1.25rem 0 1rem;
}

.contact-subtext {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.contact-reassurance-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.reassurance-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.072);
  border: 1px solid rgba(255, 255, 255, 0.180);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

.reassurance-icon svg {
  width: 18px;
  height: 18px;
}

.reassurance-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.reassurance-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Contact Form Container */
.contact-glass-card {
  background: rgba(14, 18, 27, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 3rem 2.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.required {
  color: var(--accent-light);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(8, 11, 17, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-light);
  background: rgba(14, 18, 27, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.135);
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: #0c0b13;
  color: #f0f4f8;
}

.select-caret {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* Error States */
.field-error-msg {
  display: none;
  font-size: 0.78rem;
  color: #f87171;
  font-weight: 500;
  margin-top: 0.2rem;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-group.has-error .field-error-msg {
  display: block;
}

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

.form-privacy-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Success State */
.contact-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.success-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.success-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto 2rem;
}

/* ==========================================================================
   PHASE 4: MINIMAL PREMIUM FOOTER
   ========================================================================== */
.site-footer {
  background: #07060b;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem;
  color: var(--text-secondary);
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.footer-positioning {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 320px;
  margin: 0;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.social-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.social-link:hover {
  color: var(--accent-light);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-status {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}


/* Services to Company & Work Cross-Link Strip */
.services-work-cta-strip {
  margin-top: 3.5rem;
  background: rgba(16, 15, 26, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-mini-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.35rem;
}

.work-cta-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   COMPANY & WORK DEDICATED PAGE STYLES
   ========================================================================== */
.company-page-hero {
  padding: 9.5rem 0 4rem;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.027) 0%, transparent 80%);
  border-bottom: 1px solid var(--border-subtle);
}

.company-hero-inner {
  max-width: 900px;
}

.company-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 1.25rem 0 1.25rem;
}

.company-hero-subtext {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 2rem;
}

/* Sticky Secondary Nav Strip */
.company-subnav-sticky {
  position: sticky;
  top: 70px;
  z-index: 40;
  background: rgba(5, 5, 8, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
  transition: all 0.2s ease;
}

.company-subnav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 0.5rem;
  scrollbar-width: none;
}

.company-subnav-list::-webkit-scrollbar {
  display: none;
}

.company-subnav-link {
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.company-subnav-link span.num {
  color: var(--accent-light);
  font-size: 0.72rem;
}

.company-subnav-link:hover,
.company-subnav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.090);
  border-color: rgba(255, 255, 255, 0.225);
}

/* Consultation Bridge Card */
.consultation-bridge-section {
  padding: 7rem 0 6rem;
  background: linear-gradient(180deg, var(--bg-main) 0%, rgba(16, 15, 26, 0.6) 100%);
  border-top: 1px solid var(--border-subtle);
}

.consultation-bridge-card {
  background: rgba(10, 9, 16, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
}

.bridge-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 1.25rem 0 1rem;
}

.bridge-subtext {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.25rem;
}

.bridge-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   BRIK-STYLE KINETIC MORPHING VISUALIZER (HOMEPAGE HERO)
   ========================================================================== */
.hero-morph-stage {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  background: rgba(10, 9, 16, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85), 0 0 35px -10px rgba(255, 255, 255, 0.135);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
}

.morph-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
}

#hero-morph-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Morph Overlay Telemetry Panels */
.morph-top-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.morph-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  background: rgba(10, 9, 16, 0.85);
  backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.225);
}

.morph-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent-light);
  animation: pulseDot 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

.morph-engine-label {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(10, 9, 16, 0.7);
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-subtle);
}

.morph-bottom-card {
  position: relative;
  z-index: 2;
  background: rgba(10, 9, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  pointer-events: none;
}

.morph-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.morph-metric-col {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.morph-metric-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.morph-metric-status {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.morph-metric-status.highlight {
  color: var(--accent-light);
}

/* ==========================================================================
   RESULTS & PROOF PAGE STYLES
   ========================================================================== */
.results-page-hero {
  padding: 9.5rem 0 4rem;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.036) 0%, transparent 80%);
  border-bottom: 1px solid var(--border-subtle);
}

.results-hero-inner {
  max-width: 900px;
}

.results-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 1.25rem 0 1.25rem;
}

.results-hero-subtext {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 2rem;
}

/* Results Showcase Grid */
.results-showcase-section {
  padding: 6rem 0 7rem;
}

.results-showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.result-proof-card {
  background: rgba(10, 9, 16, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 3rem 2.75rem;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
}

.result-proof-card:hover {
  border-color: rgba(255, 255, 255, 0.360);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.9), 0 0 30px -10px rgba(255, 255, 255, 0.135);
}

.proof-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.proof-title-wrap {
  flex: 1;
}

.proof-meta-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  color: var(--accent-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.proof-card-title {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}

.proof-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}

.proof-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(5, 5, 8, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.proof-metric-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.proof-metric-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.proof-metric-value.highlight {
  color: var(--accent-light);
}

.proof-metric-note {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Real Client Proof Media Showcase */
.proof-media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.proof-image-frame {
  position: relative;
  background: rgba(5, 5, 8, 0.9);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
}

.proof-image-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.450);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.9), 0 0 25px -5px rgba(255, 255, 255, 0.180);
}

.proof-img-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: rgba(16, 15, 26, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.proof-img-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-light);
  font-weight: 600;
}

.proof-image-wrap {
  position: relative;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  cursor: pointer;
}

.proof-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
}

.proof-image-frame:hover .proof-image-wrap img {
  transform: scale(1.02);
}

.proof-img-caption {
  padding: 0.85rem 1rem;
  background: rgba(10, 9, 16, 0.7);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.proof-img-caption strong {
  color: #ffffff;
}

.proof-verified-pill {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.080);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.200);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.proof-verified-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
}

/* Accessible Image Lightbox Modal */
.image-lightbox-modal {
  border: none;
  background: transparent;
  padding: 1.5rem;
  max-width: 900px;
  width: 95%;
  margin: auto;
}

.image-lightbox-modal::backdrop {
  background: rgba(4, 5, 8, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lightbox-card {
  background: rgba(10, 9, 16, 0.95);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.95);
  position: relative;
}

.lightbox-card img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-sm);
}

.lightbox-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(16, 15, 26, 0.9);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.lightbox-close-btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-light);
}

/* Account & CPR Audit Funnel Section */
.audit-funnel-section {
  padding: 7rem 0 8rem;
  background: linear-gradient(180deg, var(--bg-main) 0%, rgba(16, 15, 26, 0.85) 100%);
  border-top: 1px solid var(--border-subtle);
}

.audit-glass-card {
  background: rgba(10, 9, 16, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9);
}

.audit-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.audit-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 1.25rem 0 1rem;
}

.audit-subtext {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.form-status-banner {
  display: none;
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: left;
}

.form-status-banner.status-success {
  display: block;
  background: rgba(255, 255, 255, 0.108);
  border: 1px solid rgba(255, 255, 255, 0.405);
  color: #ffffff;
  box-shadow: 0 0 20px -5px rgba(255, 255, 255, 0.225);
  animation: fadeIn 0.4s ease-out;
}

.form-status-banner strong {
  color: var(--accent-light);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

/* Accessible Legal Dialogs */
.legal-modal {
  border: none;
  background: transparent;
  padding: 1.5rem;
  max-width: 580px;
  width: 90%;
  margin: auto;
}

.legal-modal::backdrop {
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-dashboard);
}

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

.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.modal-close-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.modal-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN & ACCESSIBILITY RULES
   ========================================================================== */

/* Laptop / Intermediate (Below 1100px) */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-bar {
    justify-content: center;
  }

  .dashboard-viewport {
    margin-top: 1rem;
  }

  .services-editorial-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .system-visual-pane {
    position: static;
    margin-top: 1.5rem;
  }

  .system-perspective-stage {
    max-width: 530px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .case-study-visual-col {
    margin-top: 1rem;
  }

  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Tablet (Below 768px) */
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-primary {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-section {
    padding-top: 7rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .dashboard-card {
    width: 100%;
    max-width: 440px;
  }

  .satellite-chip {
    display: none; /* Flatten on mobile for maximum readability and speed */
  }

  /* Disable 3D tilt on mobile for ultra performance */
  .dashboard-perspective-wrapper {
    animation: none !important;
    transform: none !important;
  }

  .capability-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .capability-pillars {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
  }

  .pillar-item {
    gap: 1rem;
  }

  .partner-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }

  /* Services Mobile */
  .services-section {
    padding: 5rem 0 4rem;
  }

  .service-row {
    padding: 1.75rem 0.75rem;
  }

  .service-row:hover {
    transform: translateY(-3px) !important;
  }

  .service-row-inner {
    gap: 1.25rem;
  }

  .service-num {
    font-size: 2.2rem;
  }

  .service-num-col {
    width: 44px;
  }

  .service-name {
    font-size: 1.25rem;
  }

  /* Disable 3D visual transforms on mobile */
  .system-perspective-stage {
    animation: none !important;
    transform: none !important;
  }

  .flow-depth-1, .flow-depth-2, .flow-depth-3, .flow-depth-4, .flow-depth-5 {
    transform: none !important;
  }

  .system-console-card {
    padding: 1.25rem 1rem;
  }

  /* Selected Work Mobile */
  .work-section {
    padding: 5rem 0 4rem;
  }

  .case-study-slot {
    padding: 2rem 1.35rem;
  }

  .case-study-stack {
    height: auto;
  }

  .stack-layer {
    position: static;
    transform: none !important;
  }

  .stack-layer-back {
    display: none; /* Hide background wireframe layer on mobile for speed and clarity */
  }

  .stack-layer-badge {
    position: static;
    transform: none !important;
    margin-bottom: 0.75rem;
    align-self: flex-start;
  }

  /* Process Vertical Timeline Mobile */
  .process-section {
    padding: 5rem 0 4rem;
  }

  .process-timeline-wrapper {
    margin-top: 3rem;
  }

  .process-track-line {
    top: 25px;
    bottom: 25px;
    left: 31px;
    width: 2px;
    height: auto;
    right: auto;
  }

  .process-progress-fill {
    width: 100%;
    height: 25%;
    transition: height 0.4s ease-out;
  }

  .process-stages-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
  }

  .process-stage-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
  }

  .stage-marker-wrap {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process-marker {
    width: 62px;
    height: 62px;
  }

  .stage-content {
    align-items: flex-start;
  }

  .stage-desc {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .stage-tags {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  /* Approach Mobile */
  .approach-section {
    padding: 5rem 0 4rem;
  }

  .principle-card {
    padding: 1.5rem 1.25rem;
  }

  /* About Mobile */
  .about-section {
    padding: 5rem 0 4rem;
  }

  .philosophy-statement-card {
    padding: 2.25rem 1.5rem;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Social Proof Mobile */
  .proof-section {
    padding: 5rem 0 4rem;
  }

  .proof-verification-card {
    padding: 1.75rem 1.25rem;
  }

  .proof-card-inner {
    flex-direction: column;
    gap: 1.25rem;
  }

  .testimonials-framework {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    animation: none !important;
    transform: none !important;
    padding: 1.75rem 1.5rem;
  }

  /* Final CTA Mobile */
  .final-cta-section {
    padding: 5rem 0 4rem;
  }

  .final-cta-card {
    padding: 3.5rem 1.5rem;
  }

  .cta-3d-backdrop {
    display: none; /* Flatten 3D backdrop on mobile */
  }

  /* Contact Mobile */
  .contact-section {
    padding: 5rem 0 4rem;
  }

  .contact-glass-card {
    padding: 2.25rem 1.35rem;
  }

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

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

  .footer-brand-col {
    grid-column: span 2;
  }

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

/* Small Phones (Below 480px) */
@media (max-width: 480px) {
  .hero-trust-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-divider {
    display: none;
  }

  .dash-metrics-grid {
    grid-template-columns: 1fr;
  }

  .service-row-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .service-num-col {
    width: 100%;
  }

  .meta-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .flow-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .flow-card-badge {
    width: auto;
  }

  .flow-metric {
    text-align: left;
  }

  .final-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-actions .btn {
    width: 100%;
  }

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

  .footer-brand-col {
    grid-column: span 1;
  }
}

/* ==========================================================================
   ADVANCED KINETIC SPOTLIGHT & CARD SHEEN
   ========================================================================== */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.108),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.spotlight-card:hover::before {
  opacity: 1;
}

/* Magnetic Button Class */
.btn-magnetic {
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s ease;
}

/* Funnel Live Progress Bar */
.funnel-progress-wrap {
  margin-bottom: 2rem;
  background: rgba(16, 15, 26, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
  position: relative;
}

.funnel-progress-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.funnel-progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #e4e4e7, #ffffff, #ffffff);
  border-radius: var(--radius-full);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.450);
}

.funnel-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  padding: 0 0.5rem;
}

.funnel-progress-label span.highlight {
  color: var(--accent-light);
  font-weight: 700;
}

/* Direct Leadership Contact Pill */
.direct-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 15, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.270);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.direct-contact-pill:hover {
  border-color: rgba(255, 255, 255, 0.450);
  background: rgba(26, 24, 40, 0.95);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.180);
}

.direct-contact-pill .partner-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4e4e7, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.450);
}

.direct-contact-pill .contact-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.02em;
}

.direct-contact-pill .contact-link:hover {
  color: var(--accent-light);
}

.whatsapp-fast-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25d366;
  color: #000000;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fast-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   INTERACTIVE STRATEGY SESSION & CALENDAR BOOKING MODAL
   ========================================================================== */
.booking-modal {
  border: none;
  background: transparent;
  padding: 1.5rem;
  max-width: 820px;
  width: 95%;
  margin: auto;
}

.booking-modal::backdrop {
  background: rgba(4, 5, 8, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.booking-modal-card {
  background: rgba(10, 9, 16, 0.95);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.95), 0 0 40px -10px rgba(255, 255, 255, 0.180);
  position: relative;
}

.booking-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-title-wrap h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0.5rem 0 0.35rem;
}

.booking-title-wrap p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.booking-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.booking-close-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.180);
  border-color: var(--accent-light);
}

/* Hadi Direct Availability Bar */
.hadi-direct-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.072);
  border: 1px solid rgba(255, 255, 255, 0.225);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hadi-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hadi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4e4e7, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.350);
}

.hadi-meta {
  display: flex;
  flex-direction: column;
}

.hadi-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
}

.hadi-role {
  font-size: 0.76rem;
  color: var(--accent-light);
  font-family: var(--font-mono, monospace);
}

.hadi-contact-quick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quick-call-btn {
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.quick-call-btn:hover {
  background: rgba(255, 255, 255, 0.180);
  border-color: var(--accent-light);
}

/* Date Selector Grid */
.booking-section-label {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: block;
}

.date-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.date-chip {
  background: rgba(16, 15, 26, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.date-chip:hover {
  border-color: rgba(255, 255, 255, 0.450);
  background: rgba(255, 255, 255, 0.090);
  transform: translateY(-2px);
}

.date-chip.active {
  background: linear-gradient(180deg, rgba(228, 228, 231, 0.212) 0%, rgba(255, 255, 255, 0.135) 100%);
  border-color: var(--accent-light);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.270);
  transform: translateY(-2px);
}

.date-chip .day-name {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.date-chip.active .day-name {
  color: var(--accent-light);
}

.date-chip .day-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

/* Time Slots Grid */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.time-slot-btn {
  background: rgba(16, 15, 26, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot-btn:hover {
  border-color: rgba(255, 255, 255, 0.360);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.072);
}

.time-slot-btn.active {
  background: var(--accent-dark);
  border-color: var(--accent-light);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(228, 228, 231, 0.340);
}

.meeting-format-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 15, 26, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.meeting-format-chip:hover {
  border-color: rgba(255, 255, 255, 0.360);
  color: #ffffff;
}

.meeting-format-chip:has(input:checked),
.meeting-format-chip.active {
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.126);
  color: #ffffff;
}

/* Security Peace of Mind Strip inside Modal */
.booking-security-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(5, 5, 8, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

.security-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.security-pill svg {
  color: var(--accent-light);
  flex-shrink: 0;
}

/* Booking Confirmation Screen */
.booking-confirmation-docket {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
  animation: fadeIn 0.4s ease-out;
}

.confirm-check-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.096);
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.240);
  animation: pulseDot 2.5s infinite ease-in-out;
}

.confirm-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.confirm-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.confirm-docket-card {
  background: rgba(16, 15, 26, 0.85);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  text-align: left;
}

.confirm-docket-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
}

.confirm-docket-row:last-child {
  border-bottom: none;
}

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

.docket-val {
  color: #ffffff;
  font-weight: 700;
  font-family: var(--font-mono, monospace);
}

/* ==========================================================================
   21. THE ORION CREED MONUMENT & KINETIC TICKER
   "No ifs, buts or maybes. We do absolutes."
   ========================================================================== */
.creed-monument-section {
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.creed-monument-card {
  background: radial-gradient(130% 100% at 50% 0%, rgba(32, 22, 58, 0.55) 0%, rgba(10, 9, 16, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.288);
  border-radius: var(--radius-2xl, 24px);
  padding: 4.5rem 3rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.9), 0 0 50px -10px rgba(228, 228, 231, 0.187);
}

.creed-glow-aura {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.342) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.creed-monument-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.creed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(228, 228, 231, 0.187);
  border: 1px solid rgba(255, 255, 255, 0.450);
  color: #e9d5ff;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(228, 228, 231, 0.340);
}

.creed-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px #ffffff;
  animation: pulseDot 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

.creed-meta-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.creed-statement-quote {
  margin: 0 0 2rem;
  padding: 0;
  border: none;
}

.creed-statement-title {
  font-size: clamp(2.4rem, 5.8vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #ffffff;
  margin: 0;
}

.creed-highlight-text {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sloganShimmer 6s infinite ease-in-out;
  text-shadow: 0 0 45px rgba(255, 255, 255, 0.315);
}

.creed-statement-subtext {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 400;
}

.creed-ticker-strip {
  margin-top: 3.25rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.198);
  border-bottom: 1px solid rgba(255, 255, 255, 0.198);
  background: rgba(228, 228, 231, 0.034);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.creed-ticker-track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
}

.creed-ticker-track:hover {
  animation-play-state: paused;
}

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

.ticker-item {
  font-family: var(--font-mono, monospace);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #cbd5e1;
  text-transform: uppercase;
}

.ticker-sep {
  color: var(--accent-light);
  opacity: 0.6;
  font-size: 0.95rem;
}

.calc-creed-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(228, 228, 231, 0.119);
  border: 1px solid rgba(255, 255, 255, 0.315);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 1rem;
}

.calc-creed-lbl {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calc-creed-quote {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 768px) {
  .creed-monument-card {
    padding: 3rem 1.5rem 2rem;
  }
  .creed-statement-subtext {
    font-size: 0.98rem;
  }
}

.hero-slogan-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(14, 12, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.315);
  box-shadow: 0 0 24px -4px rgba(228, 228, 231, 0.212), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.45rem 1.1rem 0.45rem 0.65rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  animation: floatOrb 8s ease-in-out infinite alternate;
}

.hero-slogan-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-25deg);
  animation: bannerShimmer 4s infinite linear;
}

@keyframes bannerShimmer {
  0% { left: -150%; }
  40%, 100% { left: 150%; }
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

.slogan-badge {
  background: linear-gradient(135deg, #e4e4e7, #e4e4e7);
  color: #ffffff;
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(228, 228, 231, 0.400);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.slogan-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  animation: pulseDot 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

.slogan-text {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sloganShimmer 6s infinite ease-in-out;
  white-space: nowrap;
}

@keyframes sloganShimmer {
  to { background-position: 200% center; }
}

/* ==========================================================================
   22. SERVICES CALCULATORS: CPR, ROAS & MULTI-CURRENCY CONVERTER
   ========================================================================== */
.services-calc-container {
  margin-top: 5rem;
  padding: 3rem 2rem;
  background: linear-gradient(180deg, rgba(16, 15, 26, 0.75) 0%, rgba(10, 9, 16, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.198);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(255, 255, 255, 0.135);
  position: relative;
  overflow: hidden;
}

.services-calc-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.450), transparent);
}

.calc-header-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.calc-main-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 0.75rem 0 0.85rem;
  line-height: 1.25;
}

.calc-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Calculator Tab Bar */
.calc-tabs {
  display: inline-flex;
  background: rgba(5, 5, 8, 0.8);
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  gap: 4px;
}

.calc-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: transparent;
  border: none;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-tab:hover {
  color: #ffffff;
}

.calc-tab.active {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(228, 228, 231, 0.383);
}

/* Tab Panes */
.calc-tab-pane {
  display: none;
  animation: fadeIn 0.35s ease-out;
}

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

/* Grid Layout for ROAS Calculator */
.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
}

.calc-controls-col {
  background: rgba(12, 11, 20, 0.8);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calc-control-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

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

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

.control-val-display {
  font-family: var(--font-mono, monospace);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.108);
  border: 1px solid rgba(255, 255, 255, 0.270);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
}

/* Range Slider Styling */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  outline: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.calc-slider:hover {
  background: rgba(255, 255, 255, 0.180);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #e4e4e7;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.450);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.350);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Currency Pill Selector */
.calc-currency-select-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-subtle);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.currency-pills-row {
  display: flex;
  gap: 0.4rem;
}

.currency-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.currency-pill:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.360);
}

.currency-pill.active {
  background: rgba(255, 255, 255, 0.180);
  border-color: var(--accent-light);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(228, 228, 231, 0.255);
}

/* Outputs Column */
.calc-outputs-col {
  background: rgba(14, 12, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.315);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 35px -10px rgba(228, 228, 231, 0.212);
}

.output-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-light);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.calc-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff;
  animation: pulseDot 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

/* Primary ROAS Stat */
.primary-roas-display {
  background: rgba(6, 6, 10, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.roas-number-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono, monospace);
  margin-bottom: 0.35rem;
  display: block;
}

.roas-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.roas-number {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.450);
  line-height: 1;
}

.roas-suffix {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-light);
  font-family: var(--font-mono, monospace);
}

.roas-meter-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.roas-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #52525b 0%, #a1a1aa 50%, #ffffff 100%);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.35);
}

/* 4-Quadrant Metrics Grid */
.metrics-output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.metric-output-card {
  background: rgba(8, 7, 14, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.metric-output-card:hover {
  border-color: rgba(255, 255, 255, 0.315);
  transform: translateY(-2px);
}

.m-card-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: var(--font-mono, monospace);
}

.m-card-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-mono, monospace);
  letter-spacing: -0.01em;
}

.m-card-val.highlight {
  color: #38bdf8;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.m-card-val.text-accent {
  color: #34d399;
  text-shadow: 0 0 12px rgba(52, 211, 153, 0.3);
}

.m-card-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   23. GLOBAL CURRENCY CONVERTER CARD
   ========================================================================== */
.currency-converter-card {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(12, 11, 20, 0.85);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
}

.conv-header {
  text-align: center;
  margin-bottom: 2rem;
}

.conv-header h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.conv-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.conv-grid {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 650px) {
  .conv-grid {
    flex-direction: column;
  }
}

.conv-input-box {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.conv-lbl {
  font-size: 0.78rem;
  font-family: var(--font-mono, monospace);
  color: var(--text-muted);
  text-transform: uppercase;
}

.conv-field-row {
  display: flex;
  background: rgba(5, 5, 8, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.conv-field-row:focus-within {
  border-color: var(--accent-light);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.225);
}

.conv-num-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono, monospace);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  outline: none;
  min-width: 0;
}

.conv-result-display {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono, monospace);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conv-select {
  background: rgba(16, 15, 26, 0.85);
  border: none;
  border-left: 1px solid var(--border-subtle);
  color: #ffffff;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0 0.75rem;
  outline: none;
  cursor: pointer;
}

.conv-swap-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.conv-swap-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.135);
  border: 1px solid rgba(255, 255, 255, 0.315);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.conv-swap-btn:hover {
  background: var(--accent-dark);
  color: #ffffff;
  transform: rotate(180deg) scale(1.08);
  box-shadow: 0 0 15px rgba(228, 228, 231, 0.340);
}

.conv-quick-rates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.rate-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   24. ADVANCED MOTION GRAPHICS & KINETIC AMBIENCE SUITE
   ========================================================================== */

/* Ambient Floating Luminous Orbs */
.ambient-glow-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.ambient-orb-1 {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(200, 200, 220, 0.04) 50%, transparent 75%);
  top: 5%;
  left: -5%;
  animation: orbDriftA 24s ease-in-out infinite alternate;
  opacity: 0.8;
}

.ambient-orb-2 {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(240, 240, 255, 0.09) 0%, rgba(180, 180, 200, 0.03) 50%, transparent 75%);
  bottom: 10%;
  right: -5%;
  animation: orbDriftB 28s ease-in-out infinite alternate;
  opacity: 0.75;
}

.ambient-orb-3 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  top: 45%;
  left: 30%;
  animation: orbDriftC 22s ease-in-out infinite alternate;
  opacity: 0.65;
}

@keyframes orbDriftA {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(80px, 60px, 0) scale(1.12); }
  100% { transform: translate3d(30px, 120px, 0) scale(0.95); }
}

@keyframes orbDriftB {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-90px, -70px, 0) scale(1.08); }
  100% { transform: translate3d(-40px, -130px, 0) scale(0.92); }
}

@keyframes orbDriftC {
  0% { transform: translate3d(0, 0, 0) scale(0.95); }
  50% { transform: translate3d(50px, -50px, 0) scale(1.15); }
  100% { transform: translate3d(70px, -60px, 0) scale(1.05); }
}

/* Liquid Neon Wave on ROAS Meter */
.roas-meter-fill {
  position: relative;
  overflow: hidden;
}

.roas-meter-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  animation: meterLiquidWave 2.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes meterLiquidWave {
  0% { left: -100%; }
  60%, 100% { left: 100%; }
}

/* Metric Number Update Pop Animation */
.metric-pop {
  animation: metricValuePop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes metricValuePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); text-shadow: 0 0 18px rgba(255, 255, 255, 0.450); color: #ffffff; }
  100% { transform: scale(1); }
}

/* Glowing Border Accent on Calculator Card */
.services-calc-container {
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.services-calc-container:hover {
  border-color: rgba(255, 255, 255, 0.405);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85), 0 0 50px -5px rgba(255, 255, 255, 0.225);
}

/* Button Kinetic Pulse & Arrow Nudge */
.btn-primary:hover .arrow-icon,
.btn-secondary:hover .arrow-icon {
  transform: translateX(4px) scale(1.08);
}

.arrow-icon {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Enhanced Slogan Hover */
.hero-slogan-strip {
  cursor: default;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slogan-strip:hover {
  border-color: rgba(255, 255, 255, 0.450);
  box-shadow: 0 0 35px rgba(228, 228, 231, 0.383), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px) scale(1.015);
}

/* Proof Card Holographic Shine on Results */
.result-proof-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.result-proof-card:hover {
  border-color: rgba(255, 255, 255, 0.450);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), 0 0 32px rgba(228, 228, 231, 0.238);
}

.result-proof-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.result-proof-card:hover::after {
  transform: translateX(100%);
}

/* Respect Prefers-Reduced-Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .dashboard-perspective-wrapper,
  .system-perspective-stage,
  .case-study-stack,
  .stack-layer,
  .cta-plane-back,
  .cta-plane-front,
  .testimonial-card {
    animation: none !important;
    transform: none !important;
  }

  .badge-dot::after,
  .flow-dot-pulse,
  .status-pulse-dot,
  .marker-pulse {
    animation: none !important;
  }

  .service-row:hover,
  .case-study-slot:hover .case-study-stack .stack-layer-front,
  .case-study-slot:hover .case-study-stack .stack-layer-back,
  .process-stage-card.is-active .marker-face {
    transform: none !important;
  }
}

/* ==========================================================================
   EXECUTIVE PERFORMANCE TELEMETRY STATION (HOMEPAGE HERO)
   Zero canvas overhead, ultra-fast render, White / Black / Green aesthetic
   ========================================================================== */
.hero-telemetry-stage {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.9), 0 0 30px -10px rgba(255, 255, 255, 0.108);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
}

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

.telemetry-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.072);
  border: 1px solid rgba(255, 255, 255, 0.225);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.telemetry-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
}

.telemetry-version {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.telemetry-hero-stat {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.telemetry-hero-stat .stat-label {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.telemetry-hero-stat .stat-value {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.telemetry-hero-stat .stat-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.108);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

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

@media (max-width: 480px) {
  .telemetry-grid {
    grid-template-columns: 1fr;
  }
}

.telemetry-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.telemetry-card .card-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.telemetry-card .card-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.telemetry-card .card-val.accent {
  color: var(--accent-primary);
}

.telemetry-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 0.5rem;
}


/* ==========================================================================
   BUTTERY SMOOTH MOTION & SCROLL REVEAL SUITE
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* Hero Telemetry Floating Animation & Radar Status Pulse */
@keyframes telemetryFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes radarPing {
  0% { transform: scale(0.8); opacity: 0.8; }
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

.hero-telemetry-stage {
  animation: telemetryFloat 7s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 255, 255, 0.072);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-telemetry-stage:hover {
  border-color: rgba(255, 255, 255, 0.405);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(255, 255, 255, 0.162);
}

.telemetry-status-dot {
  position: relative;
}

.telemetry-status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent-primary);
  opacity: 0.6;
  animation: radarPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Fluid Hover Elevate for Cards */
.service-card,
.capability-card,
.deliverable-card,
.calc-preset-card,
.proof-verification-card,
.result-proof-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              background 0.35s ease;
}

.service-card:hover,
.capability-card:hover,
.deliverable-card:hover,
.calc-preset-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.405);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 30px rgba(255, 255, 255, 0.108);
}

.telemetry-card {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.telemetry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.450);
  background: rgba(24, 24, 28, 0.95);
}

/* Button Kinetic Sheen */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s ease,
              background 0.25s ease;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(25deg);
  transition: left 0.75s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 140%;
}

.btn:active {
  transform: scale(0.97);
}


/* ==========================================================================
   ULTRA-SMOOTH MOTION SYSTEM (SPRING EASING CURVES)
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn, .nav-link, .date-chip, .time-slot-btn, .calc-tab, .currency-pill, .form-input, .form-select, .form-textarea {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-card, .capability-card, .deliverable-card, .calc-preset-card, .proof-verification-card, .result-proof-card, .faq-item, .process-stage-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background-color 0.4s ease !important;
}

.service-card:hover, .capability-card:hover, .deliverable-card:hover, .calc-preset-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), 0 0 25px rgba(255, 255, 255, 0.08) !important;
}

.telemetry-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 18px rgba(255, 255, 255, 0.06) !important;
}

.btn-primary:hover {
  background: #f4f4f5 !important;
  color: #000000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25), 0 0 15px rgba(255, 255, 255, 0.15) !important;
}

.hero-telemetry-stage:hover {
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.1) !important;
}


/* ==========================================================================
   DEDICATED ULTRA-SMOOTH MOBILE SUITE (< 768px)
   Eliminates all horizontal overflow, removes scroll delays, optimizes GPU
   ========================================================================== */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  /* 1. Prevent blank delays & micro-shift on scroll reveal */
  .reveal-on-scroll {
    transform: translateY(12px) !important;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  .delay-1, .delay-2, .delay-3, .delay-4, .delay-5 {
    transition-delay: 0s !important;
  }

  /* 2. Streamline ambient orbs for 60fps mobile GPU rendering */
  .ambient-orb {
    filter: blur(40px) !important;
    opacity: 0.5 !important;
  }
  .ambient-orb-1 {
    width: 260px !important;
    height: 260px !important;
    top: 2% !important;
    left: -10% !important;
  }
  .ambient-orb-2 {
    width: 280px !important;
    height: 280px !important;
    bottom: 5% !important;
    right: -10% !important;
  }
  .ambient-orb-3 {
    display: none !important;
  }

  /* 3. Hero Slogan Strip Wrap on Mobile */
  .hero-slogan-strip {
    display: flex !important;
    flex-direction: column !important;
    max-width: 100% !important;
    border-radius: var(--radius-md) !important;
    padding: 0.6rem 0.85rem !important;
    gap: 0.4rem !important;
    align-items: center !important;
    text-align: center !important;
  }
  .slogan-text {
    white-space: normal !important;
    text-align: center !important;
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }

  /* 4. Hero CTA Stack & Full-Width Buttons */
  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
    align-items: stretch !important;
  }
  .hero-cta-group .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* 5. Hero Trust Bar */
  .hero-trust-bar {
    flex-direction: column !important;
    gap: 1.15rem !important;
    text-align: center !important;
    align-items: center !important;
  }
  .trust-divider {
    display: none !important;
  }

  /* 6. Executive Telemetry Station on Mobile */
  .hero-telemetry-stage {
    padding: 1.25rem 1rem !important;
    max-width: 100% !important;
  }
  .telemetry-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  .telemetry-hero-stat {
    padding: 1rem !important;
  }
  .telemetry-hero-stat .stat-value {
    font-size: 1.65rem !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }
  .telemetry-grid {
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
  }
  .telemetry-footer-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.4rem !important;
  }

  /* 7. Calculator Container & Tabs on Mobile */
  .services-calc-container {
    padding: 1.5rem 1rem !important;
    margin-top: 3rem !important;
  }
  .calc-tabs {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    border-radius: var(--radius-md) !important;
    padding: 4px !important;
    gap: 4px !important;
  }
  .calc-tab {
    justify-content: center !important;
    width: 100% !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.8rem !important;
    text-align: center !important;
  }
  .calc-controls-col {
    padding: 1.25rem 1rem !important;
  }
  .currency-pills-row {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }
  .currency-pill {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.75rem !important;
  }
  .primary-roas-display {
    padding: 1.25rem 1rem !important;
    text-align: center !important;
  }
  .roas-number-wrap {
    justify-content: center !important;
  }
  .sub-metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  /* 8. Results Page Proof Cards on Mobile */
  .results-page-hero {
    padding-top: 6.5rem !important;
    padding-bottom: 3rem !important;
  }
  .results-hero-title {
    font-size: clamp(1.85rem, 6vw, 2.5rem) !important;
    line-height: 1.2 !important;
  }
  .result-proof-card {
    padding: 1.35rem 1rem !important;
    border-radius: var(--radius-lg) !important;
  }
  .proof-card-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.85rem !important;
  }
  .proof-metrics-strip {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    padding: 1rem !important;
    margin: 1.25rem 0 !important;
  }
  .proof-metric-value {
    font-size: 1.25rem !important;
  }
  .proof-media-gallery {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .proof-image-frame {
    width: 100% !important;
  }
  .proof-image-wrap {
    width: 100% !important;
  }
  .proof-image-wrap img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* 9. Disable Hover Elevation on Touch Devices (Eliminates Sticky Hover Bug) */
  @media (hover: none) {
    .service-card:hover,
    .capability-card:hover,
    .deliverable-card:hover,
    .calc-preset-card:hover,
    .result-proof-card:hover {
      transform: none !important;
    }
  }
}
