/* Enhanced Neo-Orbit Dark Theme Variables */
:root {
  --clr-bg-primary: #0A0B12;
  --clr-bg-secondary: #0F1019;
  --clr-surface: #12141F;
  --clr-surface-elevated: #161925;
  --clr-accent-1: #A855F7;
  --clr-accent-2: #3B82F6;
  --clr-accent-3: #06B6D4;
  --clr-amber: #F59E0B;
  --clr-success: #10B981;
  --clr-warning: #F97316;
  --clr-error: #EF4444;
  --clr-text-high: #F8FAFC;
  --clr-text-medium: #CBD5E1;
  --clr-text-muted: #94A3B8;
  --clr-text-subtle: #64748B;
  --clr-border: #1E293B;
  --clr-border-light: #334155;
  --clr-border-subtle: #0F172A;

  /* Rounded corner utilities */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Enhanced grid patterns */
  --grid-pattern: 
    linear-gradient(to right, rgba(168, 85, 247, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168, 85, 247, 0.08) 1px, transparent 1px);
  --dot-pattern: radial-gradient(circle, rgba(168, 85, 247, 0.15) 1px, transparent 1px);

  /* Gradient definitions */
  --gradient-primary: linear-gradient(135deg, var(--clr-accent-1), var(--clr-accent-2));
  --gradient-secondary: linear-gradient(135deg, var(--clr-accent-2), var(--clr-accent-3));
  --gradient-surface: linear-gradient(135deg, var(--clr-surface), var(--clr-surface-elevated));
  --gradient-glow: radial-gradient(circle at center, rgba(168, 85, 247, 0.2), transparent 70%);

  /* Shadow definitions */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(168, 85, 247, 0.3);
  --shadow-glow-lg: 0 0 60px rgba(168, 85, 247, 0.4);

  /* Animation durations */
  --duration-fast: 0.15s;
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;
}

/* FAQ Section Styles */
.faq-section {
  padding: 6rem 0;
  background: var(--clr-bg-secondary);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-text-high);
  margin-bottom: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faq-item {
  background: var(--clr-surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--clr-border);
  transition: all var(--duration-normal) ease;
}

.faq-item:hover {
  border-color: var(--clr-accent-1);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.faq-item h3 {
  color: var(--clr-text-high);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-item p {
  color: var(--clr-text-medium);
  line-height: 1.6;
  margin: 0;
}

/* Success Message Modal */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.success-content {
  background: var(--clr-surface);
  padding: 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 400px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xl);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.success-content h3 {
  color: var(--clr-text-high);
  margin-bottom: 1rem;
}

.success-content p {
  color: var(--clr-text-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.close-success {
  background: var(--clr-accent-1);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.close-success:hover {
  background: var(--clr-accent-2);
  transform: translateY(-1px);
}

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Enhanced Animation Curves */
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Animation Classes */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s var(--ease-smooth) forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s var(--ease-back) forwards;
}

.animate-scale-in {
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 0.5s var(--ease-elastic) forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes scaleIn {
  to { 
    opacity: 1; 
    transform: scale(1); 
  }
}

/* Enhanced Focus States */
*:focus {
  outline: 2px solid var(--clr-accent-1);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-border-light);
  border-radius: var(--radius-full);
  border: 2px solid var(--clr-bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-accent-1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--clr-text-muted);
  background: var(--clr-bg-primary);
  overflow-x: hidden;
  position: relative;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Improved text rendering */
* {
  text-rendering: optimizeLegibility;
}

/* Enhanced Background and Grid */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at center, var(--clr-bg-secondary) 0%, var(--clr-bg-primary) 100%),
    var(--grid-pattern);
  background-size: 
    120% 120%,
    120% 120%,
    100% 100%,
    60px 60px;
  z-index: -2;
  pointer-events: none;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { 
    background-position: 0% 0%, 100% 100%, center, 0 0;
  }
  50% { 
    background-position: 100% 100%, 0% 0%, center, 30px 30px;
  }
}

/* Background Blobs */
.background-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 12s ease-in-out infinite;
  mix-blend-mode: screen;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--gradient-glow);
  top: 5%;
  right: 5%;
  animation-delay: 0s;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
  bottom: 15%;
  left: 5%;
  animation-delay: 4s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 70%);
  top: 40%;
  right: 40%;
  animation-delay: 8s;
}

.blob-4 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
  top: 70%;
  left: 70%;
  animation-delay: 12s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); 
    opacity: 0.4;
  }
  25% { 
    transform: translateY(-30px) translateX(20px) rotate(90deg) scale(1.1); 
    opacity: 0.6;
  }
  50% { 
    transform: translateY(0px) translateX(40px) rotate(180deg) scale(1); 
    opacity: 0.3;
  }
  75% { 
    transform: translateY(30px) translateX(20px) rotate(270deg) scale(0.9); 
    opacity: 0.5;
  }
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--clr-text-high);
  line-height: 1.2;
  position: relative;
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 4.5rem); 
  font-weight: 800;
  letter-spacing: -0.03em;
}
h2 { 
  font-size: clamp(2rem, 4vw, 3.5rem); 
  font-weight: 700;
}
h3 { 
  font-size: clamp(1.5rem, 3vw, 2.25rem); 
  font-weight: 600;
}
h4 { 
  font-size: clamp(1.25rem, 2.5vw, 1.75rem); 
  font-weight: 600;
}

