/* ==========================================================================
   NUVEXA - Smart Solutions, Stronger Futures
   Official Design System & Stylesheet
   ========================================================================== */

:root {
  /* Ultra-Futuristic Deep Void Obsidian & Hyper-Luminescent Aurora Palette */
  --bg-dark: #030712;
  --bg-surface: #070D1D;
  --bg-surface-elevated: #0C152F;
  --bg-card: rgba(11, 19, 43, 0.65);
  --bg-card-hover: rgba(16, 28, 64, 0.82);
  --bg-glass: rgba(12, 21, 46, 0.58);
  --bg-glass-strong: rgba(7, 13, 30, 0.94);
  
  --primary-indigo: #6366F1;
  --primary-blue: #2563EB;
  --primary-cobalt: #3B82F6;
  --primary-cyan: #06B6D4;
  --primary-cyan-bright: #22D3EE;
  --primary-teal: #14B8A6;
  --accent-violet: #8B5CF6;
  --accent-purple: #A855F7;
  --accent-glow: #38BDF8;

  /* High-Tech Aliases */
  --neon-cyan: #06B6D4;
  --neon-teal: #22D3EE;

  --gradient-brand: linear-gradient(135deg, #6366F1 0%, #3B82F6 50%, #06B6D4 100%);
  --gradient-violet: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #06B6D4 100%);
  --gradient-cobalt: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  --gradient-aurora: linear-gradient(135deg, #38BDF8 0%, #818CF8 50%, #C084FC 100%);
  --gradient-text: linear-gradient(135deg, #FFFFFF 20%, #C7D2FE 60%, #38BDF8 100%);
  --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 75%);
  --gradient-card-border: linear-gradient(135deg, rgba(99, 102, 241, 0.45) 0%, rgba(6, 182, 212, 0.35) 50%, rgba(255, 255, 255, 0.08) 100%);
  
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-highlight: #38BDF8;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(99, 102, 241, 0.45);
  --border-blue: rgba(99, 102, 241, 0.35);
  --border-cyan: rgba(6, 182, 212, 0.35);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(99, 102, 241, 0.28);
  --shadow-teal-glow: 0 0 35px rgba(6, 182, 212, 0.25);
  --shadow-cyber: 0 10px 40px -10px rgba(99, 102, 241, 0.35);
  --shadow-specular: inset 0 1px 1px 0 rgba(255, 255, 255, 0.12), 0 20px 50px -15px rgba(0, 0, 0, 0.7);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Universal Precision Icon & SVG Sizing System */
.pillar-icon svg,
.pillar-item svg,
.hub-node-icon svg,
.flow-step-icon svg,
.contact-detail-icon svg,
.contact-icon-wrapper svg,
.bento-icon-wrapper svg,
.bento-chip-item svg,
.approach-icon-wrap svg,
.service-icon-box svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  flex-shrink: 0 !important;
}

.hub-node-icon svg {
  width: 26px;
  height: 26px;
}

.flow-step-icon svg {
  width: 24px;
  height: 24px;
}

.contact-icon-wrapper svg {
  width: 26px;
  height: 26px;
}

.bento-chip-item svg {
  width: 14px;
  height: 14px;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(at 15% 12%, rgba(99, 102, 241, 0.16) 0px, transparent 48%),
    radial-gradient(at 85% 18%, rgba(6, 182, 212, 0.13) 0px, transparent 45%),
    radial-gradient(at 50% 50%, rgba(139, 92, 246, 0.09) 0px, transparent 50%),
    radial-gradient(at 20% 85%, rgba(14, 165, 233, 0.08) 0px, transparent 45%),
    linear-gradient(180deg, #030712 0%, #070D1D 50%, #030712 100%);
  background-attachment: fixed;
}

/* Background Canvas */
#networkCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

.content-wrapper {
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4, .brand-font {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

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

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-spacing {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

/* Section Headers */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-cyan);
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.section-tag svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 50px auto;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 100;
  transition: all var(--transition-normal);
  background: rgba(3, 7, 18, 0.76);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
  background: rgba(3, 7, 18, 0.94);
  border-bottom: 1px solid rgba(99, 102, 241, 0.3);
  height: 72px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(37, 99, 235, 0.35));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.nav-brand:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 0 22px rgba(37, 99, 235, 0.55));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link.active {
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

.nav-badge-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(6, 182, 212, 0.45);
  color: #38BDF8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  /* Collapsed state: zero width, no padding, invisible */
  max-width: 0;
  padding: 2px 0;
  margin-left: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              margin-left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease 0.1s;
  pointer-events: none;
}

.nav-badge-pill.pill-expanded {
  max-width: 80px;
  padding: 2px 7px;
  margin-left: 6px;
  opacity: 1;
  pointer-events: auto;
}

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

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  outline: none;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.45);
  color: #FFFFFF;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-light);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

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

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.btn-glow:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Navigation - Strictly Hidden on Desktop */
.nav-mobile-menu {
  display: none !important;
}

/* Cursor Ambient Glow Spotlight */
#cursorSpotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(6, 182, 212, 0.04) 45%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.4s ease;
  filter: blur(25px);
}

/* ==========================================================================
   Interactive 3D Gyroscopic Tilt & Holographic Specular Sheen
   ========================================================================== */
.card-3d-wrap {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.service-card,
.portfolio-card,
.anvay-hw-card,
.approach-card,
.feature-preview-box,
.matcher-card,
.value-card,
.why-card,
.hero-glass-card {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.18s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  box-shadow: var(--shadow-specular);
}

/* Dynamic Holographic Specular Glare following Cursor */
.holographic-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle 340px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(6, 182, 212, 0.18) 0%,
    rgba(99, 102, 241, 0.14) 40%,
    transparent 75%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: screen;
  z-index: 6;
}

.service-card:hover .holographic-glare,
.portfolio-card:hover .holographic-glare,
.anvay-hw-card:hover .holographic-glare,
.approach-card:hover .holographic-glare,
.feature-preview-box:hover .holographic-glare,
.matcher-card:hover .holographic-glare,
.value-card:hover .holographic-glare,
.why-card:hover .holographic-glare,
.hero-glass-card:hover .holographic-glare {
  opacity: 1;
}

/* Futuristic Cyber HUD Corner Telemetry Brackets */
.hud-bracket {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  opacity: 0.6;
  transition: all 0.3s ease;
  z-index: 7;
}

.hud-bracket-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--primary-cyan);
  border-left: 2px solid var(--primary-cyan);
}

