/* Add these rules at the top of your styles.css file */
html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Fix SVG overflow issues */
svg {
  max-width: 100%;
}

/* Ensure containers are properly constrained */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* Fix for long SVG paths in footer */
.social-link svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  max-width: 100%;
}

/* Base Styles */
:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #6366f1;
  --dark: #0f172a;
  --dark-secondary: #1e293b;
  --light: #e2e8f0;
  --light-bg: #1e293b;
  --text-secondary: #94a3b8;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  /* Mobile-First Spacing System - 8-Point Grid */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  
  /* Touch Target Standards */
  --min-touch: 48px;
  --min-touch-sm: 44px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  color: var(--light);
  background-color: var(--dark);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  min-height: 44px; /* Minimum touch target for mobile */
  min-width: 44px;
  text-decoration: none;
  border: none;
  position: relative;
  /* Ensure the entire button area is clickable */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--gray-light);
  padding: 0.5rem 1rem;
}

.btn-text:hover {
  color: white;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-light);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: white;
}

.nav-link.coming-soon {
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-link.coming-soon small {
  font-size: 0.65rem;
  opacity: 0.7;
  font-weight: normal;
}

.nav-link.coming-soon:hover {
  color: var(--text-secondary);
}

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

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 100px;
  overflow: hidden;
}

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

.gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(125deg, #0a0e1a 0%, #1a1f35 50%, #252d54 100%);
}

.stars-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 80px 80px, 150px 150px, 200px 200px;
  background-position: 0 0, 40px 60px, 100px 30px;
  animation: twinkle 8s infinite alternate ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.shape-1 {
  top: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, rgba(79, 70, 229, 0) 70%);
  animation: float 20s infinite alternate ease-in-out;
}

.shape-2 {
  bottom: 20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0) 70%);
  animation: float 25s infinite alternate-reverse ease-in-out;
}

.shape-3 {
  top: 40%;
  left: 30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0) 70%);
  animation: float 15s infinite alternate ease-in-out;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: 30px;
  font-size: 0.875rem;
  color: var(--primary-light);
  margin-bottom: 2rem;
}