/* Enhanced text effects */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow {
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Enhanced paragraph variants */
.lead-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--clr-text-medium);
  line-height: 1.8;
}

.caption-text {
  font-size: 0.875rem;
  color: var(--clr-text-subtle);
  line-height: 1.5;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utilities */
.angled {
  border-radius: var(--radius-xl);
}

/* Enhanced Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid var(--clr-accent-1);
  color: var(--clr-text-high);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--duration-normal) cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left var(--duration-slow) cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-primary:hover {
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), var(--shadow-xl);
  color: var(--clr-text-high);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 32px;
  background: var(--gradient-primary);
  border: 2px solid transparent;
  color: var(--clr-text-high);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--duration-normal) cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.btn-solid::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 var(--duration-slow);
  z-index: 1;
}

.btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-lg), var(--shadow-xl);
}

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

.btn-solid:active {
  transform: translateY(-1px);
}

/* Enhanced Navigation */
.nav-wrap {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1160px;
  background: rgba(18, 20, 31, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  z-index: 1000;
  padding: 0 2rem;
  box-shadow: var(--shadow-xl), 0 0 40px rgba(168, 85, 247, 0.1);
  transition: all var(--duration-normal) ease;
}

.nav-wrap:hover {
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-lg);
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background-color: rgba(168, 85, 247, 0.1);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--clr-text-high);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--clr-text-high);
  text-decoration: none;
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 23, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-links.active {
    left: 0;
    visibility: visible;
    opacity: 1;
  }
  
  .nav-toggle {
    display: flex;
  }
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-text-high);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-accent-1);
  border-radius: 2px;
}

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

.phone-badge {
  padding: 8px 16px;
  background: var(--clr-amber);
  color: var(--clr-bg-primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1300px;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(158, 123, 255, 0.1);
  border: 1px solid rgba(158, 123, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-accent-1);
  margin-bottom: 2rem;
  animation: badgeFloat 3s ease-in-out infinite;
}

.badge-icon {
  font-size: 1rem;
}

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

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.highlight {
  background: linear-gradient(135deg, var(--clr-accent-1), var(--clr-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--clr-accent-1), var(--clr-accent-2));
  border-radius: 2px;
  opacity: 0.5;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--clr-text-muted);
  max-width: 90%;
}

.count {
  color: var(--clr-accent-1);
  font-weight: 700;
  text-shadow: 0 0 12px var(--clr-accent-2);
}

.count.glow {
  animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
  0% { 
    text-shadow: 0 0 12px var(--clr-accent-2);
    transform: scale(1);
  }
  100% { 
    text-shadow: 0 0 20px var(--clr-accent-1), 0 0 30px var(--clr-accent-2);
    transform: scale(1.05);
  }
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text-high);
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
  transition: left var(--duration-slow);
}

.feature-item:hover {
  border-color: var(--clr-accent-1);
  background: rgba(168, 85, 247, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.feature-item:hover::before {
  left: 100%;
}

.feature-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.5));
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 32px;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.btn-solid::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.6s;
}

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

.btn-arrow {
  transition: transform 0.3s ease;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 24px;
  font-size: 1.1rem;
}

.phone-icon {
  font-size: 1rem;
}

.hero-social-proof {
  margin-top: 2rem;
}

