/* Advanced AI Recruitment Platform - Beautiful Dark Theme with GSAP Animations */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Material Icons Style */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}

/* Icon Size Variants */
.tech-icon .material-symbols-outlined {
  font-size: 2rem;
  color: var(--primary-light);
}

.stat-icon .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--text-primary);
}

.testimonial-icon .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--primary-light);
}

.solution-icon .material-symbols-outlined {
  font-size: 2rem;
  color: var(--text-primary);
}

.guarantee-icon .material-symbols-outlined {
  font-size: 1rem;
  color: var(--accent);
}

.btn-icon .material-symbols-outlined {
  font-size: 1rem;
  color: var(--text-primary);
}

.panel-header h3 .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--primary-light);
  margin-right: 0.5rem;
  vertical-align: middle;
}

:root {
  /* Color System - Enhanced */
  --bg-primary: #050510;
  --bg-secondary: #080818;
  --bg-tertiary: #0f0f1f;
  --bg-glass: rgba(17, 25, 40, 0.75);
  --bg-card: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
  --bg-gradient: linear-gradient(-135deg, #7054d9 0%, #5670c0 30%, #3abbb3 100%);
  --bg-glow: radial-gradient(ellipse at center, rgba(112, 84, 217, 0.15), transparent 50%);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  /* Brand Colors */
  --primary: #7054d9;
  --primary-light: #8b72e6;
  --primary-dark: #5a3fb8;
  --secondary: #5670c0;
  --accent: #3abbb3;
  --accent-light: #4dd4cc;
  
  /* Glass Effects - Enhanced */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  --glass-glow: 0 0 40px rgba(112, 84, 217, 0.15);
  
  /* New Glow Effects */
  --glow-primary: 0 0 60px rgba(112, 84, 217, 0.4);
  --glow-accent: 0 0 60px rgba(58, 187, 179, 0.4);
  --glow-soft: 0 20px 60px rgba(0, 0, 0, 0.3);
  
  /* Animations */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacing */
  --section-padding: 120px 0;
  --container-padding: 0;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #08081a;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Global wrapper to prevent overflow */
main,
.main-content {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Subtle grid pattern overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* Typography - Refined */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1, .hero-headline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-headline .text-light {
  color: var(--text-primary);
  -webkit-text-fill-color: unset;
  background: none;
  opacity: 0.9;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Container System */
.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

.container-sm {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

/* Layout Components - Enhanced Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  padding: 0 50px;
}

.site-header.scrolled {
  background: rgba(8, 8, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}

.brand:hover {
  color: var(--primary-light);
  transform: translateY(-1px);
}

.brand img {
  width: 48px;
  height: 48px;
  margin-right: 12px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition-medium);
}

.brand:hover img {
  box-shadow: 0 12px 40px rgba(112, 84, 217, 0.5);
  transform: scale(1.05);
}

.site-main {
  padding-top: 80px;
  position: relative;
}

/* Glass Card System - Enhanced */
.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 
    var(--glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0.8;
}

.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(112, 84, 217, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  border-radius: inherit;
}

.glass-card:hover::after {
  opacity: 1;
}

.glass-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(31, 38, 135, 0.5);
  border-color: rgba(112, 84, 217, 0.3);
}

/* Button System - Enhanced */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--bg-gradient);
  color: white;
  box-shadow: 
    0 8px 32px rgba(112, 84, 217, 0.4),
    0 0 0 0 rgba(112, 84, 217, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(112, 84, 217, 0.5),
    0 0 30px rgba(112, 84, 217, 0.3);
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(112, 84, 217, 0.2);
}

.btn-large {
  padding: 1.25rem 2.75rem;
  font-size: 1.1rem;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Hero Section - Stunning */
.hero {
  padding: 0px 0 0;
  margin: 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #08081a;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120vw;
  height: 120vw;
  max-width: 1400px;
  max-height: 1400px;
  background: 
    radial-gradient(circle at 30% 40%, rgba(112, 84, 217, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(58, 187, 179, 0.12) 0%, transparent 50%);
  border-radius: 50%;
  animation: heroGlow 20s ease-in-out infinite;
  will-change: transform;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 80% 20%, rgba(58, 187, 179, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(112, 84, 217, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes heroGlow {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1) rotate(0deg); 
    opacity: 0.5;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.05) rotate(180deg); 
    opacity: 0.8;
  }
}

@keyframes parallaxGlow {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  min-width: 880px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-badge::before {
  content: '✨';
  font-size: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  filter: none !important;
  opacity: 1 !important;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; top: 8px; }
  50% { opacity: 0.3; top: 18px; }
}

/* Responsive KPI Grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.kpi-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(112, 84, 217, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  animation: rotateGradient 8s linear infinite paused;
}

@keyframes rotateGradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.kpi-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.kpi-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(112, 84, 217, 0.4);
  box-shadow: 
    0 25px 60px rgba(112, 84, 217, 0.2),
    0 0 0 1px rgba(112, 84, 217, 0.1);
}

.kpi-value {
  font-size: 3.25rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.kpi-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Hero Visual - Enhanced */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2000px;
  transform-style: preserve-3d;
  z-index: -1;
  filter: blur(160px);
  opacity: 0.7 !important;
}

.hero-orb {
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(58, 187, 179, 0.4) 0%, transparent 50%),
    var(--bg-gradient);
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 
    0 0 100px rgba(112, 84, 217, 0.6),
    0 0 200px rgba(112, 84, 217, 0.4),
    0 0 300px rgba(112, 84, 217, 0.2),
    0 50px 100px rgba(0, 0, 0, 0.3),
    inset 0 0 100px rgba(255, 255, 255, 0.2),
    inset -30px -30px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  animation: orbFloat 8s ease-in-out infinite, orbGlow 4s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  25% { transform: translateY(-20px) rotateX(5deg) rotateY(-5deg); }
  50% { transform: translateY(-10px) rotateX(-3deg) rotateY(5deg); }
  75% { transform: translateY(-25px) rotateX(3deg) rotateY(-3deg); }
}

@keyframes orbGlow {
  0% {
    box-shadow: 
      0 0 80px rgba(112, 84, 217, 0.5),
      0 0 160px rgba(112, 84, 217, 0.3),
      0 50px 100px rgba(0, 0, 0, 0.3),
      inset 0 0 80px rgba(255, 255, 255, 0.15);
  }
  100% {
    box-shadow: 
      0 0 120px rgba(112, 84, 217, 0.7),
      0 0 240px rgba(112, 84, 217, 0.4),
      0 50px 100px rgba(0, 0, 0, 0.3),
      inset 0 0 100px rgba(255, 255, 255, 0.2);
  }
}

.hero-orb::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  z-index: -1;
  animation: rotate 15s linear infinite;
  opacity: 0.8;
  filter: blur(20px);
}

.hero-orb::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(58, 187, 179, 0.4) 0%, transparent 50%);
  backdrop-filter: blur(30px);
  animation: shimmer 4s ease-in-out infinite alternate;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes pulseGlow {
  0% { 
    box-shadow: 
      0 0 60px rgba(112, 84, 217, 0.4),
      0 0 120px rgba(112, 84, 217, 0.2),
      inset 0 0 60px rgba(255, 255, 255, 0.1);
  }
  100% { 
    box-shadow: 
      0 0 80px rgba(112, 84, 217, 0.6),
      0 0 160px rgba(112, 84, 217, 0.3),
      inset 0 0 80px rgba(255, 255, 255, 0.15);
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

/* Hero Orb Particles */
.particle {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
              0 0 40px rgba(112, 84, 217, 0.6);
  z-index: 10;
}

.particle-1 {
  top: 15%;
  right: 15%;
  animation: particleFloat1 5s ease-in-out infinite;
}

.particle-2 {
  top: 55%;
  left: 10%;
  animation: particleFloat2 6s ease-in-out infinite;
}

.particle-3 {
  top: 8%;
  left: 25%;
  animation: particleFloat3 4s ease-in-out infinite;
}

.particle-4 {
  bottom: 15%;
  right: 20%;
  animation: particleFloat4 5.5s ease-in-out infinite;
}

.particle-5 {
  top: 35%;
  right: 8%;
  animation: particleFloat5 4.5s ease-in-out infinite;
}

.particle-6 {
  bottom: 20%;
  left: 30%;
  animation: particleFloat6 7s ease-in-out infinite;
}

@keyframes particleFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  25% { transform: translate(-30px, -40px) scale(1.4); opacity: 1; }
  50% { transform: translate(-15px, -60px) scale(1.1); opacity: 0.6; }
  75% { transform: translate(-40px, -30px) scale(1.6); opacity: 1; }
}

@keyframes particleFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  33% { transform: translate(35px, -30px) scale(0.9); opacity: 1; }
  66% { transform: translate(20px, -50px) scale(1.3); opacity: 0.8; }
}

@keyframes particleFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
  50% { transform: translate(-25px, 35px) scale(1.5); opacity: 0.5; }
}