.hud-bracket-tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid var(--primary-cyan);
  border-right: 2px solid var(--primary-cyan);
}

.hud-bracket-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid var(--primary-cyan);
  border-left: 2px solid var(--primary-cyan);
}

.hud-bracket-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid var(--primary-cyan);
  border-right: 2px solid var(--primary-cyan);
}

.service-card:hover .hud-bracket,
.portfolio-card:hover .hud-bracket,
.anvay-hw-card:hover .hud-bracket,
.hero-glass-card:hover .hud-bracket {
  opacity: 1;
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 8px var(--primary-cyan));
}

/* High-tech Laser Scan Beam */
.laser-beam-sweep {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-cyan), #FFFFFF, var(--accent-glow), transparent);
  box-shadow: 0 0 16px var(--primary-cyan), 0 0 8px #FFFFFF;
  opacity: 0;
  pointer-events: none;
  z-index: 8;
  animation: laserSweep 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes laserSweep {
  0% {
    top: -5%;
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    top: 105%;
    opacity: 0;
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 130px;
  padding-bottom: 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-cyan);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-cyan);
  box-shadow: 0 0 12px var(--primary-cyan);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* Hero Fast Metrics HUD Ribbon */
.hero-stats-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 14px 24px;
  background: rgba(7, 12, 27, 0.75);
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-stats-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(6, 182, 212, 0.5) 40%, rgba(99, 102, 241, 0.6) 80%, transparent 100%);
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 2px 24px;
  position: relative;
  transition: transform var(--transition-fast);
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  padding-right: 0;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.stat-icon-pill {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.stat-icon-pill.stat-icon-violet {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.35);
  color: #A78BFA;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.stat-icon-pill.stat-icon-emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #10B981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.stat-icon-pill svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  flex-shrink: 0 !important;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFFFFF 20%, #38BDF8 60%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.25));
}

.stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Hero Visual Box */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glass-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-specular), var(--shadow-glow);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
}

.hero-card-brand {
  text-align: center;
  margin-bottom: 24px;
}

.hero-card-brand img {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(99, 102, 241, 0.45));
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.hero-glass-card:hover .hero-card-brand img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 35px rgba(6, 182, 212, 0.65));
}

.hero-tech-nodes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.tech-node-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.tech-node-item:hover {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.tech-node-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-cyan);
  flex-shrink: 0;
}

/* Floating Badges */
.floating-stat-badge {
  position: absolute;
  padding: 10px 20px;
  background: rgba(7, 13, 30, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(99, 102, 241, 0.25);
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-stat-badge.badge-top {
  top: -15px;
  right: 10px;
}

.floating-stat-badge.badge-bottom {
  bottom: -15px;
  left: 10px;
  animation-delay: -2s;
}

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

/* Trust Pillars Bar */
.trust-bar-section {
  position: relative;
  z-index: 5;
  padding: 10px 0 40px 0;
}

.trust-pillars-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
  padding: 22px 28px;
  background: rgba(7, 12, 27, 0.75);
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.trust-pillars-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(6, 182, 212, 0.4) 30%, rgba(99, 102, 241, 0.5) 70%, transparent 100%);
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform var(--transition-fast);
}

.pillar-item:hover {
  transform: translateY(-2px);
}

.pillar-item:last-child {
  border-right: none;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid rgba(6, 182, 212, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.15);
  transition: all var(--transition-fast);
}

.pillar-item:hover .pillar-icon {
  border-color: rgba(6, 182, 212, 0.6);
  box-shadow: 0 0 22px rgba(6, 182, 212, 0.35);
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.3) 0%, rgba(6, 182, 212, 0.15) 100%);
}

.pillar-icon svg,
.pillar-item svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  flex-shrink: 0 !important;
  stroke: var(--primary-cyan);
}

.pillar-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pillar-title,
.pillar-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pillar-desc,
.pillar-info p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1200px) {
  .pillar-title,
  .pillar-info h4,
  .pillar-desc,
  .pillar-info p {
    white-space: normal;
  }
}

/* ==========================================================================
   Central Innovation Hub ("AI Driving Innovation")
   ========================================================================== */
.innovation-hub-section {
  background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.04) 50%, transparent 100%);
  position: relative;
}

.hub-diagram-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hub-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.hub-core-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(99, 102, 241, 0.4) 100%);
  border: 2px solid var(--primary-teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.35);
  animation: coreGlow 3s ease-in-out infinite alternate;
}

@keyframes coreGlow {
  0% { box-shadow: 0 0 25px rgba(99, 102, 241, 0.4); }
  100% { box-shadow: 0 0 45px rgba(6, 182, 212, 0.5); }
}

.hub-core-circle h3 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
}

.hub-core-circle span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-teal);
  text-transform: uppercase;
  margin-top: 4px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.hub-node {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all var(--transition-normal);
  text-align: center;
}

.hub-node:hover {
  background: rgba(6, 182, 212, 0.06);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-5px);
}

.hub-node-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px auto;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
}

.hub-node h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hub-node p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Services Section (14 Service Modules)
   ========================================================================== */
.services-section {
  position: relative;
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-primary);
  border-color: rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.05);
}

.filter-btn.active {
  background: var(--gradient-brand);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-card-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(6, 182, 212, 0.15);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-teal);
  background: rgba(6, 182, 212, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.service-features {
  margin-bottom: 24px;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-cyan);
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.service-category-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

.service-learn-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-teal);
  cursor: pointer;
  background: none;
  border: none;
}

.service-learn-more:hover {
  color: #FFFFFF;
  text-shadow: 0 0 8px var(--primary-teal);
}

/* ==========================================================================
   Our Approach Section (5-Step Pipeline)
   ========================================================================== */
.approach-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.approach-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 40px;
}

.approach-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  text-align: center;
}