.proof-text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.company-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.company-logo {
  padding: 0.5rem 1rem;
  background: rgba(245, 246, 250, 0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: all 0.3s ease;
}

.company-logo:hover {
  background: rgba(158, 123, 255, 0.1);
  border-color: var(--clr-accent-1);
  color: var(--clr-accent-1);
}

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

.phone-mockup {
  width: 320px;
  height: 640px;
  background: var(--gradient-surface);
  border: 3px solid var(--clr-border-light);
  border-radius: 48px;
  position: relative;
  box-shadow: 
    var(--shadow-glow-lg),
    var(--shadow-xl),
    inset 0 1px 0 rgba(248, 250, 252, 0.1);
  animation: phoneFloat 8s ease-in-out infinite;
  overflow: hidden;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    linear-gradient(225deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  border-radius: 45px;
  pointer-events: none;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: var(--clr-border-light);
  border-radius: var(--radius-full);
}

.phone-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
  border-radius: 60px;
  z-index: -1;
  animation: pulseGlow 3s ease-in-out infinite;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-card {
  position: absolute;
  padding: 12px 16px;
  background: rgba(18, 20, 31, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-high);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  animation: floatingElement 4s ease-in-out infinite;
}

.card-icon {
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

.card-text {
  white-space: nowrap;
}

@keyframes phoneFloat {
  0%, 100% { 
    transform: translateY(0) rotate(2deg) scale(1); 
    box-shadow: 
      var(--shadow-glow-lg),
      var(--shadow-xl),
      inset 0 1px 0 rgba(248, 250, 252, 0.1);
  }
  50% { 
    transform: translateY(-15px) rotate(-1deg) scale(1.02); 
    box-shadow: 
      0 0 80px rgba(168, 85, 247, 0.5),
      var(--shadow-xl),
      inset 0 1px 0 rgba(248, 250, 252, 0.1);
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--clr-bg-primary);
  border-radius: 32px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.call-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.caller-info {
  text-align: center;
  margin-bottom: 2rem;
}

.caller-avatar {
  width: 80px;
  height: 80px;
  background: var(--clr-accent-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--clr-accent-1); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 20px transparent; }
}

.caller-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text-high);
  margin-bottom: 0.25rem;
}

.caller-number {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.call-status {
  text-align: center;
  padding: 1rem;
  background: rgba(158, 123, 255, 0.1);
  border: 1px solid rgba(158, 123, 255, 0.3);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  background: var(--clr-success);
  border-radius: 50%;
}

.pulsing {
  animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.response-time {
  text-align: center;
  padding: 1.5rem;
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
}

.time-counter {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-accent-1);
  margin-bottom: 0.5rem;
  animation: timeCount 3s ease-in-out infinite;
}

@keyframes timeCount {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.response-time span:last-child {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .hero-description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-features {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .phone-mockup {
    width: 280px;
    height: 560px;
    margin: 0 auto;
  }

  .company-logos {
    justify-content: center;
  }

  /* Mobile navigation */
  .nav-wrap {
    padding: 1rem 0;
  }

  .nav-actions {
    display: none;
  }

  /* Mobile sections */
  .benefits,
  .how-it-works,
  .channel-matrix,
  .integrations {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .section-header p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

/* AI Voice Demo Section */
.ai-voice-demo {
    padding: 80px 0;
    background: var(--clr-bg-secondary);
    position: relative;
    overflow: hidden;
}

.ai-voice-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.demo-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--clr-text-high);
}

.demo-text p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 90%;
}

.audio-player-container {
    background: var(--gradient-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    transition: all var(--duration-normal) ease;
    position: relative;
    overflow: hidden;
}

.audio-player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.audio-player-container:hover {
    border-color: var(--clr-accent-1);
    box-shadow: var(--shadow-glow), var(--shadow-xl);
    transform: translateY(-4px);
}

.audio-player-container:hover::before {
    opacity: 1;
}

.ai-voice-player {
    width: 100%;
    height: 50px;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    filter: hue-rotate(270deg) saturate(1.2) brightness(1.1);
}

.ai-voice-player::-webkit-media-controls-panel {
    background-color: rgba(168, 85, 247, 0.1);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.player-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.3));
}

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

.player-title {
    font-weight: 600;
    color: var(--clr-text-high);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.player-subtitle {
    color: var(--clr-accent-1);
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .ai-voice-demo {
        padding: 60px 0;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .demo-text h2 {
        font-size: 2rem;
    }
    
    .demo-text p {
        max-width: 100%;
    }
    
    .audio-player-container {
        padding: 2rem;
    }
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--gradient-surface);
  border: 1px solid var(--clr-border);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.benefit-card:hover {
  border-color: var(--clr-accent-1);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow), var(--shadow-xl);
}

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

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.3));
  transition: all var(--duration-normal) ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6));
}

.benefit-card h3 {
  margin-bottom: 1rem;
  color: var(--clr-text-high);
  position: relative;
  z-index: 1;
}

/* Channel Matrix */
.channel-matrix {
  padding: 80px 0;
  text-align: center;
}

.channel-matrix h2 {
  margin-bottom: 0.5rem;
}

.channel-matrix p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.channels-visual {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  height: 400px;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.connection-line {
  stroke: var(--clr-accent-1);
  stroke-width: 2;
  fill: none;
  opacity: 0.6;
  stroke-dasharray: 5;
  animation: dashFlow 3s linear infinite;
  transition: all 0.3s ease;
}

.connection-line:hover {
  stroke-width: 3;
  opacity: 1;
  stroke: var(--clr-accent-2);
  filter: drop-shadow(0 0 8px var(--clr-accent-2));
}

.connection-pulse {
  fill: var(--clr-accent-1);
  opacity: 0;
  animation: pulse-flow 2s ease-in-out infinite;
}

@keyframes dashFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 20; }
}

@keyframes pulse-flow {
  0%, 100% { opacity: 0; r: 3; }
  50% { opacity: 1; r: 6; }
}

.center-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--clr-surface);
  border: 2px solid var(--clr-accent-1);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(158, 123, 255, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

.center-hub:hover {
  box-shadow: 0 0 50px rgba(158, 123, 255, 0.5);
  transform: translate(-50%, -50%) scale(1.05);
}

.dialio-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-accent-1);
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.channel-nodes {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.channel-node {
  position: absolute;
  padding: 12px 16px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text-high);
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
}