.hero-badge span {
  background: var(--primary);
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

.hero-badge a {
  color: var(--primary-light);
  font-weight: 500;
  margin-left: 0.25rem;
}

.hero-badge a:hover {
  text-decoration: underline;
}

.hero-content {
  max-width: 1240px;
  margin: 0 auto;
  z-index: 10;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  margin-bottom: 16px;
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.4;
}

.hero-description {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

.hero-cta {
  margin-top: 8px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.waitlist-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.form-content {
  width: 100%;
}

.form-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.waitlist-form {
  margin-bottom: 1rem;
}

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

.form-group input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Browser mockup */
.browser-mockup {
  width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: #1f2937;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.browser-mockup:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.browser-header {
  background: #374151;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
}

.browser-actions {
  display: flex;
  gap: 0.5rem;
}

.browser-actions span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.browser-actions span:nth-child(1) {
  background: #ef4444;
}

.browser-actions span:nth-child(2) {
  background: #f59e0b;
}

.browser-actions span:nth-child(3) {
  background: #10b981;
}

.browser-content {
  padding: 1rem;
  height: 300px;
}

.chat-interface {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  display: flex;
  margin-bottom: 1rem;
}

.chat-message.ai {
  justify-content: flex-start;
}

.chat-message.user {
  justify-content: flex-end;
}

.message-bubble {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  max-width: 80%;
}

.chat-message.ai .message-bubble {
  background: #3b82f6;
  color: white;
  border-top-left-radius: 2px;
}

.chat-message.user .message-bubble {
  background: #6366f1;
  color: white;
  border-top-right-radius: 2px;
}

/* Social proof */
.social-proof {
  margin-top: 5rem;
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.social-proof p {
  margin-top: 2rem;
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
}

.client-logos {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.logo-item {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.logo-item:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.arrow {
  font-size: 1.25rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Features Preview Section */
.features-preview {
  background: var(--dark-secondary);
  padding: 8rem 0;
}

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

.section-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary-light);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, white, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.925rem;
}

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

/* For demo mode (hidden initially) */
.demo-container {
  display: none;
}

/* Toggle between waitlist and demo mode */
.hero-action-container.waitlist-mode .demo-container {
  display: none;
}

.hero-action-container.waitlist-mode .waitlist-container {
  display: flex;
}

.hero-action-container.demo-mode .demo-container {
  display: block;
}

.hero-action-container.demo-mode .waitlist-container {
  display: none;
}

/* Media Queries */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-content {
    padding: 50px 0;
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.25rem;
  }
  
  .hero-content {
    padding: 40px 0;
  }
  
  .waitlist-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .browser-mockup {
    width: 100%;
    max-width: 450px;
  }
  
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Enhanced Voice Demo Chat Bubbles */
  .chat-message {
    margin-bottom: var(--space-md);
    align-items: flex-start;
  }
  
  .message-bubble {
    padding: var(--space-sm) var(--space-md);
    border-radius: 16px;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
  }
  
  /* Add chat bubble tails */
  .chat-message.ai .message-bubble::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent #3b82f6 transparent transparent;
  }
  
  .chat-message.user .message-bubble::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #6366f1;
  }
  
  /* Improved conversation container */
  .conversation-ui.simple {
    padding: var(--space-md);
    margin-bottom: var(--space-xl);
    border-radius: 16px;
  }
  
  .conversation-bubbles {
    padding: var(--space-md) 0;
    gap: var(--space-sm);
  }
  
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }
  
  .hero-description {
    margin-bottom: 20px;
  }
  
  .hero-content {
    padding: 32px 0;
    flex-direction: column;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .browser-mockup {
    transform: none;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
  }
  
  .browser-content {
    height: 250px;
  }
  
  .nav-buttons .btn-primary-outline {
    display: none;
  }
}

/* Voice Interaction Mockup */
.voice-mockup {
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  text-align: center;
  backdrop-filter: blur(10px);
}

.voice-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  height: 80px;
  margin-bottom: 1.5rem;
}

.wave {
  width: 6px;
  height: 20px;
  background: var(--primary-light);
  border-radius: 3px;
  animation: wave 1.2s infinite ease-in-out;
}

.wave1 { animation-delay: -1.2s; }
.wave2 { animation-delay: -1.1s; }
.wave3 { animation-delay: -1.0s; }
.wave4 { animation-delay: -0.9s; }
.wave5 { animation-delay: -0.8s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.voice-caption {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Agentic Animation Styles */
.agentic-animation {
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.4;
}

.agentic-scenario {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Vibrant conversation UI */
.conversation-ui.simple {
  background: rgba(30, 40, 95, 0.7);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(129, 140, 248, 0.3);
  max-width: 700px;
  width: 100%;
  margin: 0 auto 2rem auto;
  font-size: 14px;
}

.chat-line {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
}

.chat-line.user {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(79, 70, 229, 0.15));
  border-left: 3px solid #818cf8;
}

.chat-line.ai {
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.25), rgba(139, 92, 246, 0.15));
  border-left: 3px solid #c084fc;
}

.speaker {
  font-weight: 600;
  margin-right: 8px;
  display: inline-block;
}

.chat-line.user .speaker {
  color: #a5b4fc;
}

.chat-line.ai .speaker {
  color: #d8b4fe;
}

.system-message {
  text-align: center;
  color: #a5b4fc;
  font-style: italic;
  font-size: 13px;
  margin: 10px 0;
  padding: 8px 12px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  display: inline-block;
  border: 1px solid rgba(129, 140, 248, 0.3);
}

.scenario-step {
  margin-bottom: 12px;
  animation: fadeIn 0.5s forwards;
  opacity: 0;
}

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

/* Animation delays for sequential appearance */
.scenario-step:nth-child(1) { animation-delay: 0.2s; }
.scenario-step:nth-child(2) { animation-delay: 1s; }
.scenario-step:nth-child(3) { animation-delay: 1.8s; }
.scenario-step:nth-child(4) { animation-delay: 2.6s; }
.scenario-step:nth-child(5) { animation-delay: 3.4s; }
.scenario-step:nth-child(6) { animation-delay: 4.2s; }

/* Use Cases Section */
.use-cases {
  background: var(--dark);
  padding: 8rem 0;
}

.use-cases-tabs {
  margin-top: 4rem;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--gray-light);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.tab-btn.active {
  background: rgba(79, 70, 229, 0.1);
  border-color: rgba(79, 70, 229, 0.3);
  color: var(--primary-light);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.tab-text {
  flex: 1;
}

.tab-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, white, var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tab-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.tab-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.tab-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.tab-features li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

.tab-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.use-case-animation {
  width: 100%;
  max-width: 500px;
}

.device-mockup {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.notification {
  background: rgba(255, 0, 0, 0.1);
  border-left: 3px solid red;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-weight: 600;
}

.animation-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.anim-step {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  animation: fadeInUp 0.5s forwards;
  opacity: 0;
  transform: translateY(10px);
}

.anim-step:nth-child(1) { animation-delay: 1s; }
.anim-step:nth-child(2) { animation-delay: 2s; }
.anim-step:nth-child(3) { animation-delay: 3s; }
.anim-step:nth-child(4) { animation-delay: 4s; }
.anim-step:nth-child(5) { animation-delay: 5s; }

/* Enhanced comparison section styling */
.comparison-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #050816 0%, #0a1028 100%);
  position: relative;
  z-index: 5;
}

.cosmic-comparison-wrapper {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.cosmic-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(79, 70, 229, 0.1) 25%,
    rgba(67, 56, 202, 0.05) 50%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(40px);
  opacity: 0.7;
  z-index: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  color: #f8fafc;
  font-size: 16px;
}

.comparison-table th {
  padding: 22px 18px;
  font-weight: 600;
  background: rgba(30, 41, 59, 0.6);
  font-size: 17px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  width: 30%;
}

.comparison-table tr:nth-child(odd) {
  background: rgba(15, 23, 42, 0.5);
}

.comparison-table tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.3);
}

