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

/* Enhanced Splash Screen */
#splashScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f1419 0%, #1e293b 50%, #0f172a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.spin-logo {
  animation: spin 2s linear infinite, pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Glass morphism effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

/* Enhanced navigation links */
nav a {
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover::before {
  width: 100%;
}

nav a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}

/* Enhanced button styles */
.demo-access-btn {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.demo-access-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

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

.demo-access-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Enhanced login button */
#loginBtn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#loginBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

#loginBtn:hover::before {
  left: 100%;
}

#loginBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Enhanced footer */
footer {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.9));
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

/* Animated gradient text */
.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Enhanced animations */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Glowing effects */
.glow-blue {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.glow-cyan {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Enhanced loading animations */
.loading-dots {
  display: inline-block;
  animation: loading-dots 1.5s infinite;
}

@keyframes loading-dots {
  0% {
    content: '';
  }

  25% {
    content: '.';
  }

  50% {
    content: '..';
  }

  75% {
    content: '...';
  }

  100% {
    content: '';
  }
}

/* Responsive enhancements */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 12px;
  }

  .demo-access-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
  }

  #loginBtn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}

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

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

::-webkit-scrollbar-track {
  background: rgba(15, 20, 25, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2563eb, #0891b2);
}


/* Enhanced Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Animated Background */
.hero-bg {
  background: linear-gradient(135deg, #0f1419 0%, #1e293b 30%, #0f172a 70%, #0f1419 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-pattern {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%;
  }

  100% {
    background-position: 100% 100%, -100% 100%, 50% -50%;
  }
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  blur: 20px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  animation-delay: 0s;
}

.floating-element-2 {
  bottom: 15%;
  right: 8%;
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #06b6d4, #8b5cf6);
  animation-delay: 2s;
}

.floating-element-3 {
  top: 30%;
  right: 20%;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #8b5cf6, #3b82f6);
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }

  50% {
    transform: translate(20px, -20px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Typography Enhancements */
.hero-title {
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
  }

  100% {
    text-shadow: 0 0 60px rgba(59, 130, 246, 0.5);
  }
}

.hero-subtitle {
  animation: subtitleFade 2s ease-in-out;
}

@keyframes subtitleFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glass Morphism Effects */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  position: relative;
  overflow: hidden;
}

.hero-tagline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.hero-tagline:hover::before {
  left: 100%;
}

/* Feature Cards */
.feature-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
}

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

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