.channel-node:hover {
  border-color: var(--clr-accent-1);
  background: rgba(158, 123, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(158, 123, 255, 0.3);
}

.channel-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.channel-node:nth-child(2) { top: 25%; right: 0; }
.channel-node:nth-child(3) { bottom: 25%; right: 0; }
.channel-node:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.channel-node:nth-child(5) { top: 25%; left: 0; }

/* How it Works */
.how-it-works {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--clr-text-high);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.steps-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-connector-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-accent-1), var(--clr-accent-2));
  transform: translateX(-50%);
  opacity: 0.3;
  z-index: 1;
}

.enhanced-step {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem;
  background: var(--gradient-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
  transition: all var(--duration-slow) cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.enhanced-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  transition: left var(--duration-slow) ease;
  z-index: -1;
}

.enhanced-step:hover {
  border-color: var(--clr-accent-1);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-xl);
}

.enhanced-step:hover::before {
  left: 0;
}

.enhanced-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-visual {
  flex: 0 0 150px;
  height: 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 3rem;
  z-index: 3;
  position: relative;
}

.step-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Step 1 Animation */
.connection-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--clr-accent-1);
  border-radius: 50%;
  animation: connectionPulse 2s infinite;
}

.connection-dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.connection-dot:nth-child(2) {
  top: 60%;
  right: 30%;
  animation-delay: 0.7s;
}

.connection-dot:nth-child(3) {
  bottom: 25%;
  left: 40%;
  animation-delay: 1.4s;
}

@keyframes connectionPulse {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Step 2 Animation */
.data-flow {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent-2), transparent);
  animation: dataFlow 3s infinite;
}

.knowledge-nodes {
  position: absolute;
  inset: 0;
}

.knowledge-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--clr-accent-2);
  border-radius: 50%;
  animation: nodeGlow 2s infinite alternate;
}

.knowledge-node:nth-child(1) {
  top: 30%;
  left: 30%;
  animation-delay: 0s;
}

.knowledge-node:nth-child(2) {
  top: 70%;
  right: 20%;
  animation-delay: 0.7s;
}

.knowledge-node:nth-child(3) {
  bottom: 40%;
  left: 60%;
  animation-delay: 1.4s;
}

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

@keyframes nodeGlow {
  0% { 
    opacity: 0.5;
    box-shadow: 0 0 5px var(--clr-accent-2);
  }
  100% { 
    opacity: 1;
    box-shadow: 0 0 15px var(--clr-accent-2);
  }
}

/* Step 3 Animation */
.dashboard-preview {
  position: absolute;
  inset: 20%;
  background: rgba(158, 123, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-accent-1);
  padding: 10px;
}

.live-indicator {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  background: #00ff00;
  border-radius: 50%;
  animation: liveBlink 1s infinite;
}

.conversation-lines {
  margin-top: 15px;
}

.conv-line {
  height: 3px;
  background: var(--clr-accent-1);
  margin: 4px 0;
  border-radius: 2px;
  animation: typeWriter 3s infinite;
}

.conv-line:nth-child(1) { width: 80%; animation-delay: 0s; }
.conv-line:nth-child(2) { width: 60%; animation-delay: 1s; }
.conv-line:nth-child(3) { width: 90%; animation-delay: 2s; }

@keyframes liveBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

@keyframes typeWriter {
  0% { width: 0; }
  50% { width: var(--final-width, 80%); }
  100% { width: var(--final-width, 80%); }
}

.step-content {
  flex: 1;
  text-align: left;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--clr-accent-1), var(--clr-accent-2));
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--clr-text-high);
}

.step-content p {
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  padding: 0.4rem 0.8rem;
  background: rgba(158, 123, 255, 0.1);
  color: var(--clr-accent-1);
  border: 1px solid rgba(158, 123, 255, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.how-it-works-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.btn-outline {
  padding: 12px 24px;
  border: 2px solid var(--clr-accent-1);
  background: transparent;
  color: var(--clr-accent-1);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--clr-accent-1);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .enhanced-step {
    flex-direction: column !important;
    text-align: center;
    gap: 2rem;
  }

  .enhanced-step:nth-child(even) {
    flex-direction: column !important;
  }

  .step-connector-line {
    display: none;
  }

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

  .how-it-works-cta {
    flex-direction: column;
    align-items: center;
  }
}

/* Metrics */
.metrics {
  padding: 80px 0;
  background: var(--clr-surface);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-accent-1);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 12px var(--clr-accent-2);
}

.metric-label {
  font-size: 1rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Integrations */
.integrations {
  padding: 80px 0;
  text-align: center;
}

.integrations h2 {
  margin-bottom: 0.5rem;
}

.integrations p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.integration-map {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 400px;
}

.integration-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.integration-line {
  stroke: var(--clr-accent-2);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.4;
  stroke-dasharray: 8;
  animation: integrationFlow 4s linear infinite;
  transition: all 0.3s ease;
}

.integration-line:hover {
  stroke-width: 2.5;
  opacity: 0.8;
  stroke: var(--clr-accent-1);
  filter: drop-shadow(0 0 6px var(--clr-accent-1));
}

.integration-pulse {
  fill: var(--clr-accent-2);
  opacity: 0;
  animation: integration-pulse 3s ease-in-out infinite;
}

@keyframes integrationFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 32; }
}