.comparison-table th.highlight,
.comparison-table td.highlight {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  position: relative;
}

.comparison-table th.highlight:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4f46e5, #818cf8);
}

.comparison-table th .product-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #a5b4fc;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.comparison-table .check {
  color: #10b981;
  font-size: 20px;
  font-weight: bold;
}

.comparison-table .partial {
  color: #f59e0b;
  font-size: 20px;
  font-weight: bold;
}

.comparison-table .x-mark {
  color: #ef4444;
  font-size: 20px;
  font-weight: bold;
}

.comparison-table .feature-note {
  display: block;
  font-size: 13px;
  color: rgba(248, 250, 252, 0.7);
  margin-top: 5px;
}

/* Add subtle star animation effects to the comparison table */
.cosmic-comparison-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.3) 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.3) 1px, transparent 1px),
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.3) 1px, transparent 1px),
    radial-gradient(circle at 60% 90%, rgba(255,255,255,0.3) 1px, transparent 1px),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.3) 1px, transparent 1px);
  z-index: 1;
}

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

.faq-title {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}

.accordion {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  color: white;
  font-size: 1.125rem;
}

.accordion-header .icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke: var(--gray-light);
  fill: none;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.faq-cta {
  margin-top: 4rem;
  text-align: center;
}

.faq-cta p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(170deg, var(--dark) 0%, var(--dark-secondary) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, white, var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

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

/* Simplified Comparison Cards */
.comparison-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-card {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
}

.comparison-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.comparison-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.comparison-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.comparison-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Mobile responsive for comparison cards */
@media (max-width: 768px) {
  .comparison-simple {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comparison-card {
    padding: 1.5rem;
  }
  
  .comparison-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }
  
  .comparison-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Transformation Stories Section */
.transformation-stories {
  background: rgba(15, 23, 42, 0.8);
  padding: 6rem 0;
}

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

.story-card {
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.story-scenario h4 {
  color: #6366f1;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.before-after {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.before, .after {
  padding: 1.5rem;
  border-radius: 12px;
}

.before {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.after {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.before h5, .after h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.before p, .after p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Mobile responsive for stories */
@media (max-width: 768px) {
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-card {
    padding: 2rem;
  }
  
  .before-after {
    gap: 1.5rem;
  }
}

/* Philosophy Section */
.philosophy-section {
  background: rgba(30, 41, 59, 0.8);
  padding: 6rem 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.philosophy-text h3 {
  color: #6366f1;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.philosophy-text h3:first-child {
  margin-top: 0;
}

.philosophy-text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.step-number {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.process-step h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Mobile responsive for philosophy */
@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .philosophy-text h3 {
    font-size: 1.25rem;
  }
  
  .process-step {
    padding: 1.5rem;
  }
}

/* Footer */
.site-footer {
  background: var(--dark-secondary);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-light);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-group h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-group ul {
  list-style: none;
}

.footer-group li {
  margin-bottom: 0.75rem;
}

.footer-group a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-group a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

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

.legal-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: white;
}

/* How It Works Section */
.how-it-works {
  margin: 60px 0;
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 20px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  text-align: left;
}

.step {
  flex: 1;
  padding: 0 15px;
  position: relative;
}

.step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 25px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(129, 140, 248, 0.3));
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.step-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-light);
}

.step-description {
  color: var(--gray-light);
  font-size: 15px;
}

/* Animation for steps on scroll */
@media (prefers-reduced-motion: no-preference) {
  .step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .step.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .step:nth-child(1) { transition-delay: 0.1s; }
  .step:nth-child(2) { transition-delay: 0.3s; }
  .step:nth-child(3) { transition-delay: 0.5s; }
  .step:nth-child(4) { transition-delay: 0.7s; }
  .step:nth-child(5) { transition-delay: 0.9s; }
}

/* Scroll prompt animation */
.scroll-prompt {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-prompt:hover {
  opacity: 1;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Target the hero section text with appropriate spacing */
.hero-subtitle {
  margin-bottom: 16px;
}

/* Add style for scroll prompt if it exists */
.scroll-prompt {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* Features Section */
.features-section {
  background: var(--dark-secondary);
  padding: 8rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.feature-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Compliance Badges Section */
.compliance-badges {
  background: var(--dark);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.badge-icon.hipaa {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(79, 70, 229, 0.1));
  color: #818cf8;
}

.badge-icon.gdpr {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  color: #34d399;
}

.badge-icon.soc2 {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
  color: #fbbf24;
}

.badge-icon.iso {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
  color: #c4b5fd;
}

.badge-icon.pci {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
  color: #f87171;
}

.badge-item:hover .badge-icon {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.badge-item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Planet styles */
.planet {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.planet-1 {
  top: 15%;
  right: 15%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 30% 30%, #6366f1, #1e1b4b);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
  opacity: 0.7;
}

.planet-2 {
  bottom: 20%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 40% 40%, #8b5cf6, #312e81);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.25);
  opacity: 0.5;
  transform: scale(0.6);
}

/* Comet animation */
.comet {
  position: absolute;
  top: 20%;
  left: -200px;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f0f9ff, #60a5fa);
  animation: cometMove 15s linear infinite;
  opacity: 0;
  transform: rotate(15deg);
}

.comet::before {
  content: '';
  position: absolute;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f0f9ff;
  box-shadow: 0 0 20px 2px #60a5fa;
}

@keyframes cometMove {
  0% {
    left: -200px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    left: calc(100% + 200px);
    opacity: 0;
  }
}

/* Constellation - simplified Andromeda */
.constellation {
  position: absolute;
  width: 300px;
  height: 200px;
  top: 5%;
  left: 5%;
  opacity: 0.3;
}

.constellation-andromeda::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.8) 1px, transparent 1px),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8) 1px, transparent 1px),
    radial-gradient(circle at 55% 10%, rgba(255,255,255,0.8) 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,0.8) 1px, transparent 1px),
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.8) 1px, transparent 1px);
  box-shadow: 0 0 5px rgba(255,255,255,0.3);
}

