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

:root {
  /* Neon Color Palette */
  --primary-dark: #0a0a0f;
  --secondary-dark: #111118;
  --tertiary-dark: #1a1a24;
  --accent-cyan: #00ffff;
  --accent-cyan-bright: #00ffff;
  --accent-purple: #8b5cf6;
  --accent-purple-bright: #a855f7;
  --accent-pink: #ec4899;
  --accent-pink-bright: #f97316;
  --accent-orange: #f97316;
  --text-white: #ffffff;
  --text-gray: #94a3b8;
  --text-gray-light: #cbd5e1;
  --text-muted: #64748b;

  /* Neon Glows */
  --glow-cyan: rgba(0, 255, 255, 0.5);
  --glow-purple: rgba(139, 92, 246, 0.5);
  --glow-pink: rgba(236, 72, 153, 0.5);
  --glow-orange: rgba(249, 115, 22, 0.5);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
  --gradient-bg: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
  --gradient-card: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-backdrop: blur(20px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  background: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Prevent horizontal scroll on mobile */
body, html {
  max-width: 100%;
  overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
  background: var(--primary-dark);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 10px;
  border: 2px solid var(--primary-dark);
  box-shadow:
    0 0 10px var(--glow-cyan),
    inset 0 0 5px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-cyan-bright), var(--accent-purple-bright));
  box-shadow:
    0 0 20px var(--glow-cyan),
    0 0 30px var(--glow-purple),
    inset 0 0 8px rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

::-webkit-scrollbar-corner {
  background: var(--primary-dark);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-cyan) var(--primary-dark);
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.glass-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.7;
}

.glass-effect::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
  opacity: 0.7;
}

.hover-glow {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.hover-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.hover-glow:hover::before {
  opacity: 0.3;
}

.hover-glow:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px rgba(0, 255, 255, 0.3),
    0 0 60px rgba(139, 92, 246, 0.2);
}

/* Image Slider */
.image-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 80px;
  background: var(--gradient-bg);
  /* Add padding to create space for border */
  padding: 3px;
}

.slider-border {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
  animation: gradientShift 3s ease-in-out infinite;
  padding: 2px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(0, 255, 255, 0.3),
    0 0 120px rgba(139, 92, 246, 0.2),
    inset 0 0 60px rgba(0, 0, 0, 0.3);
}

.slider-wrapper {
  display: flex;
  height: 100%;
  width: 200%; /* Two slides = 200% width */
  animation: slideShow 10s ease-in-out infinite;
}

.slide {
  width: 50%; /* Each slide takes 50% of wrapper (which is 100% of container) */
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Add a subtle fade effect during transitions */
.slider-wrapper {
  position: relative;
}

.slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.1) 20%, rgba(0,0,0,0.1) 80%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  animation: slideFade 10s ease-in-out infinite;
}

@keyframes slideFade {
  0%, 40%, 50%, 90%, 100% { opacity: 0; }
  45%, 55% { opacity: 0.3; }
}

.slide:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
}

/* Slider animations - Professional slideshow */
@keyframes slideShow {
  /* First image - 0% to 40% (4 seconds) */
  0% { transform: translateX(0); }
  40% { transform: translateX(0); }

  /* Transition to second image - 40% to 50% (1 second) */
  50% { transform: translateX(-50%); }

  /* Second image - 50% to 90% (4 seconds) */
  90% { transform: translateX(-50%); }

  /* Transition back to first image - 90% to 100% (1 second) */
  100% { transform: translateX(0); }
}

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

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--accent-cyan);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.indicator:hover {
  background: var(--accent-cyan);
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.indicator.active {
  background: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.4);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(0, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(0, 255, 255, 0.2);
}

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

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--text-white);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-gray-light);
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-menu a:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 15px var(--glow-cyan);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px var(--glow-cyan);
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  color: var(--accent-cyan);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 1001;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.mobile-menu-btn:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 20px var(--glow-cyan);
}

.mobile-menu-btn:active {
  opacity: 0.7;
  transform: scale(0.95);
}

.mobile-menu {
  display: block;
  width: 100%;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 255, 255, 0.3);
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  box-sizing: border-box;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 255, 255, 0.2);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
  padding: 1rem;
}

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