.approach-card:hover {
  border-color: var(--primary-cyan);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.approach-step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--primary-cyan);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.approach-icon-wrap {
  margin-bottom: 16px;
  color: var(--primary-teal);
}

.approach-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* ==========================================================================
   Core Commitments / Why Us (5 Pillars)
   ========================================================================== */
.why-section {
  position: relative;
}

/* ==========================================================================
   Executive Bento Grid: Why Visionary Leaders Choose Nuvexa
   ========================================================================== */
.why-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.bento-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-specular);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-card-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.3;
  transition: opacity var(--transition-normal);
}

.bento-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(99, 102, 241, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 35px rgba(99, 102, 241, 0.25);
}

.bento-card:hover::after {
  opacity: 1;
}

.bento-card.bento-span-7 {
  grid-column: span 7;
}

.bento-card.bento-span-5 {
  grid-column: span 5;
}

.bento-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.bento-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.2);
  flex-shrink: 0;
}

.bento-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.bento-badge-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: var(--primary-cyan);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.15);
}

.bento-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}

.bento-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Feature 1: Telemetry Row */
.bento-telemetry-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
  background: rgba(3, 7, 18, 0.65);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-top: auto;
}

.telemetry-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.telemetry-chip.status-live {
  border-color: rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.08);
  color: var(--primary-cyan);
}

.telemetry-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-cyan);
  box-shadow: 0 0 8px var(--primary-cyan);
  animation: pulseAnimation 2s infinite;
}

/* Feature 2: High Velocity Metric */
.bento-metric-highlight {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: auto;
  padding: 16px 20px;
  background: rgba(3, 7, 18, 0.65);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.bento-metric-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.bento-metric-caption {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Feature 3: Live Radar Uptime */
.bento-uptime-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 16px 20px;
  background: rgba(3, 7, 18, 0.65);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
  gap: 12px;
}

.uptime-badge-group {
  display: flex;
  gap: 8px;
}

.uptime-region-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
}

/* Feature 4: IP Chips Grid */
.bento-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: auto;
}

.bento-chip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.bento-chip-item:hover {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateX(3px);
}

.bento-chip-item svg {
  width: 14px;
  height: 14px;
  color: #10B981;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .bento-card.bento-span-7,
  .bento-card.bento-span-5 {
    grid-column: span 12;
  }
}

@media (max-width: 580px) {
  .bento-chips-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Interactive Solution Matcher
   ========================================================================== */
.matcher-section {
  position: relative;
}

.matcher-box {
  background: var(--bg-card);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.matcher-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.matcher-btn {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--transition-fast);
}

.matcher-btn:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.4);
}

.matcher-btn.active {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--primary-teal);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.matcher-btn span.tag {
  font-size: 0.75rem;
  color: var(--primary-teal);
  text-transform: uppercase;
}

.matcher-result {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: none;
}

.matcher-result.visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Contact & CTA Section ("Let's Build The Future Together")
   ========================================================================== */
.contact-section {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 17, 0.95) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.contact-details-list {
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
}

.contact-qr-box {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.qr-code-graphic {
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-graphic svg {
  width: 100%;
  height: 100%;
}

.qr-text-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.qr-text-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-cyan);
  background: rgba(6, 182, 212, 0.05);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

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

/* Precision Styling for Select & Option Dropdowns */
select,
select.form-input,
.form-select {
  background-color: #070D1D !important;
  color: #FFFFFF !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2306B6D4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
}

select option,
.form-input option,
.form-select option {
  background: #0B1426 !important;
  background-color: #0B1426 !important;
  color: #FFFFFF !important;
  padding: 12px 16px;
  font-size: 0.95rem;
}

select option:hover,
select option:focus,
select option:checked {
  background-color: #1E293B !important;
  color: #38BDF8 !important;
}

select option[disabled],
.form-select option[disabled] {
  color: #94A3B8 !important;
  background-color: #070D1D !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #03050A;
  border-top: 1px solid var(--border-light);
  padding: 70px 0 30px 0;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 16px rgba(6, 182, 212, 0.4));
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--primary-teal);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Modals & Overlays
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg-card-hover);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-backdrop.open .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #FFFFFF;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(11, 20, 38, 0.95);
  border: 1px solid var(--primary-teal);
  box-shadow: var(--shadow-teal-glow);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-brand);
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  z-index: 99;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats-row {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-pillars-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .pillar-item:nth-child(2) {
    border-right: none;
  }

  .pillar-item:nth-child(1),
  .pillar-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 14px;
  }

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

  .approach-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .nav-links, .nav-actions .btn {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .nav-mobile-menu {
    display: flex !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(7, 10, 19, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.95);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-160%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    z-index: 99;
  }

  .nav-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-pillars-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 20px;
  }

  .pillar-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    padding: 10px 4px 14px 4px !important;
  }

  .pillar-item:last-child {
    border-bottom: none !important;
    padding-bottom: 4px !important;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-stats-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px;
  }

  .stat-item {
    padding: 0 !important;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .stat-item:not(:last-child)::after {
    display: none !important;
  }

  .stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 12px !important;
  }
}