.constellation-andromeda::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 10% 10%;
  opacity: 0.2;
}

/* Orbiting satellite */
.satellite {
  position: absolute;
  width: 40px;
  height: 20px;
  background: linear-gradient(90deg, #94a3b8, #64748b);
  border-radius: 10px;
  top: 30%;
  right: 20%;
  transform-origin: 200px 20px;
  animation: orbit 30s linear infinite;
}

.satellite::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 15px;
  width: 10px;
  height: 50px;
  background: linear-gradient(to right, transparent, #94a3b8 30%, #64748b 70%, transparent);
  transform: rotate(45deg);
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(200px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(200px) rotate(-360deg);
  }
}

/* Starfield animation */
.starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.star {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  opacity: 0.7;
  animation: pulsate 3s infinite alternate ease-in-out;
}

@keyframes pulsate {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 0.9; transform: scale(1.2); }
}

/* Enhanced cosmic text effect */
.cosmic-emphasis {
  background: linear-gradient(to right, #818cf8, #c4b5fd, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.cosmic-emphasis::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #818cf8, #c4b5fd, #60a5fa);
  opacity: 0.7;
}

/* Improved text rotation with cosmic theme */
.text-rotate-container {
  display: inline-flex;
  position: relative;
  min-width: 150px;
  margin: 0 5px;
  height: 1.2em;
  vertical-align: bottom;
  transition: min-width 0.3s ease;
}

.text-rotate-static {
  visibility: hidden;
  opacity: 0;
  white-space: nowrap;
  display: inline-block;
}

.text-rotate-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.text-rotate-words {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  animation: slideWords 12s ease-in-out infinite;
  animation-fill-mode: forwards;
}

.text-rotate-words span {
  display: block;
  white-space: nowrap;
  height: 100%;
  line-height: 1.2;
  background: linear-gradient(to right, #f472b6, #c084fc, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 5px rgba(240, 171, 252, 0.3));
  text-align: left;
  padding-right: 10px;
}

@keyframes slideWords {
  0%, 25% { transform: translateY(0%); }
  33%, 58% { transform: translateY(-100%); }
  66%, 91% { transform: translateY(-200%); }
  99%, 100% { transform: translateY(0%); }
}

/* Keep the star effect */
.text-rotate-container::after {
  content: '';
  position: absolute;
  top: -15px;
  right: -20px;
  width: 30px;
  height: 30px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 10px 10px;
  transform: rotate(45deg);
  opacity: 0.5;
  animation: starTwinkle 3s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.2; transform: rotate(45deg) scale(0.8); }
  50% { opacity: 0.7; transform: rotate(45deg) scale(1.2); }
}

/* Container for the conversation example */
.agentic-scenario-container {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Adjust conversation UI to work better as centered content */
.conversation-ui.simple {
  background: rgba(30, 40, 95, 0.7);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(129, 140, 248, 0.3);
  max-width: 700px;
  width: 100%;
  margin: 0 auto 2rem auto;
  font-size: 14px;
}

/* Simplified form layout now that conversation is above */
.waitlist-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.form-content {
  width: 100%;
}

/* Healthcare page specific styles */
.solution-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
  padding: 120px 0 40px;
  position: relative;
  overflow: hidden;
}

.solution-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/constellation-bg.svg');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-visual {
  flex: 1;
  position: relative;
}