@keyframes integration-pulse {
  0%, 100% { opacity: 0; r: 2; }
  50% { opacity: 0.8; r: 4; }
}

.integration-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.dialio-hub {
  width: 96px;
  height: 96px;
  background: var(--clr-surface);
  border: 2px solid var(--clr-accent-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(158, 123, 255, 0.3);
  transition: all 0.3s ease;
}

.dialio-hub:hover {
  box-shadow: 0 0 45px rgba(158, 123, 255, 0.5);
  transform: scale(1.1);
}

.integration-partners {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
  z-index: 2;
}

.partner {
  padding: 12px 16px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  font-weight: 600;
  color: var(--clr-text-high);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner:hover {
  border-color: var(--clr-accent-1);
  transform: translateY(-3px);
  background: rgba(158, 123, 255, 0.1);
  box-shadow: 0 6px 20px rgba(158, 123, 255, 0.2);
}

/* CTA Banner */
.cta-banner {
  padding: 80px 0;
  background: var(--clr-surface);
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 2rem;
}

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

.cta-or {
  color: var(--clr-text-muted);
  font-weight: 600;
}

.phone-link {
  color: var(--clr-accent-1);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: var(--clr-text-high);
}

/* Footer */
.footer {
  padding: 60px 0 20px;
  background: var(--clr-bg-primary);
  border-top: 1px solid var(--clr-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--clr-text-muted);
}

.link-group h4 {
  color: var(--clr-text-high);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.link-group a {
  display: block;
  color: var(--clr-text-muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.link-group a:hover {
  color: var(--clr-text-high);
}

/* Footer Newsletter */
.footer-newsletter {
    flex: 1;
    max-width: 300px;
}

.footer-newsletter h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Social Media Links */
.social-links h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

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

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--clr-text-high);
}

/* Page Header */
.page-header {
  padding: 140px 0 80px;
  text-align: center;
}

.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--clr-text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--clr-accent-1);
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: var(--clr-accent-1);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Styles */
.pricing-section {
  padding: 80px 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  margin-bottom: 1rem;
}

.pricing-header p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--clr-surface);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  display: inline-flex;
}

.toggle-btn {
  padding: 12px 24px;
  background: transparent;
  border: none;
  color: var(--clr-text-muted);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.toggle-btn.active {
  background: var(--clr-accent-1);
  color: white;
}

.discount-badge {
  background: var(--clr-success);
  color: var(--clr-bg-primary);
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.2s ease;
}

.pricing-card:hover {
  border-color: var(--clr-accent-1);
  transform: translateY(-6px);
}

.pricing-card.featured {
  border-color: var(--clr-accent-1);
  box-shadow: 0 20px 40px rgba(158, 123, 255, 0.2);
}

.best-offer-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-amber);
  color: var(--clr-bg-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

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

.plan-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card-header h3 {
  margin-bottom: 0.5rem;
}

.card-header p {
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.pricing-info {
  text-align: center;
  margin-bottom: 2rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  color: var(--clr-text-muted);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-text-high);
  margin: 0 0.25rem;
}

.period {
  color: var(--clr-text-muted);
}

.volume-discount {
  font-size: 0.9rem;
  color: var(--clr-success);
}

.features h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  padding: 0.5rem 0;
  color: var(--clr-text-muted);
}

.plan-cta {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* Feature Comparison */
.feature-comparison {
  padding: 80px 0;
  background: var(--clr-surface);
}

.feature-comparison h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--clr-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--clr-surface);
  padding: 1.5rem;
  border-bottom: 1px solid var(--clr-border);
  font-weight: 600;
  color: var(--clr-text-high);
}

.table-section {
  border-bottom: 1px solid var(--clr-border);
}

.section-header {
  padding: 1rem 1.5rem;
  background: var(--clr-surface);
  font-weight: 600;
  color: var(--clr-text-high);
  border-bottom: 1px solid var(--clr-border);
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--clr-border);
}

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

.feature-name {
  color: var(--clr-text-high);
}

.feature-value {
  text-align: center;
  color: var(--clr-text-muted);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

@import url('variables.css');

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--clr-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: var(--clr-text-high);
}

/* Contact Styles */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper h2 {
  margin-bottom: 2rem;
}

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

.service-option {
  padding: 1rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-option:hover,
.service-option.active {
  border-color: var(--clr-accent-1);
  background: rgba(158, 123, 255, 0.1);
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-option span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text-high);
}

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

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

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

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--clr-text-high);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  background: var(--clr-surface);
  color: var(--clr-text-high);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent-1);
}

.submit-btn {
  padding: 1rem 2rem;
  margin-top: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sophie-card {
  background: var(--clr-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}

.sophie-card h3 {
  margin-bottom: 1rem;
  color: var(--clr-text-high);
}

.phone-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--clr-bg-primary);
  border-radius: var(--radius-md);
}

.phone-icon {
  font-size: 2rem;
}

.phone-number {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-accent-1);
}

.phone-status {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.sample-transcript {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--clr-bg-primary);
  border-radius: var(--radius-md);
}