.feature-card-1:hover {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.feature-card-2:hover {
  border-color: rgba(6, 182, 212, 0.6);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.feature-card-3:hover {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.feature-icon {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.feature-title {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
  transform: translateX(5px);
}

/* Feature Lines */
.feature-line {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-line-1 {
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.feature-line-2 {
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
}

.feature-line-3 {
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
}

.feature-card:hover .feature-line {
  transform: scaleX(1);
}

/* Enhanced CTA Buttons */
.cta-primary {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.cta-overlay {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-primary:hover .cta-overlay {
  opacity: 1;
}

.cta-secondary {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.cta-overlay-secondary {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cta-secondary:hover .cta-overlay-secondary {
  transform: scaleX(1);
}

/* Stats Section */
.stats-item {
  transition: all 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-5px);
}

.stats-number {
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: statsGradient 3s ease infinite;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 4s ease infinite;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
  }

  .floating-element {
    display: none;
  }

  .feature-card {
    margin-bottom: 1rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 0.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }
}

.bg-card {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.bg-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.custom-select,
.custom-input {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: white;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.custom-select:focus,
.custom-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ticker-tape {
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  background: linear-gradient(90deg, #1e293b, #334155, #1e293b);
  padding: 8px 0;
  border-radius: 4px;
}

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

  100% {
    transform: translateX(-100%);
  }
}

.loader {
  border-top-color: #3b82f6;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.glow-button {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.glow-button:hover {
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.stats-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
}

.metric-highlight {
  background: linear-gradient(90deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.indicator-toggle {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  transition: all 0.3s ease;
}

.indicator-toggle:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.05);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-animation {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.chart-container {
  position: relative;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
}

.chart-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
}

/* Feature card enhancements */
.feature-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.feature-icon {
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

/* Step cards for How It Works */
.step-card {
  position: relative;
  transition: all 0.3s ease;
}

.step-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: width 0.4s ease;
}

.step-card:hover::after {
  width: 80%;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  position: relative;
  z-index: 1;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover .step-number::before {
  opacity: 1;
}

/* Animated background patterns */
.pattern-bg {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0% 0%, 0% 0%;
  }

  100% {
    background-position: 100% 100%, -100% 100%;
  }
}

/* Floating elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  animation-delay: 0s;
}

.floating-element-2 {
  bottom: 15%;
  right: 8%;
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #06b6d4, #8b5cf6);
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(20px, -20px) rotate(180deg);
  }
}

/* Enhanced button */
.cta-button {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Connecting lines between steps */
.step-connector {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transform: translateY(-50%);
  opacity: 0.3;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -8px;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 8px solid #06b6d4;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

@media (max-width: 768px) {
  .step-connector {
    display: none;
  }
}

/* Enhanced AI Insight Section */
.ai-insight-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e40af, #3730a3, #7c3aed);
  padding: 5rem 1.5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.ai-insight-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
  animation: aiPatternMove 15s linear infinite;
  z-index: 1;
}

@keyframes aiPatternMove {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(20px, -20px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.ai-insight-container {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.ai-insight-header {
  margin-bottom: 4rem;
}

.ai-insight-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  position: relative;
}

.ai-insight-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
  border-radius: 2px;
  animation: titleUnderline 2s ease-in-out infinite alternate;
}

@keyframes titleUnderline {
  0% {
    width: 100px;
  }

  100% {
    width: 200px;
  }
}

.ai-insight-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.ai-highlight {
  color: #06b6d4;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

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

.ai-feature-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ai-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.ai-feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.3);
}

.ai-feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #06b6d4;
  transition: all 0.3s ease;
}

.ai-feature-card:hover .ai-feature-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

.ai-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #06b6d4;
}

.ai-feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Enhanced Demo Button */
.demo-access-container {
  position: relative;
  display: inline-block;
}

.demo-access-btn2 {
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  color: #1e40af;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border-radius: 1.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.demo-access-btn2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
  transition: left 0.5s ease;
}

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

.demo-access-btn2:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.demo-access-btn2 i {
  transition: transform 0.3s ease;
}

.demo-access-btn2:hover i {
  transform: scale(1.2);
}

/* Floating AI Elements */
.ai-floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: aiFloat 8s ease-in-out infinite;
}

.ai-floating-element-1 {
  top: 15%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  animation-delay: 0s;
}

.ai-floating-element-2 {
  bottom: 20%;
  right: 15%;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #06b6d4, #8b5cf6);
  animation-delay: 2s;
}

.ai-floating-element-3 {
  top: 60%;
  left: 5%;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #8b5cf6, #3b82f6);
  animation-delay: 4s;
}

@keyframes aiFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }

  50% {
    transform: translate(-20px, 20px) rotate(180deg);
  }

  75% {
    transform: translate(20px, -10px) rotate(270deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .ai-insight-section {
    padding: 3rem 1rem;
  }

  .ai-insight-title {
    font-size: 2rem;
  }

  .ai-insight-subtitle {
    font-size: 1.125rem;
  }

  .ai-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ai-feature-card {
    padding: 1.5rem;
  }

  .demo-access-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Pulse animation for AI elements */
.ai-pulse {
  animation: aiPulse 3s ease-in-out infinite;
}

@keyframes aiPulse {

  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Enhanced About Section */
.about-section {
  background: linear-gradient(135deg, #111827, #1e293b, #111827);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  background-size: 400px 400px, 300px 300px;
  animation: aboutPatternMove 25s linear infinite;
  z-index: 1;
}

@keyframes aboutPatternMove {
  0% {
    background-position: 0% 0%, 0% 0%;
  }

  100% {
    background-position: 100% 100%, -100% 100%;
  }
}

.about-container {
  max-width: 96rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 2px;
}

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

/* Enhanced Left Content */
.about-content {
  position: relative;
}

.mission-section {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transition: left 0.6s ease;
}

.mission-section:hover::before {
  left: 100%;
}

.mission-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.mission-title {
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mission-title i {
  font-size: 1.5rem;
  color: #06b6d4;
}

.mission-description {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 1.125rem;
}

/* Enhanced Features List */
.features-container {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.features-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features-container:hover::before {
  opacity: 1;
}

.features-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #06b6d4;
  margin-bottom: 1.5rem;
  text-align: center;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  transition: left 0.5s ease;
}

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

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.feature-icon {
  font-size: 1.25rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  background: rgba(16, 185, 129, 0.2);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.feature-text {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-text {
  color: #e2e8f0;
}

/* Enhanced Right Image Section */
.about-image-section {
  position: relative;
  text-align: center;
}

.image-container {
  position: relative;
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 2rem;
  padding: 3rem;
  transition: all 0.4s ease;
}

.image-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #3b82f6, #06b6d4, #8b5cf6, #3b82f6);
  border-radius: 2rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-container:hover::before {
  opacity: 1;
}

.image-container:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
}

.about-image {
  width: 18rem;
  height: 18rem;
  max-width: 100%;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
}

.image-container:hover .about-image {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.5));
}

/* Floating decorative elements */
.floating-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatDecoration 8s ease-in-out infinite;
}

.floating-decoration-1 {
  top: 10%;
  right: 15%;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  animation-delay: 0s;
}

.floating-decoration-2 {
  bottom: 20%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #06b6d4, #8b5cf6);
  animation-delay: 2s;
}

.floating-decoration-3 {
  top: 50%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #8b5cf6, #3b82f6);
  animation-delay: 4s;
}

@keyframes floatDecoration {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }

  50% {
    transform: translate(-10px, 10px) rotate(180deg);
  }

  75% {
    transform: translate(10px, -5px) rotate(270deg);
  }
}

/* Stats Section */
.stats-section {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 4rem 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .mission-section {
    padding: 2rem;
  }

  .features-container {
    padding: 1.5rem;
  }

  .feature-item {
    padding: 0.75rem;
  }

  .image-container {
    padding: 2rem;
  }

  .about-image {
    width: 14rem;
    height: 14rem;
  }

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

@media (max-width: 480px) {
  .about-title {
    font-size: 2rem;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Contact Section Styles */
.contact-section {
  position: relative;
  background: linear-gradient(135deg, #0f1419 0%, #1e293b 30%, #0f172a 70%, #0f1419 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.contact-pattern {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%;
  }

  100% {
    background-position: 100% 100%, -100% 100%, 50% -50%;
  }
}

/* Glass Morphism Effects */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.contact-card:hover::before {
  left: 100%;
}

/* Form Enhancements */
.form-group {
  position: relative;
}

.form-input {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(100, 116, 139, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: rgba(22, 27, 34, 0.9);
}

.form-input:focus+.form-label {
  color: #3b82f6;
  transform: translateY(-2px);
}

.form-label {
  transition: all 0.3s ease;
}

/* Button Enhancements */
.submit-btn {
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #06b6d4, #8b5cf6);
  transition: left 0.3s ease;
}

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

.submit-btn span {
  position: relative;
  z-index: 1;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Contact Info Cards */
.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Floating particles */
.floating-particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  opacity: 0.1;
  animation: floatParticle 8s linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.1;
  }

  90% {
    opacity: 0.1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Success/Error Messages */
.message-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.message-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(45deg, #3b82f6, #06b6d4, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 3s ease-in-out infinite;
}

@keyframes gradientFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Enhanced Pricing Section Styles */
.pricing-section {
  position: relative;
  background: linear-gradient(135deg, #0f1419 0%, #1e293b 30%, #0f172a 70%, #0f1419 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.pricing-pattern {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%;
  }

  100% {
    background-position: 100% 100%, -100% 100%, 50% -50%;
  }
}

/* Glass Morphism Effects */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(45deg, #3b82f6, #06b6d4, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientFlow 3s ease-in-out infinite;
}

@keyframes gradientFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.pricing-card:hover::before {
  left: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Free Plan */
.free-plan {
  background: rgba(30, 41, 59, 0.3);
  border-color: rgba(100, 116, 139, 0.3);
}

.free-plan:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

/* Pro Plan (Featured) */
.pro-plan {
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.2) 0%,
      rgba(6, 182, 212, 0.2) 30%,
      rgba(139, 92, 246, 0.2) 100%);
  border: 2px solid rgba(59, 130, 246, 0.5);
  transform: scale(1.05);
  position: relative;
}

.pro-plan::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(45deg, #3b82f6, #06b6d4, #8b5cf6);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.pro-plan:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.3);
}

/* Elite Plan */
.elite-plan {
  background: rgba(30, 41, 59, 0.3);
  border-color: rgba(139, 92, 246, 0.3);
}

.elite-plan:hover {
  border-color: rgba(139, 92, 246, 0.5);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  z-index: 10;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Pricing Buttons */
.pricing-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  font-weight: 600;
}

.pricing-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transition: all 0.3s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pricing-btn:hover::before {
  width: 300px;
  height: 300px;
}

.pricing-btn span {
  position: relative;
  z-index: 1;
}

/* Free Button */
.free-btn {
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  color: white;
}

.free-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Pro Button */
.pro-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
}

.pro-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Elite Button */
.elite-btn {
  background: linear-gradient(45deg, #8b5cf6, #3b82f6);
  color: white;
}

.elite-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Feature Lists */
.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(45deg, #22c55e, #06b6d4);
  transition: all 0.3s ease;
}

.feature-list li.unavailable::before {
  background: linear-gradient(45deg, #ef4444, #f97316);
}

.feature-list li:hover {
  transform: translateX(5px);
  color: #06b6d4;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.2) 0%,
      rgba(6, 182, 212, 0.2) 50%,
      rgba(139, 92, 246, 0.2) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.cta-section:hover::before {
  left: 100%;
}

.demo-btn2 {
  background: linear-gradient(45deg, #ffffff, #f8fafc);
  color: #1e293b;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.demo-btn2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  transition: left 0.3s ease;
}

.demo-btn2:hover::before {
  left: 0;
}

.demo-btn2:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.demo-btn2 span {
  position: relative;
  z-index: 1;
}

/* Floating particles */
.floating-particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  opacity: 0.1;
  animation: floatParticle 12s linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.1;
  }

  90% {
    opacity: 0.1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Price highlight */
.price-highlight {
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-switch.active::before {
  transform: translateX(30px);
}

.toggle-switch.active {
  background: rgba(59, 130, 246, 0.3);
}