/* ==========================================================================
   ANVAY Flagship Product Showcase Styles
   ========================================================================== */
.anvay-section {
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(139, 92, 246, 0.12) 0%, rgba(99, 102, 241, 0.08) 35%, transparent 70%);
  border-bottom: 1px solid var(--border-light);
}

.anvay-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: #00F2FE;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.anvay-brand-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.anvay-tagline {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 18px;
}

.anvay-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* Anvay Device Tabs */
.anvay-device-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.device-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.device-tab-btn svg {
  width: 18px;
  height: 18px;
}

.device-tab-btn:hover {
  background: rgba(6, 182, 212, 0.08);
  color: var(--text-primary);
  border-color: rgba(6, 182, 212, 0.3);
}

.device-tab-btn.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(6, 182, 212, 0.3));
  border-color: var(--primary-teal);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
}

/* Anvay Interactive Showcase Box */
.anvay-showcase-box {
  background: var(--bg-card);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(99, 102, 241, 0.15);
  margin-bottom: 50px;
}

.anvay-device-display {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 48px;
}

/* Simulated Smartphone Hardware */
.phone-mockup-frame {
  width: 290px;
  height: 520px;
  margin: 0 auto;
  background: #0B0F19;
  border: 4px solid #23314F;
  border-radius: 40px;
  padding: 20px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(6, 182, 212, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.phone-notch {
  width: 90px;
  height: 18px;
  background: #050811;
  border-radius: 0 0 12px 12px;
  margin: -20px auto 14px auto;
}

.phone-screen-header {
  text-align: center;
}

.phone-time {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.phone-greeting {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 10px;
  color: #FFFFFF;
}

.phone-subprompt {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.anvay-phone-orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, rgba(99, 102, 241, 0.6) 70%, transparent 100%);
  border: 2px solid var(--primary-cyan);
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
  animation: orbPulse 2.5s infinite alternate;
}

@keyframes orbPulse {
  0% { transform: scale(0.96); box-shadow: 0 0 20px rgba(99, 102, 241, 0.5); }
  100% { transform: scale(1.05); box-shadow: 0 0 40px rgba(6, 182, 212, 0.7); }
}

.anvay-phone-orb .orb-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFFFFF;
}

/* Sound Wave Animation */
.waveform-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 36px;
  margin: 12px 0;
}

.wave-bar {
  width: 3px;
  background: var(--gradient-brand);
  border-radius: 3px;
  animation: waveMotion 1.2s ease-in-out infinite alternate;
}

.wave-bar:nth-child(1) { height: 10px; animation-delay: 0.1s; }
.wave-bar:nth-child(2) { height: 22px; animation-delay: 0.3s; }
.wave-bar:nth-child(3) { height: 32px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 18px; animation-delay: 0.5s; }
.wave-bar:nth-child(5) { height: 28px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 34px; animation-delay: 0.1s; }
.wave-bar:nth-child(7) { height: 20px; animation-delay: 0.3s; }
.wave-bar:nth-child(8) { height: 14px; animation-delay: 0.6s; }

@keyframes waveMotion {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1.3); }
}

.phone-listening-tag {
  font-size: 0.8rem;
  color: var(--primary-teal);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}