.sample-transcript h4 {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--clr-text-high);
}

.transcript-line {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

.transcript-line strong {
  color: var(--clr-accent-1);
}

.call-sophie-btn {
  width: 100%;
  margin-top: 1rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-content h4 {
  margin-bottom: 0.5rem;
  color: var(--clr-text-high);
}

.contact-content p {
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.success-content {
  background: var(--clr-surface);
  padding: 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 400px;
  margin: 2rem;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-content h3 {
  margin-bottom: 1rem;
  color: var(--clr-text-high);
}

.close-success {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: var(--clr-accent-1);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  color: var(--clr-text-high);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-accent-1);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: var(--clr-border-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-text-muted);
  font-style: italic;
}

/* Enhanced select styling */
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group select option {
  background: var(--clr-surface);
  color: var(--clr-text-high);
  padding: 8px 12px;
}

/* Textarea specific styling */
.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

/* URL input specific styling */
.form-group input[type="url"] {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'%3e%3c/path%3e%3cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group input[type="url"]:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'%3e%3c/path%3e%3cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'%3e%3c/path%3e%3c/svg%3e");
}

/* Phone input styling */
.form-group input[type="tel"] {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group input[type="tel"]:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3e%3c/path%3e%3c/svg%3e");
}

/* Email input styling */
.form-group input[type="email"] {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3e%3c/path%3e%3cpolyline points='22,6 12,13 2,6'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group input[type="email"]:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3e%3c/path%3e%3cpolyline points='22,6 12,13 2,6'%3e%3c/polyline%3e%3c/svg%3e");
}

/* Checkbox styling */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--clr-text-medium);
  margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--clr-border);
  border-radius: 4px;
  background: var(--clr-surface);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--clr-accent-1);
  border-color: var(--clr-accent-1);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-label input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

/* Submit button enhanced styling */
.submit-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), var(--shadow-xl);
}

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

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown) {
  border-color: var(--clr-success);
}

/* Loading state for submit button */
.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Sophie Card */
.sophie-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.sophie-card h3 {
  margin-bottom: 0.5rem;
}

.sophie-card p {
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.phone-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--clr-bg-primary);
  border-radius: var(--radius-lg);
}

.phone-icon {
  font-size: 2rem;
}

.phone-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-text-high);
}

.phone-status {
  font-size: 0.9rem;
  color: var(--clr-success);
}

.sample-transcript {
  margin-bottom: 1.5rem;
}

.sample-transcript h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.transcript-line {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.transcript-line strong {
  color: var(--clr-text-high);
}

.call-sophie-btn {
  width: 100%;
  text-align: center;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  flex-shrink: 0;
}

.contact-content h4 {
  margin-bottom: 0.5rem;
  color: var(--clr-text-high);
}

.contact-content p {
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 19, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.success-content {
  background: var(--clr-surface);
  padding: 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 400px;
  border: 1px solid var(--clr-border);
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-content h3 {
  margin-bottom: 1rem;
  color: var(--clr-text-high);
}

.success-content p {
  margin-bottom: 2rem;
  color: var(--clr-text-muted);
}

.close-success {
  padding: 12px 24px;
  background: var(--clr-accent-1);
  border: none;
  color: white;
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-weight: 600;
}

/* How it Works Page Styles */
.steps-overview {
  padding: 40px 0;
}

.steps-timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-width: 200px;
}

.timeline-step:hover,
.timeline-step.active {
  border-color: var(--clr-accent-1);
  background: rgba(158, 123, 255, 0.1);
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -2rem;
  width: 2rem;
  height: 2px;
  background: var(--clr-border);
  z-index: -1;
}

.timeline-step:last-child .step-connector {
  display: none;
}

.step-content .step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.step-details {
  padding: 80px 0;
}

.step-detail {
  display: none;
}

.step-detail.active {
  display: block;
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.step-content h2 {
  margin-bottom: 1.5rem;
}

.step-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.step-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.feature-item .feature-icon {
  font-size: 1.5rem;
  width: 40px;
  flex-shrink: 0;
}

.feature-text h4 {
  margin-bottom: 0.5rem;
  color: var(--clr-text-high);
}

.feature-text p {
  color: var(--clr-text-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Step Visuals */
.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.training-interface,
.analytics-dashboard {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.dashboard-header,
.training-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.dashboard-title {
  font-weight: 600;
  color: var(--clr-text-high);
}

.dashboard-status {
  font-size: 0.8rem;
  color: var(--clr-success);
}

.connection-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.connection-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--clr-bg-primary);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.connection-icon {
  margin-right: 0.5rem;
}

.status-badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--clr-success);
  color: var(--clr-bg-primary);
}

.status-badge:contains("Pending") {
  background: var(--clr-amber);
}

.training-sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.training-section h4 {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--clr-text-high);
}

.source-item {
  padding: 0.5rem;
  background: var(--clr-bg-primary);
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.quality-meter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--clr-bg-primary);
  border-radius: var(--radius-lg);
}

.quality-bar {
  height: 6px;
  background: var(--clr-success);
  border-radius: 3px;
  flex: 1;
}

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

.metric-card {
  padding: 1rem;
  background: var(--clr-bg-primary);
  border-radius: var(--radius-md);
  text-align: center;
}

.metric-card .metric-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-accent-1);
  margin-bottom: 0.25rem;
}

