/* style.css — Enhanced visual aesthetics */

/* IMPROVED: Import better fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* IMPROVED: CSS Variables for consistent theming */
:root {
  --primary-blue: #7c3aed;
  --primary-purple: #7c3aed;
  --primary-pink: #ec4899;
  --dark-bg: #0a0a0f;
  --dark-surface: #1a1a2e;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-tertiary: rgba(255, 255, 255, 0.8);
  --border-color: rgba(255, 255, 255, 0.1);
  --glow-intensity: 0.6;
}

/* IMPROVED: Base styles with better typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: #0a0a0f; /* solid base */
  background-image:
    radial-gradient(60rem 60rem at 10% 10%, rgba(124, 58, 237, 0.28), transparent 60%),
    radial-gradient(52rem 52rem at 85% 20%, rgba(236, 72, 153, 0.22), transparent 60%),
    radial-gradient(70rem 70rem at 20% 85%, rgba(59, 130, 246, 0.2), transparent 60%),
    radial-gradient(56rem 56rem at 90% 80%, rgba(16, 185, 129, 0.18), transparent 60%);
  background-attachment: fixed, fixed, fixed, fixed;
  background-repeat: no-repeat;
  background-size: 120% 120%, 120% 120%, 120% 120%, 120% 120%;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* IMPROVED: Better heading hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

/* IMPROVED: Enhanced logo styling */
.logo-img {
  width: 150px !important;
  height: auto !important;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.logo-img:hover {
  transform: scale(1.05) translateY(-2px);
  filter: drop-shadow(0 4px 16px rgba(88, 195, 255, 0.4));
}

/* IMPROVED: Hero section styling */
.hero, section:first-of-type {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

/* FIXED: Hero image specific styling */
.hero img.hero-float,
img.hero-float {
  max-width: 500px !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto;
}

/* IMPROVED: Hero image container */
.hero-image-wrapper {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 45%;
  z-index: 1;
}

/* FIXED: Enhanced float animation for hero - ensure visibility */
.hero-float {
  animation: floatAdvanced 8s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: auto;
  display: block !important;
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
}

@keyframes floatAdvanced {
  0%, 100% { 
    transform: translateY(0) rotate(0deg) scale(1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  }
  25% {
    transform: translateY(-20px) rotate(1deg) scale(1.02);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.2));
  }
  50% { 
    transform: translateY(-10px) rotate(-1deg) scale(1.01);
    filter: drop-shadow(0 25px 45px rgba(88, 195, 255, 0.2));
  }
  75% {
    transform: translateY(-15px) rotate(0.5deg) scale(1.02);
    filter: drop-shadow(0 28px 48px rgba(126, 87, 194, 0.2));
  }
}

.hero-float:hover {
  transform: perspective(1000px) rotateY(10deg) rotateX(5deg) scale(1.05);
  filter: drop-shadow(0 30px 60px rgba(88, 195, 255, 0.3));
}

/* IMPROVED: Trust badges styling */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.trust-item {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  min-width: 80px;
  padding: 0.5rem;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

/* IMPROVED: Card styling with better visual hierarchy */
.voiceCard,
.useCaseCard {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 0 0 auto;
  width: 100%;
  max-width: 300px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* IMPROVED: Better voice image styling */
.voice-image-container {
  width: 100%;
  height: 180px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(88, 195, 255, 0.1), rgba(126, 87, 194, 0.1));
}

.voice-assistant-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* IMPROVED: Card content styling */
.voiceCard h3,
.useCaseCard h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.voiceCard p,
.useCaseCard p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* IMPROVED: Card hover effects */
.card-hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 0 30px rgba(88, 195, 255, 0.3),
    inset 0 0 60px rgba(255, 255, 255, 0.05);
}

/* IMPROVED: Card glow animation */
.glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    45deg,
    transparent,
    var(--primary-blue),
    var(--primary-purple),
    var(--primary-pink),
    transparent
  );
  border-radius: 24px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.glow-border:hover::before {
  opacity: 0.8;
}


