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

:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --background-dark: #0f172a;
  --surface-color: #1e293b;
  --surface-light: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --gradient-secondary: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background-dark);
  overflow-x: hidden;
}

/* Background with enhanced overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/bg.jpg') center center / cover no-repeat;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(30, 41, 59, 0.9) 50%, 
    rgba(15, 23, 42, 0.95) 100%);
  z-index: -1;
}

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

/* Music Player */
.music-player {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
}

.music-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.music-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.music-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.music-toggle:hover::before {
  opacity: 1;
}

.music-toggle.playing {
  animation: pulse 2s infinite;
}

.music-toggle.playing::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0.5;
  animation: musicWave 2s infinite;
}

.music-toggle i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.music-toggle:hover i {
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  }
  50% {
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.6);
  }
}

@keyframes musicWave {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Responsive adjustments for music player */
@media (max-width: 768px) {
  .music-player {
    top: 1rem;
    right: 1rem;
  }
  
  .music-toggle {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.1) 0%, 
    rgba(59, 130, 246, 0.05) 50%, 
    rgba(37, 99, 235, 0.1) 100%);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 10;
}

.hero-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
  position: relative;
}

.hero-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: ping 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  position: relative;
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: expand 2s ease-in-out infinite;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.hero-badge i {
  color: var(--accent-color);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes ping {
  75%, 100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

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

@keyframes expand {
  0%, 100% {
    width: 100px;
  }
  50% {
    width: 150px;
  }
}

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

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-link i {
  font-size: 1rem;
}

/* Floating decorations */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.1;
  animation: floatRandom 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.floating-icon:nth-child(4) {
  top: 15%;
  right: 25%;
  animation-delay: 1s;
  font-size: 1.8rem;
}

.floating-icon:nth-child(5) {
  bottom: 20%;
  right: 30%;
  animation-delay: 3s;
  font-size: 2.2rem;
}

.floating-icon:nth-child(6) {
  top: 45%;
  left: 5%;
  animation-delay: 5s;
  font-size: 1.6rem;
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 30%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  left: 50%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 70%;
  animation-delay: 1s;
}

.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 85%;
  animation-delay: 3s;
}

.particle:nth-child(6) {
  width: 7px;
  height: 7px;
  left: 90%;
  animation-delay: 5s;
}

/* Hero Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape-circle,
.shape-triangle,
.shape-square {
  position: absolute;
  opacity: 0.05;
  animation: shapeRotate 15s linear infinite;
}

.shape-circle {
  width: 100px;
  height: 100px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid var(--accent-color);
  bottom: 15%;
  left: 15%;
  animation-delay: 5s;
}

.shape-square {
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary-color);
  top: 70%;
  right: 20%;
  animation-delay: 10s;
}

/* Floating Text */
.floating-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-word {
  position: absolute;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-secondary);
  opacity: 0.1;
  animation: wordFloat 12s ease-in-out infinite;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.floating-word:nth-child(1) {
  top: 25%;
  left: 5%;
  animation-delay: 0s;
}

.floating-word:nth-child(2) {
  bottom: 25%;
  right: 5%;
  animation-delay: 4s;
}

.floating-word:nth-child(3) {
  top: 50%;
  left: 2%;
  animation-delay: 8s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes shapeRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes wordFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(0px) rotate(-5deg);
    opacity: 0.15;
  }
  75% {
    transform: translateY(-10px) rotate(3deg);
    opacity: 0.2;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 10;
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Different positioning for different sections */
.hero .scroll-indicator {
  bottom: 2rem;
}

.section .scroll-indicator {
  position: relative;
  bottom: auto;
  margin: 2rem auto 0;
  transform: none;
  left: auto;
}

.scroll-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.scroll-arrow i {
  color: var(--primary-color);
  font-size: 0.9rem;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator:hover .scroll-text {
  color: var(--primary-color);
  opacity: 1;
}

.scroll-indicator:hover .scroll-arrow {
  background: var(--primary-color);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.scroll-indicator:hover .scroll-arrow i {
  color: white;
  animation-play-state: paused;
  transform: translateY(2px);
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

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

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.scroll-to-top i {
  color: white;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
  transform: translateY(-2px);
}

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

/* Section Styles */
.section {
  margin-bottom: 6rem;
  position: relative;
}

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

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-header h2 i {
  color: var(--accent-color);
}

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

/* Features & Pricing Side-by-Side Layout */
.features-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.features-block,
.pricing-block {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.6s ease-out;
}

/* Staggered animation for blocks */
.features-block {
  animation-delay: 0.2s;
}

.pricing-block {
  animation-delay: 0.4s;
}

.features-block::before,
.pricing-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.features-block:hover::before,
.pricing-block:hover::before {
  transform: scaleX(1);
}

.features-block:hover,
.pricing-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

/* Add animated background pattern */
.features-block::after,
.pricing-block::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.pricing-block::after {
  animation-delay: 2s;
}

.block-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.block-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.block-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.block-header h2 i {
  color: var(--accent-color);
  animation: iconBounce 2s ease-in-out infinite;
}

.block-header p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Features List Styles */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-item:hover::before {
  transform: scaleY(1);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

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

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

.feature-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.feature-content p:last-child {
  margin-bottom: 0;
}

.feature-description {
  color: var(--text-secondary);
  margin-bottom: 1rem !important;
  font-style: italic;
  font-size: 0.95rem;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  padding-left: 1rem;
  font-size: 0.9rem;
}

.feature-list li:hover {
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

.feature-list li i {
  color: var(--primary-color);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.feature-list li:hover i {
  transform: scale(1.2);
}

/* Pricing Options Styles */
.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card.compact {
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.compact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.pricing-card.compact:hover::before {
  opacity: 0.03;
}

.pricing-card.compact:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
  border-color: var(--primary-color);
}

.pricing-card.compact .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.pricing-card.compact .pricing-header h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
}

.pricing-card.compact .price {
  margin-bottom: 0.5rem;
  position: relative;
}

.pricing-card.compact .price::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gradient-primary);
}

.pricing-card.compact .currency {
  font-size: 1.5rem;
}

.pricing-card.compact .amount {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card.compact .pricing-features {
  margin-bottom: 2rem;
}

.pricing-card.compact .pricing-feature {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.pricing-card.compact .pricing-feature:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.pricing-card.compact .pricing-feature i {
  color: var(--success-color);
  animation: checkmark 0.5s ease-out;
}

.pricing-card.compact .btn-pricing {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.pricing-card.compact .btn-pricing::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: all 0.5s ease;
}

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

/* Add new keyframe animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

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

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Legacy Features Grid - Keep for other sections if needed */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Bot Gallery Section */
.bot-gallery {
  max-width: 1000px;
  margin: 0 auto;
}

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

.gallery-item {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: galleryFadeIn 0.6s ease-out;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  animation: bounce 2s infinite;
}

.gallery-overlay span {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Staggered animation for gallery items */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
  border-color: var(--primary-color);
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Add a beautiful overlay with gradient and icon */
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.2) 0%, 
    rgba(59, 130, 246, 0.1) 50%, 
    rgba(37, 99, 235, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-item::after {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  color: white;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Add animated border effect */
.gallery-item {
  position: relative;
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
  border-radius: 1.5rem;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  animation: borderGlow 3s ease-in-out infinite;
}

.gallery-item:hover::before {
  opacity: 0.5;
}

@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.2);
}

#lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  max-width: 600px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.lightbox-prev {
  margin-left: -60px;
}

.lightbox-next {
  margin-right: -60px;
}

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

/* Bot Preview Section - Keep for legacy support */
.bot-preview-container {
  max-width: 800px;
  margin: 0 auto;
}

.bot-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.bot-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px -12px rgba(0, 0, 0, 0.4);
}

.bot-preview-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.bot-image-wrapper:hover .bot-preview-image {
  transform: scale(1.02);
}

.image-caption {
  padding: 1.5rem 2rem;
  text-align: center;
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
}

.image-caption p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
  font-style: italic;
}

/* Demo Section - Keep for legacy support */
.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.demo-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.demo-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.demo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(37, 99, 235, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.demo-wrapper:hover .demo-overlay {
  opacity: 1;
}

.demo-wrapper:hover .demo-image {
  transform: scale(1.05);
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface-color);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
}

.demo-feature i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.demo-feature span {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface-color);
  border: 2px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.pricing-featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.pricing-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

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

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.pricing-feature i {
  color: var(--success-color);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.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.6s ease;
}

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

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
  transition: all 0s;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  border: 2px solid transparent;
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
  animation-play-state: paused;
}

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

.btn-secondary {
  background: var(--surface-color);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  position: relative;
}

.btn-secondary::before {
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-secondary:hover {
  background: transparent;
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-pricing {
  width: 100%;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: 2px solid transparent;
  position: relative;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

.btn-featured {
  background: var(--gradient-primary);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-large {
  padding: 1.125rem 2rem;
  font-size: 1.1rem;
}

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

/* CTA Section */
.cta-section {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 2rem;
  padding: 4rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.05;
  z-index: -1;
}

.cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--surface-color) 0%, var(--bg-color) 100%);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.6;
}

.footer::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.footer-link:hover::before {
  width: 100%;
}

.footer-link i {
  transition: transform 0.3s ease;
}

.footer-link:hover i {
  transform: scale(1.2) rotate(5deg);
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  opacity: 0.8;
  animation: fadeIn 1s ease 0.5s both;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatRandom {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(5deg);
  }
  66% {
    transform: translateY(-5px) rotate(-5deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 1rem;
    min-height: 90vh;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .hero-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-link {
    padding: 0.75rem 1.5rem;
    min-width: 180px;
    justify-content: center;
  }
  
  .features-pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-block,
  .pricing-block {
    padding: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item {
    border-radius: 0.75rem;
  }
  
  .bot-image-wrapper {
    border-radius: 1rem;
  }
  
  .image-caption {
    padding: 1rem 1.5rem;
  }
  
  .demo-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-featured {
    transform: none;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .floating-icon {
    display: none;
  }
  
  .container {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-icon {
    font-size: 3rem;
  }
  
  .hero-links {
    gap: 0.75rem;
  }
  
  .hero-link {
    font-size: 0.9rem;
    padding: 0.625rem 1.25rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .features-block,
  .pricing-block {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    gap: 0.75rem;
    margin: 0 -0.5rem;
  }
  
  .gallery-item {
    border-radius: 0.5rem;
  }
  
  .bot-preview-container {
    margin: 0 -1rem;
  }
  
  .bot-image-wrapper {
    border-radius: 0.75rem;
  }
  
  .image-caption {
    padding: 1rem;
  }
  
  .image-caption p {
    font-size: 0.875rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .pricing-card.compact {
    padding: 1.25rem;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .cta-section {
    padding: 3rem 1.5rem;
    border-radius: 1rem;
  }
  
  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top i {
    font-size: 1rem;
  }
  
  .scroll-indicator {
    bottom: 1rem;
    margin: 1.5rem auto 0;
  }
  
  .hero .scroll-indicator {
    bottom: 1rem;
  }
  
  .scroll-text {
    font-size: 0.75rem;
  }
  
  .scroll-arrow {
    width: 25px;
    height: 25px;
  }
  
  .scroll-arrow i {
    font-size: 0.8rem;
  }
}