.phone-call-animation {
  background: rgba(30, 41, 59, 0.6);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  backdrop-filter: blur(10px);
  height: 420px;
  width: 100%;
  overflow: hidden;
}

.phone-icon {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4f46e5, #8b5cf6);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
  z-index: 2;
}

.phone-icon svg {
  width: 30px;
  height: 30px;
  stroke: white;
  stroke-width: 2px;
}

.conversation-line {
  position: absolute;
  left: 50%;
  top: 80px;
  bottom: 30px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.conversation-bubbles {
  position: relative;
  margin-top: 80px;
  height: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  z-index: 2;
  padding: 10px 0;
}

.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 14px;
  margin-bottom: 15px;
  position: relative;
  animation: fadeIn 0.5s forwards;
  opacity: 0;
}

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

.patient-bubble {
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.25), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.3);
  align-self: flex-start;
  margin-right: 50px;
  margin-left: 20px;
  animation-delay: 0.3s;
}

.student-bubble {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(79, 70, 229, 0.15));
  border: 1px solid rgba(79, 70, 229, 0.3);
  align-self: flex-end;
  margin-left: 50px;
  margin-right: 20px;
  animation-delay: 0.8s;
}

.chat-bubble.patient-bubble:nth-child(3) {
  animation-delay: 1.3s;
}