/* IMPROVED: Use case cards with better height */
.useCaseCard {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* FIXED: Pricing section styling - ensure visibility */
#pricing,
.pricing-section {
  padding: 6rem 2rem;
  position: relative;
  background: radial-gradient(
    ellipse at center,
    rgba(88, 195, 255, 0.1) 0%,
    transparent 50%
  );
  /* ENSURE VISIBILITY */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.pricing-grid {
  display: flex !important;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  visibility: visible !important;
  opacity: 1 !important;
}

/* FIXED: Price card styling - ensure visibility */
.priceCard {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-color);
  position: relative;
  width: 100%;
  max-width: 360px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* ENSURE VISIBILITY */
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.priceCard:hover {
  transform: translateY(-10px);
  border-color: rgba(88, 195, 255, 0.3);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(88, 195, 255, 0.3);
}

/* IMPROVED: Popular plan styling */
.popular-plan {
  transform: scale(1.05);
  border: 2px solid var(--primary-blue);
  background: linear-gradient(
    180deg,
    rgba(88, 195, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(88, 195, 255, 0.5);
}

/* IMPROVED: Price styling */
.priceCard h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s ease infinite;
}

.period {
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  opacity: 0.7;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* IMPROVED: Features list styling */
.features-list {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
}

.features-list li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.features-list li:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.features-list li::before {
  content: '✓';
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px rgba(88, 195, 255, 0.5));
}

/* IMPROVED: Plan button styling */
.planBtn {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.planBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(88, 195, 255, 0.4);
}

.planBtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.planBtn:hover::before {
  width: 300px;
  height: 300px;
}

/* IMPROVED: Siri-style glow button */
.siri-glow-button {
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-pink)) !important;
  background-size: 200% auto !important;
  animation: gradientFlow 4s infinite ease !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 1rem 2.5rem !important;
  border-radius: 50px !important;
  box-shadow: 
    0 4px 20px rgba(88, 195, 255, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem !important;
}

.siri-glow-button:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 
    0 8px 30px rgba(88, 195, 255, 0.6),
    inset 0 0 30px rgba(255, 255, 255, 0.3) !important;
}

/* IMPROVED: Button inner glow */
.button-inner-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle at center,
    rgba(88, 195, 255, 0.4) 0%,
    transparent 70%
  );
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.siri-glow-button:hover .button-inner-glow {
  opacity: 1;
}

/* IMPROVED: Testimonial section */
.testimonial-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.02);
}

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

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(88, 195, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stars {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-author strong {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

/* IMPROVED: Feature comparison table */
.feature-comparison {
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid var(--border-color);
}

.comparison-table {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: rgba(88, 195, 255, 0.1);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.comparison-table th.popular,
.comparison-table td.popular {
  background: rgba(88, 195, 255, 0.05);
  position: relative;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

/* IMPROVED: FAQ styling */
.faqItem {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faqItem:hover {
  border-color: rgba(88, 195, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.faqItem[open] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faqItem summary {
  cursor: pointer;
  outline: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faqItem summary::-webkit-details-marker {
  display: none;
}

.faqItem summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.faqItem[open] summary::after {
  transform: rotate(45deg);
}

.faqItem p {
  margin-top: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* IMPROVED: Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 30;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(88, 195, 255, 0.5);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* IMPROVED: Particles background */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  background: transparent;
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle linear infinite;
}

.particle.blue {
  box-shadow: 0 0 6px 2px rgba(88, 195, 255, 0.6);
}

.particle.purple {
  box-shadow: 0 0 6px 2px rgba(126, 87, 194, 0.6);
}

.particle.pink {
  box-shadow: 0 0 6px 2px rgba(255, 108, 218, 0.6);
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) scale(1);
    opacity: 0;
  }
}

/* IMPROVED: AI glow elements */
.ai-glow-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
  animation: glowFloat 20s ease-in-out infinite;
}

.ai-glow-blue {
  background: var(--primary-blue);
}

.ai-glow-purple {
  background: var(--primary-purple);
}

.ai-glow-pink {
  background: var(--primary-pink);
}

@keyframes glowFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.3;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.15;
  }
}

/* FIXED: Text gradient animation - ensure compatibility */
.text-gradient {
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--primary-pink));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 6s ease infinite;
  display: inline-block;
}

/* IMPROVED: General animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* IMPROVED: Social icons */
.social-icon {
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.social-link {
  display: inline-block;
  margin: 0 0.5rem;
}

.social-icon:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.1);
  filter: drop-shadow(0 0 10px rgba(88, 195, 255, 0.6));
}

/* IMPROVED: Container and section spacing */
section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* IMPROVED: Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Subtle viewport bottom vignette to soften transitions without touching sections */
html { position: relative; z-index: 0; }
html::after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18vh;
  pointer-events: none;
  z-index: 40; /* below navbar (z-100), above normal content */
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.24) 0%,
    rgba(10, 10, 15, 0.12) 50%,
    rgba(10, 10, 15, 0.0) 100%
  );
}