.metric-card .metric-label {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
}

.live-transcript {
  border-top: 1px solid var(--clr-border);
  padding-top: 1rem;
}

.transcript-header {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text-high);
  margin-bottom: 0.75rem;
}

.transcript-message {
  padding: 0.5rem 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.transcript-message strong {
  color: var(--clr-text-high);
}

.typing-indicator {
  color: var(--clr-accent-1);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Legal Pages Styles */
.legal-page {
  padding: 140px 0 80px 0;
  background: var(--clr-bg-primary);
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--clr-border);
}

.legal-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-text-high);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  color: var(--clr-text-muted);
  font-size: 1rem;
  font-style: italic;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-content section {
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-text-high);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--clr-accent-1);
}

.legal-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-text-high);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-content p {
  color: var(--clr-text-medium);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  color: var(--clr-text-medium);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.legal-content a {
  color: var(--clr-accent-1);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.legal-content a:hover {
  color: var(--clr-accent-2);
  text-decoration: underline;
}

.legal-content strong {
  color: var(--clr-text-high);
  font-weight: 600;
}

/* Mobile optimizations for legal pages */
@media (max-width: 768px) {
  .legal-header h1 {
    font-size: 2.5rem;
  }
  
  .legal-content {
    padding: 0 1rem;
  }
  
  .legal-content h2 {
    font-size: 1.5rem;
  }
  
  .legal-content h3 {
    font-size: 1.25rem;
  }
}

/* Solutions Page Styles */
.industry-solutions {
  padding: 80px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
}

.solution-card:hover {
  border-color: var(--clr-accent-1);
  transform: translateY(-6px);
}

.solution-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.solution-card h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.solution-card > p {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--clr-text-muted);
}

.solution-features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.solution-features li {
  padding: 0.5rem 0;
  color: var(--clr-text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.solution-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-success);
  font-weight: bold;
}

.solution-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--clr-border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-accent-1);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Case Studies */
.use-case-deep-dive {
  padding: 80px 0;
  background: var(--clr-surface);
}