.chat-bubble.student-bubble:nth-child(4) {
  animation-delay: 1.8s;
}

.chat-bubble.patient-bubble:nth-child(5) {
  animation-delay: 2.3s;
}

.speaker-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 4px;
}

.patient-bubble .speaker-label {
  color: #d8b4fe;
}

.student-bubble .speaker-label {
  color: #a5b4fc;
}

/* Adjusted launch badge position - moved further down */
.launch-badge {
  position: relative;
  top: 0;
  margin-top: 30px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.15);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #a5b4fc;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  z-index: 10;
}

/* Performance optimizations for mobile animations */
@media (max-width: 768px) {
  /* Disable performance-heavy background animations on mobile */
  .background-shape {
    animation: none !important;
    transform: none !important;
  }
  
  .constellation {
    transform: none !important;
  }
  
  .comet {
    animation: none !important;
    display: none !important;
  }
  
  .satellite {
    animation: none !important;
    transform: none !important;
  }
  
  .star {
    animation: none !important;
    transform: none !important;
  }
  
  .planet {
    transform: none !important;
  }
  
  /* Reduce motion for users who prefer it and mobile devices */
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  /* Keep essential UI animations but make them faster */
  .btn, .mobile-menu, .accordion-content, .tab-panel {
    animation-duration: 0.2s !important;
    transition-duration: 0.2s !important;
  }
  
  /* Force hardware acceleration for scroll performance */
  body, html {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: auto;
  }
  
  /* Optimize hero section for mobile scrolling */
  .hero {
    will-change: auto;
    transform: translateZ(0);
    overflow: hidden;
  }
  
  .hero * {
    will-change: auto;
  }
  
  /* Disable text rotation animations on mobile for better performance */
  .text-rotate-container::after {
    display: none !important;
  }
  
  .text-rotate-words {
    animation: none !important;
    transform: none !important;
  }
  
  /* Disable parallax effects on mobile */
  .hero-content * {
    transform: none !important;
  }
  
  /* Prevent layout shifts during scroll */
  .hero-image, .hero-visual {
    position: static !important;
    transform: none !important;
  }
}