@keyframes particleFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  40% { transform: translate(40px, 20px) scale(1.2); opacity: 1; }
  80% { transform: translate(25px, 35px) scale(0.8); opacity: 0.7; }
}

@keyframes particleFloat5 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(-35px, -25px) scale(1.4); opacity: 0.6; }
}

@keyframes particleFloat6 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  25% { transform: translate(30px, -35px) scale(1.6); opacity: 0.9; }
  75% { transform: translate(15px, -25px) scale(1.2); opacity: 1; }
}

/* Section Styles */
.section {
  padding: 4rem 0;
  margin: 0;
  position: relative;
  transform-style: preserve-3d;
  background: #08081a;
  overflow-x: hidden;
}

.section.parallax-section {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Alternating section backgrounds for visual rhythm */
.technology-showcase {
  background: #08081a;
}

.process-excellence {
  background: #0c0c22;
}

.recruitment-journey {
  background: #08081a;
}

.market-intelligence {
  background: #0c0c22;
}

.success-stories {
  background: #08081a;
}

.enterprise-solutions {
  background: #0c0c22;
}

.final-cta {
  background: #08081a;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header.text-center {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2.75rem, 6vw, 3.5rem);
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  line-height: 1.05;
  font-weight: 700;
  min-width: fit-content;
}

.section-title .gradient-text {
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, rgba(112, 84, 217, 0.35), rgba(58, 187, 179, 0.25));
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
  position: relative;
  box-shadow: 
    0 0 0 1px rgba(112, 84, 217, 0.4),
    0 4px 20px rgba(112, 84, 217, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(112, 84, 217, 0.6), rgba(58, 187, 179, 0.5));
  border-radius: 50px;
  z-index: -1;
  opacity: 0.5;
}

.section-eyebrow .eyebrow-icon {
  font-size: 1.1rem;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

/* Feature Cards */
.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-medium);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-gradient);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 80px rgba(31, 38, 135, 0.6);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.kpi-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(112, 84, 217, 0.4);
}

.btn:hover {
  transform: translateY(-2px);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(31, 38, 135, 0.5);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 24px;
  background: conic-gradient(from 0deg, var(--primary), var(--accent), var(--primary));
  z-index: -1;
}

.feature-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.feature-benefits {
  list-style: none;
}

.feature-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.feature-benefits li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  font-size: 1.25rem;
}

/* Testimonials */
.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.testimonial-content {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.testimonial-info h4 {
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, rgba(112, 84, 217, 0.1), rgba(58, 187, 179, 0.1));
  border-radius: 40px;
  margin: 4rem 0;
  padding: 5rem 3rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

/* Market Insights Responsive Layout */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.insight-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-medium);
}

.insight-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.insights-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  position: relative;
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 6rem 3rem;
  background: var(--glass-bg);
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: conic-gradient(from 0deg at 50% 50%, var(--primary) 0deg, var(--secondary) 120deg, var(--accent) 240deg, var(--primary) 360deg);
  opacity: 0.1;
  animation: rotate 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

/* Footer - Enhanced */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5rem 0 2rem;
  margin-top: 0;
  background: #0a0a18;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-brand-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.footer-tagline {
  color: var(--text-muted);
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.85rem;
}

.footer-section ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(112, 84, 217, 0.3); }
  50% { box-shadow: 0 0 40px rgba(112, 84, 217, 0.6); }
}

@keyframes slideInUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Advanced Parallax & Animation Effects */
/* Parallax Background Layers */
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.parallax-section {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: floatShape 25s ease-in-out infinite;
  will-change: transform;
}

.shape-1 {
  top: 10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(112, 84, 217, 0.4), transparent);
  animation-delay: 0s;
}

.shape-2 {
  top: 60%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(58, 187, 179, 0.3), transparent);
  animation-delay: 5s;
}

.shape-3 {
  bottom: 15%;
  left: 50%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(86, 112, 192, 0.25), transparent);
  animation-delay: 10s;
}