.mobile-menu a {
  display: block;
  padding: 1rem;
  color: var(--text-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 255, 255, 0.2);
  position: relative;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  background: rgba(0, 255, 255, 0.1);
  color: var(--accent-cyan);
  padding-left: 1.5rem;
  text-shadow: 0 0 10px var(--glow-cyan);
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-bg);
  animation: gradientShift 20s ease infinite;
  background-size: 400% 400%;
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, var(--glow-cyan) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, var(--glow-purple) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, var(--glow-pink) 0%, transparent 50%);
  animation: neonPulse 6s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes neonPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Animated particles background */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(34, 197, 94, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(34, 197, 94, 0.2), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(34, 197, 94, 0.4), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(34, 197, 94, 0.3), transparent),
    radial-gradient(2px 2px at 90% 40%, rgba(34, 197, 94, 0.2), transparent),
    radial-gradient(1px 1px at 33% 60%, rgba(34, 197, 94, 0.3), transparent);
  background-size: 200% 200%;
  animation: particleMove 20s linear infinite;
  opacity: 0.6;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero h1 .typing-text {
  display: inline-block;
  padding-right: 0.2em;
  min-height: 1.2em;
  border-right: 3px solid #22c55e;
  animation: blinkCursor 0.75s step-end infinite;
}

.hero h1 .typing-text-2 {
  display: inline-block;
  opacity: 0;
  padding-right: 0.2em;
  min-height: 1.2em;
  border-right: none;
  animation: none;
}

.hero h1 .typing-text-2.typing-active {
  opacity: 1 !important;
  border-right: 3px solid #22c55e !important;
  animation: blinkCursor 0.75s step-end infinite !important;
}

/* Fallback - show text immediately if JS fails */
.hero h1 .typing-text:empty::before {
  content: attr(data-text);
}

.hero h1 .typing-text-2:empty::before {
  content: attr(data-text);
}

@keyframes blinkCursor {
  0%, 50% {
    border-color: var(--accent-green);
  }
  51%, 100% {
    border-color: transparent;
  }
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-gray-light);
  margin-bottom: 3rem;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  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: 1rem;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-dark);
  box-shadow:
    0 4px 20px rgba(0, 255, 255, 0.3),
    0 0 40px rgba(139, 92, 246, 0.2);
  border: 1px solid transparent;
}