/* Improved mobile header fixes */
@media (max-width: 768px) {
  /* General navbar container fixes */
  .navbar-container {
    position: relative;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Logo positioning */
  .logo {
    flex: 1;
    z-index: 5;
  }
  
  /* Better organization of mobile menu toggle */
  .mobile-menu-toggle {
    order: 3;
    margin-left: 10px;
    position: relative;
    z-index: 5;
  }
  
  /* Ensure nav links display properly when active */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--dark-secondary);
    padding: 20px;
    z-index: 10;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Give each link its own row */
  .nav-links.active .nav-link {
    display: block;
    padding: 12px 20px;
    margin: 5px 0;
    width: 100%;
    text-align: left;
    border-radius: 6px;
    font-weight: 500;
  }
  
  /* Highlight effect on hover */
  .nav-links.active .nav-link:hover {
    background: rgba(99, 102, 241, 0.1);
  }
  
  /* Put buttons in a separate section below navigation links */
  .nav-buttons.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: auto; /* Position below nav links */
    width: 100%;
    left: 0;
    padding: 5px 20px 20px;
    background: var(--dark-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Full-width buttons for touch targets */
  .nav-buttons.active a {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 12px;
    text-align: center;
  }
  
  /* Force higher z-index on open menu to ensure visibility */
  .nav-links.active, .nav-buttons.active {
    z-index: 100;
  }
}

/* Footer mobile fixes - proper vertical stacking */
@media (max-width: 768px) {
  /* Compliance Badges - Horizontal Scroll */
  .badges-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: var(--space-xl) !important;
    padding: var(--space-md) var(--space-sm) !important;
    margin: 0 calc(-1 * var(--space-md)) !important;
    justify-content: flex-start !important;
  }
  
  /* Hide scrollbar but keep functionality */
  .badges-container::-webkit-scrollbar {
    display: none;
  }
  
  .badges-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .badge-item {
    flex: 0 0 auto !important;
    scroll-snap-align: center !important;
    min-width: 100px !important;
    gap: var(--space-sm) !important;
  }
  
  .badge-icon {
    width: 50px !important;
    height: 50px !important;
  }
  
  .badge-item span {
    font-size: 0.75rem !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
  
  footer {
    padding-bottom: 30px;
    overflow-x: hidden;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .footer-group {
    width: 100%;
    margin-bottom: 25px;
    padding: 0 15px;
  }
  
  .footer-bottom {
    margin-top: 20px;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
  }
  
  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .legal-links a {
    margin: 5px 10px;
  }
}

/* Header mobile menu fixes */
@media (max-width: 768px) {
  .nav-links.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 15px 0;
  }
  
  .nav-links.active .nav-link {
    margin: 10px 0;
    width: 100%;
    text-align: center;
    padding: 10px;
  }
  
  .nav-buttons.active {
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .nav-buttons.active a {
    margin: 5px 0;
    width: 80%;
    text-align: center;
  }
  
  .mobile-menu-toggle {
    margin-left: auto;
    margin-right: 10px;
  }
}

/* Solutions page fixes */
@media (max-width: 768px) {
  /* Card Layout Grid System - Mobile First */
  .features-grid,
  .benefits-grid,
  .solution-grid,
  .stories-grid,
  .philosophy-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: var(--space-lg) !important;
    padding: var(--space-md) 0 !important;
  }
  
  /* Universal Card Styling */
  .feature-card,
  .benefit-card,
  .solution-card,
  .story-card,
  .comparison-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: var(--space-lg) !important;
    width: 100% !important;
    min-height: auto !important;
    margin-bottom: 0 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Touch interaction feedback */
  .feature-card:active,
  .benefit-card:active,
  .solution-card:active,
  .story-card:active,
  .comparison-card:active {
    transform: scale(0.98) !important;
    background: rgba(255, 255, 255, 0.05) !important;
  }
  
  /* Card content hierarchy */
  .card-icon,
  .feature-card .icon,
  .solution-card .icon {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: var(--space-md) !important;
    flex-shrink: 0 !important;
  }
  
  .card-title,
  .feature-card h3,
  .solution-card h3,
  .story-card h3,
  .comparison-card h3 {
    font-size: clamp(1.125rem, 3vw, 1.5rem) !important;
    line-height: 1.3 !important;
    margin-bottom: var(--space-sm) !important;
    color: white !important;
  }
  
  .card-description,
  .feature-card p,
  .solution-card p,
  .story-card p,
  .comparison-card p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    flex-grow: 1 !important;
  }
  
  /* Card buttons */
  .card-button,
  .feature-card .btn,
  .solution-card .btn,
  .story-card .btn {
    margin-top: auto !important;
    min-height: var(--min-touch) !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
  }
  
  .solution-card {
    width: 100%;
    min-height: auto;
    margin-bottom: 20px;
  }
  
  .solution-grid {
    display: block;
  }
  
  .industry-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .industries-container {
    width: 100%;
    overflow-x: hidden;
    display: block;
  }
  
  .solution-card .btn {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
} 


/* Mobile styles for screens up to 768px */
@media (max-width: 768px) {
  /* Hide nav-buttons outside the mobile menu */
  .nav-buttons {
    display: none;
  }

  /* Adjust navbar-container layout */
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Style the hamburger button */
  .mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
  }

  .mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: white; /* Adjust color to match your theme */
    transition: all 0.3s ease;
  }

  /* Hamburger animation when active */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

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

  /* Style the mobile menu */
  .mobile-menu {
    position: fixed;
    top: 70px; /* Adjust based on your header height */
    left: 0;
    right: 0;
    background: #1f2937; /* Replace with var(--dark-secondary) if defined */
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none; /* Hidden by default */
  }

  /* Style links and buttons inside mobile menu */
  .mobile-menu a {
    display: block;
    padding: 15px;
    margin: 5px 0;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: 500;
    border-radius: 5px;
  }

  .mobile-menu a:hover {
    background: rgba(99, 102, 241, 0.1); /* Subtle hover effect */
  }

  /* Make buttons full-width in mobile menu */
  .mobile-menu .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Enhanced Mobile Touch and Usability Improvements */