.phone-controls {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-ctrl-btn {
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
}

/* Anvay Feature Highlights & Devices */
.anvay-hardware-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.anvay-hw-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-specular);
}

.anvay-hw-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(6, 182, 212, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(99, 102, 241, 0.2);
}

.anvay-hw-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.anvay-hw-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* 4-Step Intelligence Cycle (You Speak -> Understands -> Remembers -> Acts) */
.anvay-flow-wrapper {
  margin-top: 48px;
}

.anvay-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.anvay-flow-step {
  background: rgba(11, 20, 38, 0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.anvay-flow-step:hover {
  border-color: var(--primary-cyan);
  background: rgba(16, 30, 58, 0.9);
  transform: translateY(-4px);
}

.flow-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  color: var(--primary-cyan);
}

.anvay-flow-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.anvay-flow-step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* What Anvay Does 6-Card Grid */
.anvay-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.anvay-cap-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-normal);
}

.anvay-cap-card:hover {
  background: rgba(6, 182, 212, 0.05);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-3px);
}

.anvay-cap-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.anvay-cap-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
}

/* Privacy Assurance Banner */
.anvay-privacy-banner {
  margin-top: 40px;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.privacy-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Featured Client Work & Case Studies (Production Systems)
   ========================================================================== */
.portfolio-section {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-card-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.3;
  transition: opacity var(--transition-normal);
}

.portfolio-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(6, 182, 212, 0.15);
}

.portfolio-card:hover::after {
  opacity: 1;
}

.portfolio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-teal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary-teal);
  box-shadow: 0 0 8px var(--primary-teal);
  animation: pulseAnimation 2s infinite;
}

.portfolio-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
}

.portfolio-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.portfolio-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.portfolio-highlights {
  list-style: none;
  margin-bottom: 24px;
}

.portfolio-highlights li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.portfolio-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: bold;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.portfolio-tag {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.portfolio-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.portfolio-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-full);
  color: var(--primary-cyan);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.portfolio-link-btn:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.35);
}

@media (max-width: 1024px) {
  .anvay-device-display {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .phone-mockup-frame {
    margin-bottom: 30px;
  }
  .anvay-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .anvay-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .anvay-capabilities-grid {
    grid-template-columns: 1fr;
  }
  .anvay-flow-grid {
    grid-template-columns: 1fr;
  }
  .anvay-hardware-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Multi-Page Enterprise Subpage Components
   ========================================================================== */

/* Subpage Hero Header */
.page-hero {
  padding-top: 155px;
  padding-bottom: 75px;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.14) 0%, transparent 70%);
}

.page-hero .page-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.page-hero .page-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 30px auto;
  line-height: 1.65;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.breadcrumb-nav a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
  color: var(--text-highlight);
}

.breadcrumb-nav .separator {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.breadcrumb-nav .current {
  color: var(--primary-cyan);
  font-weight: 600;
}

/* Page Section Badges */
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-cyan);
  margin-bottom: 20px;
}

/* In-Depth Case Study Layout on portfolio.html */
.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-specular);
}

.case-study-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-card-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.3;
  transition: opacity var(--transition-normal);
}

.case-study-card:hover {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(99, 102, 241, 0.2);
}

.case-study-card:hover::after {
  opacity: 1;
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.case-study-title-group h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.case-study-category {
  font-size: 0.9rem;
  color: var(--primary-cyan);
  font-weight: 600;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: start;
}

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

.case-detail-block {
  margin-bottom: 20px;
}

.case-detail-block h4 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-detail-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.case-meta-sidebar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
}

.case-meta-item {
  margin-bottom: 16px;
}

.case-meta-item:last-child {
  margin-bottom: 0;
}

.case-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.case-meta-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* FAQ Accordion */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.35);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: #FFFFFF;
  user-select: none;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--primary-cyan);
  transition: transform var(--transition-fast);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

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

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.contact-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  color: var(--primary-cyan);
}

/* ==========================================================================
   Global Futuristic CTA Banner
   ========================================================================== */
.cta-banner {
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.22) 0%, rgba(11, 19, 43, 0.85) 75%);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 56px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-specular), 0 0 50px rgba(99, 102, 241, 0.2);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-card-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}