.btn-primary::before {
  background: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 30px rgba(0, 255, 255, 0.4),
    0 0 60px rgba(139, 92, 246, 0.3),
    0 0 80px rgba(236, 72, 153, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: var(--accent-cyan);
  backdrop-filter: blur(10px);
  position: relative;
}

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

.btn-secondary:hover::after {
  left: 0;
}

.btn-secondary:hover {
  color: var(--primary-dark);
  border-color: var(--accent-cyan);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(0, 255, 255, 0.3),
    0 0 40px rgba(0, 255, 255, 0.2);
}

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

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

/* Sections */
.section {
  padding: 5rem 1rem;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-title h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-gray);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

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

.card {
  padding: 2.5rem;
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card:hover::after {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(0, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.3);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-card);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.card-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover .card-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.card:hover .card-icon::before {
  opacity: 0.2;
}

.card-icon svg {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.card:hover .card-icon svg {
  transform: scale(1.2);
}

.card-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent-cyan);
}

.product-icon-large {
  width: 5rem;
  height: 5rem;
  background: var(--gradient-card);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-icon-large:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.product-icon-large svg {
  width: 3rem;
  height: 3rem;
  color: var(--accent-cyan);
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-white);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Feature List */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--primary-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: var(--text-white);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
footer {
  background: var(--secondary-dark);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  margin-top: 5rem;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

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

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-cyan);
  text-shadow: 0 0 10px var(--glow-cyan);
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.footer-section a:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px var(--glow-cyan);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.875rem;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

@keyframes rotateIn {
  from {
    transform: rotate(-10deg) scale(0.9);
    opacity: 0;
  }
  to {
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

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

.slide-up {
  animation: slideUp 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}

.rotate-in {
  animation: rotateIn 0.8s ease-out;
}

/* Stagger animation delays */
.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .image-slider {
    height: 300px;
    margin-top: 70px;
    padding: 2px;
  }

  .slider-border {
    padding: 1px;
  }

  .slider-container {
    height: 100%;
  }

  .slider-wrapper {
    width: 200%; /* Ensure proper width on tablets */
  }

  .slide {
    width: 50%; /* Ensure proper slide width on tablets */
  }

  .slider-indicators {
    bottom: 15px;
    gap: 8px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .hero {
    min-height: 85vh;
    padding-top: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0;
    overflow-x: visible;
  }

  .nav-content {
    height: 70px;
    padding: 0 1rem;
    gap: 0.5rem;
    overflow: visible;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    flex-shrink: 0;
    font-size: 1.1rem;
    padding: 0 1rem;
    white-space: nowrap;
  }

  .nav-menu {
    display: none !important;
    visibility: hidden !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 1001 !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .mobile-menu {
    display: block !important;
    visibility: visible !important;
  }
  
  nav {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
  }

  .hero {
    min-height: 80vh;
    padding-top: 90px;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: clamp(0.95rem, 4vw, 1.125rem);
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 0 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    margin-bottom: 2.5rem;
  }

  .section-title h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 0.75rem;
  }

  .section-title p {
    font-size: clamp(0.95rem, 3vw, 1.125rem);
    padding: 0 1rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .card {
    padding: 1.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .feature-item {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

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

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

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

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .amount {
    font-size: 3rem;
  }

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

  .testimonial-card {
    padding: 2rem;
  }

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

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .image-slider {
    height: 250px;
    margin-top: 70px;
    padding: 2px;
  }

  .slider-border {
    border-radius: 0.5rem;
  }

  .slider-container {
    border-radius: 0.4rem;
  }

  .slider-wrapper {
    width: 200%; /* Ensure proper width on mobile */
  }

  .slide {
    width: 50%; /* Ensure proper slide width on mobile */
  }

  .slider-indicators {
    bottom: 10px;
    gap: 6px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }

  .hero {
    min-height: 75vh;
    padding-top: 1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
  }

  .card {
    padding: 1.25rem;
  }

  .pricing-card {
    padding: 1.5rem 1rem;
  }

  .amount {
    font-size: 2.5rem;
  }

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

  .api-card {
    padding: 2rem 1.5rem;
  }

  .api-price {
    font-size: 2rem;
  }

  .api-price .amount {
    font-size: 2.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 0.625rem 0.875rem;
  }
}

@media (max-width: 360px) {
  .image-slider {
    height: 200px;
    margin-top: 70px;
    padding: 1px;
  }

  .slider-border {
    padding: 1px;
  }

  .slider-container {
    margin: 0;
  }

  .slider-wrapper {
    width: 200%; /* Ensure proper width on small mobile */
  }

  .slide {
    width: 50%; /* Ensure proper slide width on small mobile */
  }

  .slider-indicators {
    bottom: 8px;
    gap: 4px;
  }

  .indicator {
    width: 6px;
    height: 6px;
  }

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

  .hero p {
    font-size: 0.9rem;
  }

  .card {
    padding: 1rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
  }
}

/* Ripple effect for buttons */
.btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleAnimation 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Background Variations */
.bg-gradient {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 50%, var(--primary-dark) 100%);
}

.bg-section {
  background: rgba(30, 41, 59, 0.3);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  border-radius: 1rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--accent-cyan);
  box-shadow:
    0 12px 40px rgba(0, 255, 255, 0.3),
    0 0 60px rgba(0, 255, 255, 0.2);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.1;
}

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

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

.pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
}

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

.currency {
  font-size: 1.5rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.amount {
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.period {
  font-size: 1.125rem;
  color: var(--text-gray);
  font-weight: 500;
}

.pricing-header p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.pricing-features {
  margin: 2rem 0;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.feature-item span {
  color: var(--text-gray-light);
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.5rem;
  border-radius: 1rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--accent-cyan);
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.testimonial-content p {
  color: var(--text-gray-light);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.125rem;
}

.author-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
}

.author-info span {
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* Contact CTA Section */
.contact-cta {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* API Cards */
.apis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.api-card {
  padding: 2.5rem;
  border-radius: 1rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.api-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.api-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.3);
}

.api-card .card-icon {
  margin-bottom: 1.5rem;
}

.api-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.api-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  line-height: 1;
}

.api-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.api-price .amount {
  font-size: 3rem;
}

.api-card p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Price Badge */
.price-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
}

.price-badge .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-green);
}

.price-badge .currency {
  color: var(--text-gray-light);
  margin-left: 0.5rem;
}

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

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.3);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  line-height: 1;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