/* IMPROVED: Selection styling */
::selection {
  background: rgba(88, 195, 255, 0.3);
  color: white;
}

/* IMPROVED: Focus styles for accessibility */
:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* IMPROVED: Button hover state */
.btn-hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(88, 195, 255, 0.3);
}

/* IMPROVED: Mobile responsiveness */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .hero-image-wrapper {
    position: relative;
    max-width: 100%;
    margin-top: 2rem;
    right: auto;
    transform: none;
  }
  
  .trust-badges {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .trust-item {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 100px;
    padding: 0.75rem 0.5rem;
  }
  
  .voiceCard,
  .useCaseCard {
    width: 100%;
    max-width: 340px;
  }
  
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .priceCard {
    max-width: 100%;
  }
  
  .popular-plan {
    transform: none;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 0.875rem;
  }
  
  /* Stack scroll-to-top button above chat widget on mobile */
  .scroll-to-top {
    bottom: calc(5rem + 25px + 85px);
    right: 1.5rem;
  }
}

/* IMPROVED: Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* FORCE BRIGHTER TEXT - Override all dimmed text with very specific selectors */
body .text-white\/85,
body .text-white\/90,
body section p.text-white\/85,
body section p.text-white\/90,
body p.text-white\/85,
body p.text-white\/90 {
  color: rgba(255, 255, 255, 0.95) !important;
  opacity: 1 !important;
}

/* Force all paragraph text to be bright */
body section p,
body div p,
body .space-y-8 p,
body .flex p {
  color: rgba(255, 255, 255, 0.95) !important;
  opacity: 1 !important;
}


/* NAVIGATION GLOW EFFECTS - Inspired by liquid glass message bubbles */

/* Color system for navigation glow effects */
:root {
  /* Navigation glow colors - matching the message bubble file */
  --nav-glow-purple: hsl(285, 60%, 55%);     /* #A950C4 */
  --nav-glow-pink: hsl(330, 80%, 65%);       /* #F05DA4 */
  --nav-glow-blue: hsl(195, 60%, 55%);       /* #50A6C4 */
  --nav-glow-orange: hsl(25, 90%, 60%);      /* Orange for Demo */
  --nav-glow-cyan: rgba(0, 255, 255, 0.6);
}

/* Navigation items styling - no glow */
nav ul li a:not([href="#"]) {
  position: relative;
  transition: all 0.3s ease !important;
  
  /* Make navigation items more translucent */
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

/* Simple hover effects - no glow */
nav ul li a:not([href="#"]):hover {
  transform: translateY(-2px) scale(1.02) !important;
  
  /* More translucent on hover */
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  
  /* Keep text color unchanged */
  color: inherit !important;
}


/* Header with vertical gradient transparency */
.header-gradient-bottom {
  position: relative;
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 0.015) 0%,
    rgba(255, 255, 255, 0.012) 20%,
    rgba(255, 255, 255, 0.008) 40%,
    rgba(255, 255, 255, 0.004) 70%,
    rgba(255, 255, 255, 0.002) 90%,
    transparent 100%) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  border: none !important;
}