.use-case-deep-dive h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.case-studies {
  display: grid;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.case-study {
  background: var(--clr-bg-primary);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.case-study-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.company-logo {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-info h3 {
  margin-bottom: 0.25rem;
}

.company-info p {
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.case-study-challenge,
.case-study-solution {
  margin-bottom: 2rem;
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-results h4 {
  margin-bottom: 1rem;
  color: var(--clr-text-high);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.result-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
}

.result-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-accent-1);
  display: block;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

/* Integration Showcase */
.integration-showcase {
  padding: 80px 0;
}

.integration-showcase h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.integration-showcase p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.integration-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.integration-category h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--clr-text-high);
}

.integration-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.integration-item {
  padding: 1rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 600;
  color: var(--clr-text-high);
  transition: all 0.2s ease;
}

.integration-item:hover {
  border-color: var(--clr-accent-1);
  transform: translateY(-2px);
}

/* Resources Page Styles */
.resource-categories {
  padding: 40px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-card:hover,
.category-card.active {
  border-color: var(--clr-accent-1);
  background: rgba(158, 123, 255, 0.1);
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.category-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.featured-resources {
  padding: 60px 0;
  background: var(--clr-surface);
}

.featured-resources h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.featured-resource {
  background: var(--clr-bg-primary);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
}

.featured-resource:hover {
  border-color: var(--clr-accent-1);
  transform: translateY(-4px);
}

.resource-image {
  height: 200px;
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.resource-placeholder {
  width: 80px;
  height: 80px;
  background: var(--clr-accent-1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.resource-type {
  font-size: 0.8rem;
}

.resource-content {
  padding: 2rem;
}

.resource-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.resource-category {
  color: var(--clr-accent-1);
  font-weight: 600;
}

.resource-date {
  color: var(--clr-text-muted);
}

.resource-content h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.resource-content p {
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.resource-link {
  color: var(--clr-accent-1);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.resource-link:hover {
  color: var(--clr-text-high);
}

.resource-library {
  padding: 80px 0;
}

.library-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.library-filters {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.filter-select {
  padding: 8px 12px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  color: var(--clr-text-high);
  font-family: inherit;
}

.search-box {
  display: flex;
  align-items: center;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.search-input {
  padding: 8px 12px;
  background: transparent;
  border: none;
  color: var(--clr-text-high);
  outline: none;
  width: 200px;
}

.search-input::placeholder {
  color: var(--clr-text-muted);
}

.search-btn {
  padding: 8px 12px;
  background: var(--clr-accent-1);
  border: none;
  color: white;
  cursor: pointer;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.resource-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
}

.resource-item:hover {
  border-color: var(--clr-accent-1);
  transform: translateY(-2px);
}

.resource-item .resource-icon {
  font-size: 2rem;
  width: 60px;
  flex-shrink: 0;
}

.resource-info {
  flex: 1;
}

.resource-info .resource-type {
  display: inline-block;
  padding: 2px 8px;
  background: var(--clr-accent-1);
  color: white;
  font-size: 0.7rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.resource-info h4 {
  margin-bottom: 0.5rem;
  color: var(--clr-text-high);
  font-size: 1.1rem;
}

.resource-info p {
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.download-link {
  color: var(--clr-accent-1);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.download-link:hover {
  color: var(--clr-text-high);
}

.newsletter-section {
  padding: 80px 0;
  background: var(--clr-surface);
  text-align: center;
}

.newsletter-content h2 {
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--clr-text-muted);
}

.newsletter-signup {
  max-width: 500px;
  margin: 0 auto;
}

.signup-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.signup-group input {
  flex: 1;
  padding: 12px;
  background: var(--clr-bg-primary);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  color: var(--clr-text-high);
  font-family: inherit;
}

.signup-group input::placeholder {
  color: var(--clr-text-muted);
}

.newsletter-note {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

/* About Page Styles */
.mission-vision {
  padding: 80px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

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

.mission-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.mission-item h2 {
  margin-bottom: 1.5rem;
}

.mission-item p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
}

.story-section {
  padding: 80px 0;
  background: var(--clr-surface);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-content h2 {
  margin-bottom: 2rem;
}

.story-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.values-section {
  padding: 80px 0;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.2s ease;
}

.value-card:hover {
  border-color: var(--clr-accent-1);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--clr-text-high);
}

.value-card p {
  color: var(--clr-text-muted);
}

.team-section {
  padding: 80px 0;
  background: var(--clr-surface);
}

.team-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.team-section > p {
  text-align: center;
  color: var(--clr-text-muted);
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.member-avatar {
  margin-bottom: 1.5rem;
}

.avatar-placeholder {
  width: 120px;
  height: 120px;
  background: var(--clr-accent-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
}

.member-info h3 {
  margin-bottom: 0.25rem;
  color: var(--clr-text-high);
}

.member-role {
  color: var(--clr-accent-1);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

.company-stats {
  padding: 80px 0;
}

.company-stats h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-accent-1);
  margin-bottom: 0.5rem;
  display: block;
  text-shadow: 0 0 12px var(--clr-accent-2);
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.careers-section {
  padding: 80px 0;
  background: var(--clr-surface);
  text-align: center;
}

.careers-content h2 {
  margin-bottom: 1rem;
}

.careers-content p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
}

.careers-cta {
  max-width: 400px;
  margin: 0 auto;
}

.careers-note {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav-wrap {
    top: 10px;
    width: calc(100% - 20px);
    padding: 0 1rem;
    border-radius: var(--radius-xl);
  }

  .nav-content {
    padding: 0.75rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 20, 31, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-xl);
    margin-top: 8px;
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: var(--shadow-xl);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
  }

  .nav-links a:hover {
    background-color: rgba(168, 85, 247, 0.1);
  }

  .nav-actions {
    margin-left: auto;
  }

  .phone-badge {
    display: none;
  }

  /* Enhanced touch targets */
  .btn-primary,
  .btn-solid {
    min-height: 44px;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .benefits-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

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

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

  .integration-partners {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .table-header,
  .table-row {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    font-size: 0.8rem;
  }

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

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

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

  .steps-timeline {
    flex-direction: column;
    align-items: stretch;
  }

  .step-connector {
    display: none;
  }

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

  .step-visual {
    order: -1;
  }

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

  .integration-categories {
    grid-template-columns: 1fr;
  }

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

  .library-header {
    flex-direction: column;
    align-items: stretch;
  }

  .library-filters {
    justify-content: center;
  }

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

  .signup-group {
    flex-direction: column;
  }

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

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

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

@media (max-width: 480px) {
  /* Ultra-mobile optimizations */
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-item {
    width: 100%;
    justify-content: center;
  }

  .stats-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .integration-partners {
    grid-template-columns: 1fr;
  }

  .table-header,
  .table-row {
    display: block;
    padding: 1rem;
  }

  .table-header > *,
  .table-row > * {
    display: block;
    padding: 0.25rem 0;
  }

  .feature-name::before {
    content: "Feature: ";
    font-weight: 600;
  }

  .feature-value::before {
    content: "Value: ";
    font-weight: 600;
  }

  /* Enhanced mobile typography */
  .page-header h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Better mobile spacing */
  .hero {
    padding: 100px 0 60px;
  }

  .benefit-card,
  .solution-card {
    padding: 2rem 1.5rem;
  }

  /* Improved mobile forms */
  .form-group input,
  .form-group textarea,
  .form-group select {
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .blob {
    animation: none;
  }

  .count {
    text-shadow: none;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
  :root {
    --clr-text-muted: #CCCCCC;
    --clr-border: #444444;
  }
}

/* Print Styles */
@media print {
  .nav-wrap,
  .phone-badge,
  .cta-banner,
  .background-blobs {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    padding-top: 2rem;
  }
}