@media (max-width: 768px) {
  /* Fix iOS Safari viewport issues */
  html {
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Improve all button touch targets */
  .btn, .btn-primary, .btn-secondary, .btn-primary-outline, .btn-text {
    min-height: 48px !important;
    min-width: 48px !important;
    padding: 12px 20px !important;
    font-size: 16px !important; /* Prevent zoom on iOS */
    touch-action: manipulation; /* Prevent double-tap zoom */
    -webkit-tap-highlight-color: rgba(79, 70, 229, 0.2);
  }
  
  /* Ensure the entire button area is clickable on mobile */
  .btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: inherit;
    pointer-events: none;
  }
  
  /* Fix form buttons and submit buttons */
  button[type="submit"], input[type="submit"], .premium-form button {
    min-height: 48px !important;
    min-width: 48px !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(79, 70, 229, 0.2);
  }
  
  /* Improve form inputs */
  input, textarea, select {
    font-size: 16px !important; /* Prevent zoom on iOS */
    min-height: 44px;
    padding: 12px 16px;
    touch-action: manipulation;
  }
  
  /* Fix navbar positioning on mobile */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(15px) !important;
  }
  
  /* Ensure mobile menu toggle is always visible */
  .mobile-menu-toggle {
    display: flex !important;
    position: relative !important;
    z-index: 10000 !important;
    min-height: 48px !important;
    min-width: 48px !important;
  }
  
  /* Fix link and anchor touch targets */
  a, .nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
  }
  
  /* Improve solution page button click areas */
  .solution-card .btn, .industry-box .btn, .cta-button {
    min-height: 52px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 24px !important;
    margin: 10px 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }
  
  /* Remove hover effects on touch devices */
  .btn:hover, .btn-primary:hover, .btn-secondary:hover {
    transform: none !important;
  }
  
  /* Add active states for better touch feedback */
  .btn:active, .btn-primary:active {
    transform: scale(0.98) !important;
    transition: transform 0.1s ease !important;
  }
  
  /* Fix any overlay or modal touch issues */
  .modal, .overlay {
    -webkit-overflow-scrolling: touch;
  }
}

/* Fix for very small mobile screens */
@media (max-width: 480px) {
  .btn, .btn-primary, .btn-secondary, .btn-primary-outline {
    font-size: 15px !important;
    padding: 14px 18px !important;
  }
  
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Static Mobile Menu Fallback */
@media (max-width: 768px) {
  .mobile-menu-toggle-static {
    display: flex !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
  }
  
  .mobile-menu-toggle-static span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-toggle-static.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle-static.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle-static.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .mobile-menu-static {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(30, 41, 59, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    flex-direction: column !important;
    padding: 20px !important;
    z-index: 9999 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .mobile-menu-static a {
    display: flex !important;
    padding: 16px 20px !important;
    margin: 5px 0 !important;
    text-align: center !important;
    text-decoration: none !important;
    color: white !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    min-height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    border: 1px solid transparent !important;
  }
  
  .mobile-menu-static a:hover, .mobile-menu-static a:focus {
    background: rgba(99, 102, 241, 0.2) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
    transform: translateY(-1px) !important;
  }
  
  /* Hide nav-links and nav-buttons on mobile */
  .nav-links, .nav-buttons {
    display: none !important;
  }
}