/* Clean sections without dimming overlays */
section {
  position: relative;
}

/* Make bg-radial-night more visible */
.bg-radial-night {
  background: radial-gradient(ellipse at top left, rgba(124,58,237,.6) 0%, rgba(0,0,0,0) 60%), radial-gradient(ellipse at bottom right, rgba(236,72,153,.5) 0%, rgba(0,0,0,0) 70%) !important;
}

/* For a single continuous page background: neutralize section-level gradients */
section.bg-radial-night,
section.bg-radial-dark,
footer.bg-radial-night,
footer.bg-radial-dark {
  background: transparent !important;
}

/* bottom feather removed per user request */


.bg-radial-dark {
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.5) 0%, rgba(236,72,153,0.2) 30%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.7) 90%) !important;
}

/* Remove per-section fades in favor of a single global background */

/* Fade-in with blur animation */
.fade-in-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px);
  transition: all 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-blur-visible {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

/* Scale animation */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animations */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }


/* Logo (center item) - keep subtle glow */
nav ul li img {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
  transition: all 0.3s ease;
}

nav ul li img:hover {
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.4));
  transform: scale(1.05);
}

/* Glow animation keyframes - matching the message bubble file */
@keyframes navEdgeGlow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 8px var(--nav-glow-purple),
      0 0 4px var(--nav-glow-pink);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 12px var(--nav-glow-purple),
      0 0 6px var(--nav-glow-pink),
      0 0 10px var(--nav-glow-blue);
  }
}

@keyframes cyanEdgeGlow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 10px rgba(0, 255, 255, 0.4),
      0 0 5px rgba(0, 255, 255, 0.2);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 15px rgba(0, 255, 255, 0.6),
      0 0 8px rgba(0, 255, 255, 0.4),
      0 0 12px rgba(0, 255, 255, 0.2);
  }
}

@keyframes pinkEdgeGlow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 10px rgba(255, 20, 147, 0.4),
      0 0 5px rgba(255, 20, 147, 0.2);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 15px rgba(255, 20, 147, 0.6),
      0 0 8px rgba(255, 20, 147, 0.4),
      0 0 12px rgba(255, 20, 147, 0.2);
  }
}

@keyframes orangeEdgeGlow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 10px var(--nav-glow-orange),
      0 0 5px rgba(255, 140, 60, 0.3);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 15px var(--nav-glow-orange),
      0 0 8px var(--nav-glow-orange),
      0 0 12px rgba(255, 140, 60, 0.3);
  }
}

@keyframes purpleEdgeGlow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 10px var(--nav-glow-purple),
      0 0 5px rgba(169, 80, 196, 0.3);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 15px var(--nav-glow-purple),
      0 0 8px var(--nav-glow-purple),
      0 0 12px rgba(169, 80, 196, 0.3);
  }
}

/* Mobile menu glow effects */
#mobileMenu ul li a {
  position: relative;
  transition: all 0.3s ease !important;
  
  /* Subtle glow for mobile */
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 0 6px var(--nav-glow-purple),
    0 0 3px var(--nav-glow-pink) !important;
}

#mobileMenu ul li a:hover {
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.15),
    0 0 12px var(--nav-glow-purple),
    0 0 6px var(--nav-glow-pink),
    0 0 15px var(--nav-glow-blue) !important;
}

/* FIXED: Hide any placeholder text that contains Phone & mic illustration */
*:not(img):has-text("Phone & mic illustration"),
[alt="Phone & mic illustration"]:not(img[src]) {
  display: none !important;
}

/* Fallback for browsers that don't support :has-text */
.hero span:empty,
.hero div:empty {
  display: none;
}