@keyframes floatShape {
  0%, 100% { 
    transform: translate(0, 0) scale(1) rotate(0deg); 
  }
  25% { 
    transform: translate(40px, -50px) scale(1.1) rotate(90deg); 
  }
  50% { 
    transform: translate(-30px, -30px) scale(0.95) rotate(180deg); 
  }
  75% { 
    transform: translate(50px, 40px) scale(1.05) rotate(270deg); 
  }
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Magnetic Effect for Cards */
.magnetic-card {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.magnetic-card:hover {
  z-index: 10;
}

/* Glassmorphism Enhanced */
.glass-card-enhanced {
  backdrop-filter: blur(30px) saturate(180%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.glass-card-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle, 
    rgba(112, 84, 217, 0.1) 0%, 
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.glass-card-enhanced:hover::before {
  opacity: 1;
}

/* Gradient Borders */
.gradient-border {
  position: relative;
  background: var(--bg-secondary);
  border-radius: 24px;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -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;
}

/* Shimmer Effect */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: shimmerSlide 3s infinite;
}

@keyframes shimmerSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Pulsing Dots */
.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
  animation: pulseDot 2s ease-in-out infinite;
}

.pulse-dot::before,
.pulse-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
}

.pulse-dot::before {
  animation: pulseRing 2s ease-out infinite;
}

.pulse-dot::after {
  animation: pulseRing 2s 1s ease-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes pulseRing {
  0% { 
    transform: translate(-50%, -50%) scale(1); 
    opacity: 1; 
  }
  100% { 
    transform: translate(-50%, -50%) scale(2.5); 
    opacity: 0; 
  }
}

/* Spotlight Effect */
.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(112, 84, 217, 0.15),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.spotlight:hover::before {
  opacity: 1;
}

/* Tilt Effect */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
}

/* Smooth Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--bg-gradient);
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Fade In Up Animation Classes */
.fade-in-up {
  animation: fadeInUpAnim 0.8s ease-out forwards;
}

@keyframes fadeInUpAnim {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-left {
  animation: fadeInLeftAnim 0.8s ease-out forwards;
}

@keyframes fadeInLeftAnim {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-right {
  animation: fadeInRightAnim 0.8s ease-out forwards;
}

@keyframes fadeInRightAnim {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stagger Delay Classes */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* 3D Card Flip */
.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 24px;
}

.flip-card-back {
  transform: rotateY(180deg);
}

/* Text Gradient Animation */
.gradient-text-animated {
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--secondary) 25%,
    var(--accent) 50%,
    var(--secondary) 75%,
    var(--primary) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* Rotate Animation */
@keyframes rotateAnimation {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rotate-slow {
  animation: rotateAnimation 20s linear infinite;
}

/* Scale Pulse Animation */
@keyframes scalePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.scale-pulse {
  animation: scalePulse 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-orb {
    width: 300px;
    height: 300px;
  }
  
  .section-padding {
    --section-padding: 80px 0;
  }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 32px;
  }
  
  .hero-orb {
    width: 450px;
    height: 450px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .section-header {
    margin-bottom: 4rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .hero {
    padding: 40px 0 80px;
    min-height: 100vh;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-orb {
    width: 400px;
    height: 400px;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .insights-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  h1 {
    font-size: 3.5rem;
    line-height: 1.1;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .hero {
    padding: 30px 0 60px;
  }
  
  .hero-orb {
    width: 350px;
    height: 350px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }
  
  .glass-card,
  .feature-card,
  .insight-card {
    padding: 1.5rem;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .insights-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .kpi-card {
    padding: 1.5rem 1rem;
  }
  
  .kpi-value {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 20px 0 40px;
  }
  
  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .hero-orb {
    width: 280px;
    height: 280px;
  }
  
  .particle {
    width: 4px;
    height: 4px;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .insights-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .kpi-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .kpi-value {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .glass-card,
  .feature-card,
  .insight-card {
    padding: 1.25rem;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 320px) {
  .hero-orb {
    width: 240px;
    height: 240px;
  }
  
  h1 {
    font-size: 1.9rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .kpi-value,
  .stat-number {
    font-size: 1.8rem;
  }
}

/* Smooth scrolling enhancements */
html {
  scroll-padding-top: 120px;
}

/* Animation Loading States - Elements visible by default */
.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

/* Optional: If you want subtle entrance animations via CSS */
@media (prefers-reduced-motion: no-preference) {
  .animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* New Enhanced Styles for Sophisticated Layout */

/* Hero Section Enhancements */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  color: var(--text-primary);
}

.badge-icon {
  font-size: 1rem;
  animation: sparkle 2s ease-in-out infinite;
}

.badge-icon .material-symbols-outlined {
  font-size: 1rem;
  color: var(--primary-light);
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(10deg); }
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: textGradientShift 8s ease infinite;
}

@keyframes textGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-stats-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-stats-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.hero-stats-ribbon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(112, 84, 217, 0.1), rgba(58, 187, 179, 0.05));
  pointer-events: none;
}

.stat-highlight {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.stat-highlight .stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-highlight .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-separator {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-hero {
  padding: 1.1rem 2.75rem;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn-hero:hover::before {
  left: 100%;
}

/* Section Styling - Enhanced */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, rgba(58, 187, 179, 0.15), rgba(58, 187, 179, 0.05));
  border: 1px solid rgba(58, 187, 179, 0.2);
  border-radius: 50px;
}


@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.section-description {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 0px;
  max-width: 65ch;
}

/* Technology Showcase */
.technology-showcase {
  position: relative;
  background: #08081a;
}

.technology-showcase::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(112, 84, 217, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(58, 187, 179, 0.06), transparent 50%);
  pointer-events: none;
}

.showcase-layout {
  display: block;
}

.technology-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Features Dual Layout - Recruiter & Candidate Split */
.features-dual-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.features-category {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.6), rgba(20, 20, 45, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  padding: 2rem;
}

.category-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.category-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(112, 84, 217, 0.1);
  border: 1px solid rgba(112, 84, 217, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.category-eyebrow .eyebrow-icon {
  font-size: 0.875rem;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.category-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-features .tech-feature {
  padding: 1.5rem;
  gap: 1.25rem;
}

.category-features .tech-icon {
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  border-radius: 10px;
}

.category-features .tech-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.category-features .tech-content p {
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .features-dual-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Technology Features Grid - 3 column layout (legacy) */
.technology-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tech-feature {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.tech-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 84, 217, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.tech-feature:hover::before {
  opacity: 1;
}

.tech-feature:hover {
  transform: translateX(6px);
  border-color: rgba(112, 84, 217, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.tech-icon {
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gradient);
  border: none;
  border-radius: 14px;
  backdrop-filter: blur(20px);
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(112, 84, 217, 0.25);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.tech-feature:hover .tech-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(112, 84, 217, 0.35);
}

.tech-icon .material-symbols-outlined {
  color: white !important;
}

.tech-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 700;
}

.tech-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.technology-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.impact-metric {
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.impact-metric::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.impact-metric:hover::before {
  opacity: 0.08;
}

.impact-metric:hover {
  transform: translateY(-6px);
  border-color: rgba(112, 84, 217, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.impact-number {
  font-size: 2.75rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.impact-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* AI Visualization - Hidden */
.showcase-visual {
  display: none;
}

.ai-visualization {
  display: none;
}

.neural-network {
  position: absolute;
  width: 100%;
  height: 100%;
}

.network-node {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 30px rgba(112, 84, 217, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.node-2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.node-3 { bottom: 30%; left: 30%; animation-delay: 1s; }
.node-4 { bottom: 30%; right: 30%; animation-delay: 1.5s; }

.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: dataFlow 3s ease-in-out infinite;
}

.line-1 {
  top: 35%;
  left: 25%;
  width: 50%;
  transform: rotate(15deg);
}

.line-2 {
  top: 50%;
  left: 30%;
  width: 40%;
  transform: rotate(-25deg);
}

.line-3 {
  bottom: 45%;
  left: 35%;
  width: 30%;
  transform: rotate(45deg);
}

@keyframes dataFlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Process Excellence */
.process-excellence {
  background: #08081a;
}

.process-excellence::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(112, 84, 217, 0.06), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(58, 187, 179, 0.05), transparent 50%);
  pointer-events: none;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent), transparent);
  border-radius: 3px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  position: relative;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  box-shadow: 
    0 8px 32px rgba(112, 84, 217, 0.4),
    0 0 0 6px rgba(112, 84, 217, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.timeline-step:hover .step-number {
  transform: scale(1.05);
  box-shadow: 
    0 12px 45px rgba(112, 84, 217, 0.45),
    0 0 0 10px rgba(112, 84, 217, 0.12);
}

.step-connector {
  display: none;
}

.step-content {
  padding: 1.5rem 2rem;
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.8), rgba(20, 20, 45, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 84, 217, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.timeline-step:hover .step-content::before {
  opacity: 1;
}

.timeline-step:hover .step-content {
  transform: translateX(6px);
  border-color: rgba(112, 84, 217, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 700;
}

.step-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-tag {
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, rgba(112, 84, 217, 0.15), rgba(112, 84, 217, 0.05));
  border: 1px solid rgba(112, 84, 217, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: linear-gradient(135deg, rgba(112, 84, 217, 0.25), rgba(112, 84, 217, 0.1));
  transform: translateY(-2px);
}

/* Market Intelligence */
.market-intelligence {
  background: #08081a;
}

.market-intelligence::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 80% 20%, rgba(58, 187, 179, 0.06), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(86, 112, 192, 0.06), transparent 50%);
  pointer-events: none;
}

.intelligence-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.intelligence-dashboard {
  display: grid;
  gap: 2rem;
  width: 100%;
}

.dashboard-primary {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.9), rgba(20, 20, 45, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
}

.dashboard-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58, 187, 179, 0.4), rgba(112, 84, 217, 0.4), transparent);
}

.primary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.primary-stat {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 0 1.5rem;
  position: relative;
}

.primary-stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.primary-stat:last-child::after {
  display: none;
}

.stat-icon {
  font-size: 1.75rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gradient);
  border-radius: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(112, 84, 217, 0.3);
  color: var(--text-primary);
}

.stat-icon .material-symbols-outlined {
  font-size: 1.5rem;
}

.stat-content {
  text-align: left;
}

.stat-content .stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-content .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stat-trend {
  font-size: 0.75rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  background: rgba(58, 187, 179, 0.12);
  border-radius: 20px;
  width: fit-content;
  font-weight: 500;
}

.dashboard-insights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.insight-panel {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.9), rgba(20, 20, 45, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.insight-panel:hover {
  border-color: rgba(112, 84, 217, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(112, 84, 217, 0.1);
}

.panel-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-header h3 .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--accent);
}

.trend-item {
  display: grid;
  grid-template-columns: 1.75rem 1fr 70px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
}

.trend-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}

.trend-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trend-rank {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--text-primary);
}

.trend-info {
  min-width: 0;
}

.trend-title {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.trend-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: left;
}

.trend-indicator {
  width: 70px;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.trend-bar {
  height: 100%;
  background: var(--bg-gradient);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.market-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
}

.market-metrics.animate-in {
  opacity: 1;
  animation: none;
}

.metric-card {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.7), rgba(20, 20, 45, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 84, 217, 0.3), transparent);
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(112, 84, 217, 0.2);
}

.metric-value {
  font-size: 2.25rem;
  font-weight: 700;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Success Stories */
.success-stories {
  background: #0c0c22;
}

.success-stories::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(112, 84, 217, 0.05), transparent 60%);
  pointer-events: none;
}

.testimonials-showcase {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.testimonial-featured {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.9), rgba(20, 20, 45, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
}

.testimonial-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 84, 217, 0.5), transparent);
}

.testimonial-featured::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(112, 84, 217, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-quote {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.quote-mark {
  font-size: 4rem;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
  opacity: 0.8;
}

.testimonial-quote p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.author-image {
  position: relative;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-details h4 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-details p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1rem;
}

.company {
  font-weight: 600 !important;
  color: var(--primary-light) !important;
}

.author-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.author-stats .stat {
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.8), rgba(20, 20, 45, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(112, 84, 217, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  border-color: rgba(112, 84, 217, 0.2);
  transform: translateY(-4px);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(112, 84, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
  font-weight: 300;
}

.testimonial-author-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar-small {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(112, 84, 217, 0.3);
}

.author-info h5 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.success-metrics {
  margin-top: 5rem;
  text-align: center;
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.6), rgba(20, 20, 45, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2rem;
  padding: 3.5rem;
  position: relative;
}

.success-metrics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58, 187, 179, 0.5), transparent);
}

.metrics-header h3 {
  font-size: 1.35rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.success-metric {
  padding: 1.5rem 1rem;
  position: relative;
}

.success-metric::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.success-metric:last-child::after {
  display: none;
}

.success-metric .metric-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.success-metric .metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Enterprise Solutions */
.enterprise-solutions {
  background: #08081a;
}

.enterprise-solutions::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(58, 187, 179, 0.04), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(112, 84, 217, 0.04), transparent 50%);
  pointer-events: none;
}

.solutions-layout {
  display: block;
}

.solutions-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.solution-item {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.8), rgba(20, 20, 45, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.solution-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(112, 84, 217, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.solution-item:hover::before {
  opacity: 1;
}

.solution-item:hover {
  transform: translateY(-4px);
  border-color: rgba(112, 84, 217, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.solution-icon {
  font-size: 1.75rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gradient);
  border-radius: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(112, 84, 217, 0.25);
}

.solution-header h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 600;
}

.solution-item p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.tag {
  padding: 0.4rem 0.85rem;
  background: rgba(112, 84, 217, 0.1);
  border: 1px solid rgba(112, 84, 217, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.tag:hover {
  background: rgba(112, 84, 217, 0.2);
  border-color: rgba(112, 84, 217, 0.5);
}

.enterprise-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: sticky;
  top: 7rem;
}

.enterprise-stat {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.9), rgba(20, 20, 45, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.enterprise-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(58, 187, 179, 0.2);
}

.enterprise-stat .stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.enterprise-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Final CTA */
.final-cta {
  background: #0c0c22;
  position: relative;
  padding: 5rem 0;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(112, 84, 217, 0.06), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(58, 187, 179, 0.06), transparent 50%);
  pointer-events: none;
}

.cta-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-header h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-offer {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.9), rgba(20, 20, 45, 0.7));
  border: 1px solid rgba(112, 84, 217, 0.2);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.cta-offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 84, 217, 0.5), transparent);
}

.offer-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.offer-badge {
  padding: 0.5rem 1rem;
  background: var(--bg-gradient);
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.offer-details h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.offer-details p {
  color: var(--text-muted);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.cta-guarantees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.guarantee-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-preview {
  display: grid;
  gap: 1.5rem;
}

.preview-stat {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
}

.preview-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.preview-label {
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .showcase-layout,
  .solutions-layout,
  .cta-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cta-content {
    text-align: center;
  }
  
  .cta-header {
    text-align: center;
  }
  
  .cta-description {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-actions {
    justify-content: center;
  }
  
  .cta-guarantees {
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .cta-visual {
    display: flex;
    justify-content: center;
  }
  
  .success-preview {
    max-width: 400px;
  }
  
  .primary-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .dashboard-insights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .hero-visual {
  position: absolute;
}
  .hero-stats-ribbon {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  
  .stat-separator {
    width: 100%;
    height: 1px;
  }
  
  .technology-impact,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .market-metrics {
    grid-template-columns: 1fr;
  }
  
  .enterprise-stats {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .cta-guarantees {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .cta-content {
    text-align: center;
  }
  
  .cta-header {
    text-align: center;
  }
  
  .cta-description {
    text-align: center;
  }
  
  .guarantee-item {
    justify-content: center;
  }
  
  .success-preview {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .timeline-step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .primary-stat {
    flex-direction: column;
    text-align: center;
  }
  
  .offer-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* CTA - Extra compact */
  .final-cta {
    padding: 3rem 0;
  }
  
  .cta-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .cta-description {
    font-size: 0.95rem;
  }
  
  .cta-actions .btn {
    max-width: 100%;
    padding: 1rem 1.5rem;
  }
  
  .cta-guarantees {
    gap: 0.5rem;
  }
  
  .guarantee-item {
    font-size: 0.8rem;
    padding: 0.5rem 0;
  }
  
  .success-preview {
    max-width: 100%;
    gap: 1rem;
  }
  
  .preview-stat {
    padding: 1.25rem;
  }
  
  .preview-number {
    font-size: 2rem;
  }
  
  .preview-label {
    font-size: 0.85rem;
  }
  
  /* Screening journey - even more compact */
  .pipeline-screening .pipeline-stage {
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Recruitment Journey - Visual Pipeline */
.recruitment-journey {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background: #0c0c22;
}

.recruitment-journey::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(112, 84, 217, 0.05), transparent 60%);
  pointer-events: none;
}

.recruitment-journey .section-description {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.pipeline-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  padding: 1.5rem 0;
}

/* Animated flow line connecting stages */
.pipeline-flow-line {
  position: absolute;
  top: 80px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary) 0%, 
    var(--accent) 33%, 
    #f59e0b 66%, 
    #10b981 100%
  );
  border-radius: 2px;
  z-index: 0;
  opacity: 0.4;
}

.flow-pulse {
  position: absolute;
  top: -3px;
  left: 0;
  width: 50px;
  height: 10px;
  background: linear-gradient(90deg, transparent, white, transparent);
  border-radius: 5px;
  animation: flowPulse 3s ease-in-out infinite;
}

@keyframes flowPulse {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 50px); opacity: 0; }
}

/* Pipeline Stage */
.pipeline-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Glowing Orb */
.stage-orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.stage-orb:hover {
  transform: scale(1.15) translateY(-10px);
}

.stage-orb .material-symbols-outlined {
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 2;
}

.stage-orb-purple {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 
    0 0 60px rgba(112, 84, 217, 0.5),
    0 20px 40px rgba(112, 84, 217, 0.3),
    inset 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.stage-orb-purple:hover {
  box-shadow: 
    0 0 80px rgba(112, 84, 217, 0.7),
    0 30px 60px rgba(112, 84, 217, 0.4),
    inset 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.stage-orb-teal {
  background: linear-gradient(135deg, var(--accent), #2a9d8f);
  box-shadow: 
    0 0 60px rgba(58, 187, 179, 0.5),
    0 20px 40px rgba(58, 187, 179, 0.3),
    inset 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.stage-orb-teal:hover {
  box-shadow: 
    0 0 80px rgba(58, 187, 179, 0.7),
    0 30px 60px rgba(58, 187, 179, 0.4),
    inset 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.stage-orb-orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 
    0 0 60px rgba(245, 158, 11, 0.5),
    0 20px 40px rgba(245, 158, 11, 0.3),
    inset 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.stage-orb-orange:hover {
  box-shadow: 
    0 0 80px rgba(245, 158, 11, 0.7),
    0 30px 60px rgba(245, 158, 11, 0.4),
    inset 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.stage-orb-green {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 
    0 0 60px rgba(16, 185, 129, 0.5),
    0 20px 40px rgba(16, 185, 129, 0.3),
    inset 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.stage-orb-green:hover {
  box-shadow: 
    0 0 80px rgba(16, 185, 129, 0.7),
    0 30px 60px rgba(16, 185, 129, 0.4),
    inset 0 -5px 20px rgba(0, 0, 0, 0.3);
}

/* Orb Rings */
.orb-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: orbRingPulse 2s ease-out infinite;
}

.orb-ring-2 {
  inset: -20px;
  animation-delay: 0.5s;
}

@keyframes orbRingPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Orb Particles */
.orb-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0.6;
}

.orb-particles span:nth-child(1) {
  top: 10%;
  left: 20%;
  animation: particleOrbit 3s ease-in-out infinite;
}

.orb-particles span:nth-child(2) {
  top: 70%;
  right: 15%;
  animation: particleOrbit 4s ease-in-out infinite reverse;
}

.orb-particles span:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation: particleOrbit 3.5s ease-in-out infinite 0.5s;
}

@keyframes particleOrbit {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(10px, -15px) scale(1.5); opacity: 1; }
}

/* Stage Info */
.stage-info {
  padding: 0 1rem;
}

.stage-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.stage-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.stage-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Stage Metrics Pills */
.stage-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.metric-pill:hover {
  border-color: var(--primary-light);
  background: rgba(112, 84, 217, 0.1);
}

.metric-pill .material-symbols-outlined {
  font-size: 0.9rem;
  color: var(--accent);
}

.metric-pill-gold {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
  border-color: rgba(245, 158, 11, 0.3);
}

.metric-pill-gold .material-symbols-outlined {
  color: #f59e0b;
}

/* Connector between stages - hidden on mobile */
.stage-connector {
  display: none;
}

/* ============================================
   JOURNEY SLIDER - 3D Carousel
   ============================================ */

.journey-slider-section {
  overflow: hidden;
}

/* Journey Tabs */
.journey-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.journey-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(112, 84, 217, 0.1);
  border: 1px solid rgba(112, 84, 217, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.journey-tab .eyebrow-icon {
  font-size: 1rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.journey-tab:hover {
  background: rgba(112, 84, 217, 0.15);
  border-color: rgba(112, 84, 217, 0.3);
  color: var(--text-primary);
}

.journey-tab.active {
  background: var(--bg-gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 32px rgba(112, 84, 217, 0.4);
}

.journey-tab.active .eyebrow-icon {
  opacity: 1;
  -webkit-text-fill-color: white;
}

/* 3D Revolving Carousel Container */
.journey-carousel {
  position: relative;
  perspective: 2000px;
  perspective-origin: center center;
  min-height: 950px;
  margin-bottom: 2rem;
  transform-style: preserve-3d;
  overflow: visible;
}

.journey-carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* Journey Slides - True 3D Revolving */
.journey-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  transform-origin: center center;
}

/* Active slide - front facing */
.journey-slide.active {
  opacity: 1;
  transform: translateZ(0) rotateY(0deg);
  z-index: 2;
  pointer-events: auto;
}

/* Non-active slide - rotated to the side, visible but faded */
.journey-slide:not(.active) {
  opacity: 0.2;
  transform: translateX(50%) translateZ(-500px) rotateY(-45deg);
  pointer-events: none;
  z-index: 1;
  filter: blur(3px);
}

/* Previous slide - rotated to the other side */
.journey-slide.slide-left {
  opacity: 0.2;
  transform: translateX(-50%) translateZ(-500px) rotateY(45deg);
  pointer-events: none;
  filter: blur(3px);
}

/* Screening Journey - 2-stage centered layout */
.pipeline-screening {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 6rem;
  grid-template-columns: none;
}

.pipeline-screening .pipeline-stage {
  flex: 0 0 auto;
  width: 280px;
  max-width: none;
}

.pipeline-screening .pipeline-flow-line {
  left: 25%;
  right: 25%;
}

.pipeline-screening .stage-connector-wide {
  display: none;
}

/* Mobile Journey Slider */
@media (max-width: 768px) {
  .journey-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .journey-tab {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  
  .journey-carousel {
    min-height: auto;
    perspective: none;
    overflow: hidden;
  }
  
  .journey-slide {
    position: relative;
    display: none;
  }
  
  .journey-slide.active {
    display: block;
    transform: none;
  }
  
  .journey-slide:not(.active) {
    transform: none;
  }
  
  .pipeline-screening {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .pipeline-screening .pipeline-stage {
    width: 100%;
    max-width: 320px;
  }
  
  .pipeline-screening .pipeline-flow-line {
    display: none;
  }
  
  /* Mobile accordion styles for stages */
  .mobile-accordion .pipeline-stage {
    cursor: pointer;
    margin-bottom: 1rem;
  }
  
  .mobile-accordion .stage-info {
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  
  .mobile-accordion .pipeline-stage.expanded .stage-info {
    max-height: 500px;
  }
  
  .mobile-accordion .stage-info p,
  .mobile-accordion .stage-metrics {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .mobile-accordion .pipeline-stage.expanded .stage-info p,
  .mobile-accordion .pipeline-stage.expanded .stage-metrics {
    opacity: 1;
  }
}

/* Insight Cards */
.insight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.insight-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: var(--transition-medium);
}

.insight-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 60px rgba(112, 84, 217, 0.2);
}

.insight-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-icon .material-symbols-outlined {
  font-size: 1.75rem;
  color: white;
}

.insight-icon-purple {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 30px rgba(112, 84, 217, 0.3);
}

.insight-icon-teal {
  background: linear-gradient(135deg, var(--accent), #2a9d8f);
  box-shadow: 0 10px 30px rgba(58, 187, 179, 0.3);
}

.insight-icon-gradient {
  background: var(--bg-gradient);
  box-shadow: 0 10px 30px rgba(112, 84, 217, 0.3);
}

.insight-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.insight-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .pipeline-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .pipeline-flow-line {
    display: none;
  }
  
  .insight-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pipeline-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .stage-orb {
    width: 100px;
    height: 100px;
  }
  
  .stage-orb .material-symbols-outlined {
    font-size: 2rem;
  }
  
  .insight-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ============================================
   MOBILE NAVIGATION STYLES
   ============================================ */

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop .nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-desktop .nav-link:hover {
  color: var(--text-primary);
}

.nav-desktop .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-fast);
}

.nav-desktop .nav-link:hover::after {
  width: 100%;
}

/* Mobile Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  gap: 5px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Menu - Full Page Overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 8, 26, 0.99) 0%, rgba(12, 12, 34, 0.99) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-mobile-close:hover {
  background: rgba(112, 84, 217, 0.2);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.nav-mobile-close .material-symbols-outlined {
  font-size: 1.5rem;
}

.nav-mobile-inner {
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.nav-mobile-brand {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.nav-mobile-brand .gradient-text {
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-mobile-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.nav-mobile-section:last-of-type {
  border-bottom: none;
}

.nav-mobile-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(112, 84, 217, 0.1);
  border: 1px solid rgba(112, 84, 217, 0.2);
  border-radius: 50px;
}

.nav-mobile-label .eyebrow-icon {
  font-size: 0.875rem;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-mobile-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.875rem 0;
  transition: all var(--transition-fast);
  border-left: 2px solid transparent;
  padding-left: 1rem;
}

.nav-mobile-link:hover,
.nav-mobile-link:focus {
  color: var(--text-primary);
  border-left-color: var(--primary);
  padding-left: 1.5rem;
}

.nav-mobile-cta {
  padding-top: 2rem;
  text-align: center;
}

.nav-mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Mobile Responsive Breakpoints */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  /* Enterprise solutions - tablet */
  .solutions-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  /* Market intelligence - tablet */
  .dashboard-insights {
    grid-template-columns: 1fr;
  }
  
  .primary-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .primary-stat {
    padding: 1.25rem;
    justify-content: flex-start;
  }
  
  .primary-stat::after {
    display: none;
  }
  
  /* Technology features - tablet */
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .technology-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .features-dual-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Testimonials - tablet */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Prevent body scroll when menu is open */
body.nav-open {
  overflow: hidden;
}

/* ============================================
   ENHANCED MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
  /* Improve touch targets */
  .btn {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
  }
  
  .btn-large {
    min-height: 56px;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  /* Section titles */
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .section-eyebrow {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  /* Hero stats ribbon - vertical on mobile */
  .hero-stats-ribbon {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .stat-separator {
    width: 60%;
    height: 1px;
    margin: 0 auto;
  }
  
  .stat-highlight {
    padding: 0.75rem 0;
  }
  
  /* Enterprise solutions - mobile */
  .solutions-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .solution-item {
    padding: 1.5rem;
  }
  
  .solution-header {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .solution-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: 0.75rem;
  }
  
  .solution-header h3 {
    font-size: 1.15rem;
  }
  
  .solution-item p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .solution-tags {
    gap: 0.5rem;
  }
  
  .tag {
    padding: 0.3rem 0.65rem;
    font-size: 0.65rem;
  }
  
  /* Technology features - mobile */
  .technology-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .tech-feature {
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .tech-icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.25rem;
  }
  
  .tech-content h3 {
    font-size: 1.1rem;
  }
  
  .tech-content p {
    font-size: 0.9rem;
  }
  
  .category-features .tech-feature {
    padding: 1.25rem;
  }
  
  /* Market intelligence - mobile */
  .dashboard-primary {
    padding: 1.25rem;
  }
  
  .primary-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .primary-stat {
    padding: 1rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .primary-stat:last-child {
    border-bottom: none;
  }
  
  .primary-stat::after {
    display: none;
  }
  
  .stat-icon {
    width: 3rem;
    height: 3rem;
  }
  
  .stat-icon .material-symbols-outlined {
    font-size: 1.25rem;
  }
  
  .stat-content .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-content .stat-label {
    font-size: 0.75rem;
  }
  
  .dashboard-insights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .insight-panel {
    padding: 1.25rem;
  }
  
  .panel-header h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  
  .trend-item {
    grid-template-columns: 1.5rem 1fr 50px;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  
  .trend-rank {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.6rem;
  }
  
  .trend-title {
    font-size: 0.85rem;
  }
  
  .trend-count {
    font-size: 0.7rem;
  }
  
  .trend-indicator {
    width: 50px;
  }
  
  .market-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .metric-card {
    padding: 1.5rem;
  }
  
  .metric-value {
    font-size: 1.75rem;
  }
  
  .metric-label {
    font-size: 0.75rem;
  }
  
  /* Better card spacing */
  .tech-feature,
  .solution-item,
  .testimonial-card,
  .insight-card {
    padding: 1.5rem;
  }
  
  /* Timeline improvements */
  .timeline-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-marker {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  
  .step-connector {
    width: 40px;
    height: 2px;
  }
  
  /* Impact metrics */
  .technology-impact {
    flex-direction: column;
    gap: 1rem;
  }
  
  .impact-metric {
    padding: 1.25rem;
  }
  
  /* Market metrics */
  .market-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Success metrics */
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  /* Footer adjustments */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-brand-section {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Ultra-compact for small phones */
  .container {
    padding: 0 1rem;
  }
  
  /* Section styling */
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .section-eyebrow {
    padding: 0.4rem 0.85rem;
    font-size: 0.7rem;
    margin-bottom: 1.25rem;
  }
  
  /* Single column footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-section ul {
    padding: 0;
  }
  
  /* Single column success metrics */
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  /* Testimonials */
  .testimonial-featured {
    padding: 1.5rem;
  }
  
  .quote-mark {
    font-size: 3rem;
  }
  
  /* CTA section */
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-guarantees {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .guarantee-item {
    flex: 0 0 auto;
    font-size: 0.85rem;
  }
  
  /* Pipeline stages - vertical on mobile */
  .pipeline-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .pipeline-flow-line {
    display: none;
  }
  
  .pipeline-stage {
    text-align: center;
  }
  
  .stage-info {
    text-align: center;
  }
  
  .stage-metrics {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Enterprise section - smaller cards */
  .solution-item {
    padding: 1.25rem;
  }
  
  .solution-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .solution-header h3 {
    font-size: 1.1rem;
  }
  
  .solution-item p {
    text-align: center;
    font-size: 0.85rem;
  }
  
  .solution-tags {
    justify-content: center;
  }
  
  /* Market intelligence - compact */
  .dashboard-primary {
    padding: 1rem;
  }
  
  .primary-stat {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
  }
  
  .stat-content {
    text-align: center;
  }
  
  .stat-trend {
    margin: 0 auto;
  }
  
  .insight-panel {
    padding: 1rem;
  }
  
  .trend-item {
    grid-template-columns: 1.25rem 1fr;
    gap: 0.5rem;
  }
  
  .trend-indicator {
    display: none;
  }
  
  /* Journey slider - compact */
  .journey-tabs {
    gap: 0.5rem;
  }
  
  .journey-tab {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .journey-slider-container {
    perspective: 1000px;
  }
  
  .journey-slide:not(.active),
  .journey-slide.slide-left {
    transform: translateX(0) translateZ(-200px) rotateY(0);
    opacity: 0;
  }
  
  /* Enterprise stats */
  .enterprise-stats {
    grid-template-columns: 1fr;
  }
  
  /* Hero improvements */
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  /* Hero stats ribbon - extra compact */
  .hero-stats-ribbon {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .stat-highlight .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-highlight .stat-label {
    font-size: 0.7rem;
  }
}

/* Stat card component styles */
.stat-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all var(--transition-medium);
}

.stat-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(112, 84, 217, 0.15);
}

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
}

.stat-card .stat-content {
  flex: 1;
}

.stat-card .stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.stat-card .stat-trend {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 0.5rem;
}


.navbar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    height: 100%;
    gap: 0;
}

.navbar-logo .copy {
    display: flex;
    flex-direction: row;
    color: #5670c0;
    font-size: 26px;
    text-align: left;
    margin: 0;
    letter-spacing: 5px;
    font-weight: 800;
}

/* ========================================
   Package Pricing Section
   ======================================== */

.packages-section {
  margin-top: 0rem;
  padding-top: 2rem;
  position: relative;
  z-index: 5;
}

.packages-section .section-header,
.packages-header {
  margin-bottom: 2.5rem;
}

.packages-section .section-title,
.packages-header h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  text-align: center;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.package-card {
  position: relative;
  background: linear-gradient(165deg, rgba(15, 20, 35, 0.98), rgba(10, 15, 30, 0.95));
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

/* Animated gradient border */
.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  -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;
  transition: all 0.5s ease;
}

/* Ambient glow effect */
.package-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, transparent 30%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Core Package - Blue theme */
.package-core {
  background: linear-gradient(165deg, 
    rgba(20, 30, 60, 0.95) 0%, 
    rgba(15, 25, 50, 0.98) 50%,
    rgba(10, 20, 45, 0.95) 100%);
  border-color: rgba(86, 112, 192, 0.2);
  box-shadow: 
    0 0 0 1px rgba(86, 112, 192, 0.1),
    0 0 60px rgba(86, 112, 192, 0.15),
    0 25px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.package-core::before {
  background: linear-gradient(135deg, 
    rgba(86, 112, 192, 0.4) 0%, 
    transparent 25%, 
    transparent 75%, 
    rgba(86, 112, 192, 0.2) 100%);
}

.package-core::after {
  background: radial-gradient(ellipse at top, rgba(86, 112, 192, 0.15) 0%, transparent 60%);
  opacity: 1;
}

.package-core:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(86, 112, 192, 0.4);
  box-shadow: 
    0 0 0 1px rgba(86, 112, 192, 0.3),
    0 0 80px rgba(86, 112, 192, 0.3),
    0 40px 100px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Growth Package - Green/Teal theme */
.package-growth {
  background: linear-gradient(165deg, 
    rgba(15, 40, 40, 0.95) 0%, 
    rgba(10, 35, 35, 0.98) 50%,
    rgba(8, 30, 30, 0.95) 100%);
  border-color: rgba(58, 187, 179, 0.2);
  box-shadow: 
    0 0 0 1px rgba(58, 187, 179, 0.1),
    0 0 60px rgba(58, 187, 179, 0.15),
    0 25px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.package-growth::before {
  background: linear-gradient(135deg, 
    rgba(58, 187, 179, 0.4) 0%, 
    transparent 25%, 
    transparent 75%, 
    rgba(58, 187, 179, 0.2) 100%);
}

.package-growth::after {
  background: radial-gradient(ellipse at top, rgba(58, 187, 179, 0.15) 0%, transparent 60%);
  opacity: 1;
}

.package-growth:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(58, 187, 179, 0.4);
  box-shadow: 
    0 0 0 1px rgba(58, 187, 179, 0.3),
    0 0 80px rgba(58, 187, 179, 0.3),
    0 40px 100px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Ultimate Package - Red/Pink theme */
.package-ultimate {
  background: linear-gradient(165deg, 
    rgba(45, 15, 25, 0.95) 0%, 
    rgba(35, 12, 20, 0.98) 50%,
    rgba(30, 10, 18, 0.95) 100%);
  border-color: rgba(220, 53, 69, 0.2);
  box-shadow: 
    0 0 0 1px rgba(220, 53, 69, 0.1),
    0 0 60px rgba(220, 53, 69, 0.15),
    0 25px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.package-ultimate::before {
  background: linear-gradient(135deg, 
    rgba(220, 53, 69, 0.4) 0%, 
    transparent 25%, 
    transparent 75%, 
    rgba(220, 53, 69, 0.2) 100%);
}

.package-ultimate::after {
  background: radial-gradient(ellipse at top, rgba(220, 53, 69, 0.15) 0%, transparent 60%);
  opacity: 1;
}

.package-ultimate:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(220, 53, 69, 0.4);
  box-shadow: 
    0 0 0 1px rgba(220, 53, 69, 0.3),
    0 0 80px rgba(220, 53, 69, 0.3),
    0 40px 100px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.package-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(112, 84, 217, 0.15), rgba(58, 187, 179, 0.15));
  border: 1px solid rgba(112, 84, 217, 0.25);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.25rem 0;
}

.package-feature .material-symbols-outlined {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Color-coded feature icons */
.package-core .package-feature .material-symbols-outlined {
  color: rgba(86, 112, 192, 0.9);
}

.package-growth .package-feature .material-symbols-outlined {
  color: rgba(58, 187, 179, 0.9);
}

.package-ultimate .package-feature .material-symbols-outlined {
  color: rgba(220, 100, 120, 0.9);
}

.package-feature span:not(.material-symbols-outlined) {
  flex: 1;
  line-height: 1.4;
}

.package-feature .info-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: all 0.2s;
}

.package-feature .info-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

.package-feature .info-icon .material-symbols-outlined {
  font-size: 1rem;
  color: var(--text-muted);
}

.package-price {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

/* Gradient prices per package */
.package-core .package-price {
  background: linear-gradient(135deg, #5670c0, #8ba3e8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.package-growth .package-price {
  background: linear-gradient(135deg, #3abbb3, #6dd5cd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.package-ultimate .package-price {
  background: linear-gradient(135deg, #dc3545, #ff6b7a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.package-button {
  width: 100%;
  padding: 1.125rem 2rem;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.package-button:hover::before {
  left: 100%;
}

.package-button-core {
  background: linear-gradient(135deg, #5670c0 0%, #4560b0 50%, #3d5a9e 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(86, 112, 192, 0.3);
}

.package-button-core:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(86, 112, 192, 0.5);
}

.package-button-growth {
  background: linear-gradient(135deg, #3abbb3 0%, #32a89f 50%, #2a8f89 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(58, 187, 179, 0.3);
}

.package-button-growth:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(58, 187, 179, 0.5);
}

.package-button-ultimate {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 50%, #a71d2a 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

.package-button-ultimate:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 53, 69, 0.5);
}

/* Package Responsive */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .package-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .package-card:last-child {
    max-width: 100%;
  }
  
  .packages-section {
    margin-top: 3rem;
    padding-top: 2rem;
  }
  
  .package-card {
    padding: 1.5rem;
  }
  
  .package-price {
    font-size: 1.75rem;
  }
}