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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  overflow-x: hidden;
  background: #000000;
}

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

/* Particles Background */
#particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

#particles-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #00ffff, transparent),
    radial-gradient(2px 2px at 40px 70px, #ff00ff, transparent),
    radial-gradient(1px 1px at 90px 40px, #ffff00, transparent),
    radial-gradient(1px 1px at 130px 80px, #ff0080, transparent),
    radial-gradient(2px 2px at 160px 30px, #00ff80, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 20s linear infinite;
  opacity: 0.6;
}

@keyframes sparkle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-200px); }
}

/* Utility Classes */
.highlight-gradient {
  background: linear-gradient(135deg, #ff0080 0%, #ff8c00 25%, #40e0d0 50%, #ff1493 75%, #00ff7f 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  animation: gradientShift 4s ease-in-out infinite;
}

.ai-text {
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  animation: aiGlow 3s ease-in-out infinite alternate;
}

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

@keyframes aiGlow {
  0% { 
    background-position: 0% 50%;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
  }
  100% { 
    background-position: 100% 50%;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.8));
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff0080 0%, #ff8c00 25%, #40e0d0 50%, #ff1493 75%, #00ff7f 100%);
  background-size: 300% 300%;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 40px rgba(255, 0, 128, 0.4);
  position: relative;
  overflow: hidden;
  animation: gradientShift 4s ease-in-out infinite;
}

.section-badge::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.8s;
}

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

.section-badge.light {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(30px);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 10px 50px rgba(0, 255, 255, 0.2);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.ai-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid #00ffff;
  border-radius: 15px;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.nav-logo h2 {
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
}

.ai-badge {
  background: linear-gradient(135deg, #ff0080 0%, #00ffff 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  margin-left: 8px;
  box-shadow: 0 4px 20px rgba(255, 0, 128, 0.4);
}

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

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1rem;
}

.nav-link:hover {
  color: #00ffff;
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -8px;
  left: 50%;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.cta-button {
  background: linear-gradient(135deg, #ff0080 0%, #ff8c00 25%, #40e0d0 50%, #ff1493 75%, #00ff7f 100%);
  background-size: 300% 300%;
  color: white !important;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(255, 0, 128, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: gradientShift 4s ease-in-out infinite;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(255, 0, 128, 0.6);
}

.cta-button::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #00ffff;
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(1deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  color: #00ffff;
  padding: 16px 32px;
  border-radius: 50px;
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero-badge i {
  color: #ffff00;
  font-size: 1.2rem;
  animation: robotPulse 2s ease-in-out infinite;
}

@keyframes robotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: white;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  letter-spacing: -2px;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 20px 25px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.4);
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.btn-primary {
  background: linear-gradient(135deg, #ff0080 0%, #ff8c00 25%, #40e0d0 50%, #ff1493 75%, #00ff7f 100%);
  background-size: 300% 300%;
  color: white;
  box-shadow: 0 15px 50px rgba(255, 0, 128, 0.4);
  animation: gradientShift 4s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(255, 0, 128, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #00ffff;
  border: 2px solid rgba(0, 255, 255, 0.5);
  backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00ffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.3);
}

/* AI Demo Modal */
.ai-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  margin: 5% auto;
  padding: 0;
  border-radius: 25px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 25px 80px rgba(0, 255, 255, 0.3);
  border: 2px solid rgba(0, 255, 255, 0.3);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: #000;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close {
  background: none;
  border: none;
  color: #000;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
}

.modal-body {
  padding: 40px;
}

.ai-interface {
  text-align: center;
}

.ai-avatar {
  margin-bottom: 30px;
}

.avatar-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  font-size: 2.5rem;
  color: #000;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border: 3px solid #00ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.ai-conversation {
  margin-bottom: 30px;
}

.ai-message {
  text-align: left;
}

.message-bubble {
  background: rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  margin-bottom: 15px;
}

.typing-indicator {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #00ffff;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.ai-text-content {
  color: white;
  font-size: 1.1rem;
  margin: 0;
}

.ai-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff0080 0%, #00ffff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  color: #00ffff;
  font-size: 1.5rem;
  font-weight: 800;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Hero Right Visual */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-visual {
  position: relative;
  z-index: 2;
}

.hologram-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hologram-ring {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.ring-1 {
  width: 200px;
  height: 200px;
  border-color: #00ffff;
  animation-duration: 8s;
}

.ring-2 {
  width: 250px;
  height: 250px;
  border-color: #ff00ff;
  animation-duration: 12s;
  animation-direction: reverse;
}

.ring-3 {
  width: 300px;
  height: 300px;
  border-color: #ffff00;
  animation-duration: 15s;
}

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

.hologram-center {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #000;
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
  animation: hologramPulse 3s ease-in-out infinite;
}

@keyframes hologramPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 50px rgba(0, 255, 255, 0.5); }
  50% { transform: scale(1.1); box-shadow: 0 0 80px rgba(255, 0, 255, 0.8); }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(30px);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  animation: float 4s ease-in-out infinite;
  min-width: 200px;
}

.card-ai {
  top: 50px;
  right: -50px;
  animation-delay: 0s;
}

.card-analytics {
  bottom: 150px;
  left: -80px;
  animation-delay: 1.5s;
}

.card-network {
  bottom: 50px;
  right: -30px;
  animation-delay: 3s;
}

.floating-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.4);
}

.floating-card .card-content h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #00ffff;
  margin-bottom: 4px;
}

.floating-card .card-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.card-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #00ffff;
  border-radius: 20px;
  animation: pulse 3s infinite;
}

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

/* AI Features Section */
.ai-features {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.ai-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
  animation: aiBackground 15s ease-in-out infinite;
}

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

.section-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  letter-spacing: -2px;
  font-family: 'Space Grotesk', sans-serif;
}

.section-header p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.ai-features-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.ai-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px);
  padding: 4rem;
  border-radius: 30px;
  border: 2px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.ai-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.4);
}

.ai-feature-card:nth-child(even) {
  direction: rtl;
}

.ai-feature-card:nth-child(even) .feature-info {
  direction: ltr;
}

.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

/* AI Brain Visual */
.ai-brain {
  position: relative;
  width: 200px;
  height: 200px;
}

.brain-core {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: brainPulse 3s ease-in-out infinite;
}

@keyframes brainPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

.neural-network {
  position: absolute;
  width: 100%;
  height: 100%;
}

.neuron {
  width: 20px;
  height: 20px;
  background: #ffff00;
  border-radius: 50%;
  position: absolute;
  animation: neuronPulse 2s ease-in-out infinite;
}

.neuron:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.neuron:nth-child(2) { top: 20%; right: 20%; animation-delay: 0.5s; }
.neuron:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1s; }
.neuron:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 1.5s; }

@keyframes neuronPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* Predictive Chart Visual */
.predictive-chart {
  position: relative;
  width: 250px;
  height: 200px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 20px;
  border: 2px solid rgba(0, 255, 255, 0.3);
}

.chart-line {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: 2px;
  background: linear-gradient(90deg, #ff0080 0%, #00ffff 100%);
  animation: chartGrow 3s ease-in-out infinite;
}

@keyframes chartGrow {
  0% { width: 0; }
  100% { width: calc(100% - 40px); }
}

.data-points {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}

.data-point {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #00ffff;
  border-radius: 50%;
  animation: dataPointPulse 2s ease-in-out infinite;
}

.data-point:nth-child(1) { bottom: 0; left: 25%; animation-delay: 0s; }
.data-point:nth-child(2) { bottom: 30%; left: 50%; animation-delay: 0.5s; }
.data-point:nth-child(3) { bottom: 60%; left: 75%; animation-delay: 1s; }
.data-point:nth-child(4) { bottom: 90%; right: 0; animation-delay: 1.5s; }

@keyframes dataPointPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(2); opacity: 1; }
}

/* Smart Network Visual */
.smart-network {
  position: relative;
  width: 250px;
  height: 250px;
}

.network-node {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  border-radius: 50%;
  animation: networkPulse 3s ease-in-out infinite;
}

.network-node.central {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.network-node:nth-child(2) { top: 20%; left: 20%; animation-delay: 0.5s; }
.network-node:nth-child(3) { top: 20%; right: 20%; animation-delay: 1s; }
.network-node:nth-child(4) { bottom: 20%; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }

@keyframes networkPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

.network-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #00ffff 0%, #ff00ff 100%);
  animation: connectionFlow 2s ease-in-out infinite;
}

.connection:nth-child(1) {
  top: 35%;
  left: 35%;
  width: 30%;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.connection:nth-child(2) {
  top: 35%;
  right: 35%;
  width: 30%;
  transform: rotate(-45deg);
  animation-delay: 0.7s;
}

.connection:nth-child(3) {
  bottom: 35%;
  left: 50%;
  width: 30%;
  transform: translateX(-50%) rotate(90deg);
  animation-delay: 1.4s;
}

@keyframes connectionFlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.feature-info h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-info h3 i {
  color: #00ffff;
  font-size: 1.8rem;
}

.feature-info p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.feature-benefits i {
  color: #00ff7f;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(0, 255, 127, 0.5);
}

/* Stats Section */
.stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px);
  border-radius: 25px;
  border: 2px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::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.8s;
}

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

.stat-item:hover {
  transform: translateY(-15px);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 25px 70px rgba(0, 255, 255, 0.2);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4);
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Opportunity Section */
.opportunity {
  padding: 120px 0;
  background: linear-gradient(135deg, #ff0080 0%, #ff8c00 25%, #40e0d0 50%, #ff1493 75%, #00ff7f 100%);
  background-size: 400% 400%;
  color: white;
  position: relative;
  overflow: hidden;
  animation: gradientShift 8s ease-in-out infinite;
}

.opportunity::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(40px); }
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.opportunity-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(30px);
  padding: 3.5rem;
  border-radius: 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.opportunity-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.opportunity-card.featured {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.opportunity-card.featured:hover {
  transform: scale(1.05) translateY(-20px);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffff00 0%, #ff00ff 100%);
  color: #000;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 40px rgba(255, 255, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-header {
  text-align: center;
  margin-bottom: 3rem;
}

.card-header .card-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  animation: iconFloat 4s ease-in-out infinite;
}

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

.card-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  font-family: 'Space Grotesk', sans-serif;
}

.card-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
}

.card-benefits {
  list-style: none;
}

.card-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.2rem;
  color: white;
  font-weight: 600;
  padding: 10px 0;
  font-size: 1.1rem;
}

.card-benefits i {
  color: #00ff88;
  font-size: 1.2rem;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
}

/* Income Plan Section */
.income-plan {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.income-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

.income-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.income-left h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: white;
  letter-spacing: -2px;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.income-left > p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

.income-types {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.income-type {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px);
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 255, 0.2);
}

.income-type:hover {
  transform: translateX(20px);
  box-shadow: 0 25px 70px rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.4);
}

.type-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.4);
}

.type-content h4 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: white;
}

.type-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.earning-range {
  background: linear-gradient(135deg, #ff0080 0%, #00ffff 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(255, 0, 128, 0.4);
}

/* AI Income Dashboard */
.ai-income-dashboard {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(30px);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 25px 70px rgba(0, 255, 255, 0.2);
  border: 2px solid rgba(0, 255, 255, 0.3);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.dashboard-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-header i {
  color: #00ffff;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00ff7f;
  font-weight: 600;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #00ff7f;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.income-projection {
  margin-bottom: 3rem;
}

.projection-card {
  background: rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.projection-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4);
}

.projection-data {
  flex: 1;
}

.projection-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #00ffff;
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.projection-label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.confidence-bar {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.confidence-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff7f 0%, #00ffff 100%);
  border-radius: 4px;
  transition: width 2s ease-in-out;
}

.confidence-text {
  position: absolute;
  right: 0;
  top: -25px;
  color: #00ff7f;
  font-size: 0.9rem;
  font-weight: 600;
}

.growth-chart {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.chart-bar {
  position: relative;
}

.ai-bar {
  height: 50px;
  background: linear-gradient(90deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  width: 0%;
  transition: width 2s ease-in-out;
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.3);
}

.ai-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: aiShimmer 3s infinite;
}

@keyframes aiShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.ai-bar.animated {
  width: var(--percentage);
}

.bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.bar-title {
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
}

.bar-amount {
  font-weight: 900;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
  font-family: 'Space Grotesk', sans-serif;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 75%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px);
  padding: 3.5rem;
  border-radius: 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 2px solid rgba(0, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.testimonial-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  animation: testimonialGlow 5s ease-in-out infinite;
}

@keyframes testimonialGlow {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.testimonial-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 35px 90px rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.4);
}

.testimonial-content {
  margin-bottom: 3rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4);
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: white;
  font-style: italic;
  padding-left: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.testimonial-author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 255, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.author-info h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.author-info > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.author-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.income-badge {
  background: linear-gradient(135deg, #ff0080 0%, #00ffff 100%);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 6px 25px rgba(255, 0, 128, 0.4);
}

.ai-badge-small {
  background: rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #00ffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(0, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Join Section */
.join {
  padding: 120px 0;
  background: linear-gradient(135deg, #ff0080 0%, #ff8c00 25%, #40e0d0 50%, #ff1493 75%, #00ff7f 100%);
  background-size: 400% 400%;
  color: white;
  position: relative;
  overflow: hidden;
  animation: gradientShift 8s ease-in-out infinite;
}

.join::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  animation: patternMove 25s linear infinite;
}

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

.join-header h2 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  letter-spacing: -2px;
  font-family: 'Space Grotesk', sans-serif;
}

.join-header p {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  opacity: 0.95;
  line-height: 1.7;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.join-form-container {
  display: flex;
  justify-content: center;
}

.join-form {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(30px);
  padding: 4.5rem;
  border-radius: 35px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 750px;
}

.form-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ai-form-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: #000;
  position: relative;
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.4);
}

.icon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border: 3px solid #00ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.form-header h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  font-family: 'Space Grotesk', sans-serif;
}

.form-header p {
  opacity: 0.9;
  font-size: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
}

.join-form input,
.join-form select {
  width: 100%;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.join-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.join-form input:focus,
.join-form select:focus {
  outline: none;
  border-color: rgba(0, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.2);
}

.btn-submit {
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
  color: #000;
  width: 100%;
  padding: 22px;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.3s ease;
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 255, 255, 0.6);
}

.ai-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.guarantee-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.guarantee-text {
  text-align: left;
}

.guarantee-text strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.guarantee-text span {
  opacity: 0.9;
  font-size: 1rem;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info h3 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: white;
  letter-spacing: -2px;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3.5rem;
  line-height: 1.9;
  font-size: 1.3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px);
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 255, 0.2);
}

.contact-method:hover {
  transform: translateX(20px);
  box-shadow: 0 25px 70px rgba(0, 255, 255, 0.2);
  border-color: rgba(0, 255, 255, 0.4);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.4);
}

.method-content h4 {
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: white;
  font-size: 1.4rem;
}

.method-content p {
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.method-content span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.contact-form-section {
  display: flex;
  justify-content: center;
}

.contact-form {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(30px);
  padding: 4rem;
  border-radius: 30px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 25px 70px rgba(0, 255, 255, 0.2);
  border: 2px solid rgba(0, 255, 255, 0.3);
}

.form-ai-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ai-assistant-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: #000;
  position: relative;
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.4);
}

.avatar-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border: 3px solid #00ffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.contact-form h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}

.contact-form p {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.contact-form .form-group {
  margin-bottom: 2.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 20px;
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.2);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  color: white;
  padding: 8rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 6rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.footer-main {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2.5rem;
}

.footer-logo .logo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 2rem;
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.4);
  position: relative;
}

.footer-logo h3 {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

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

.footer-social a {
  width: 70px;
  height: 70px;
  background: rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #00ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  border: 2px solid rgba(0, 255, 255, 0.3);
}

.footer-social a:hover {
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  color: #000;
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 255, 255, 0.4);
}

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

.footer-section h4 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: white;
}

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

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

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-section ul li a:hover {
  color: #00ffff;
  transform: translateX(10px);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 2px solid rgba(0, 255, 255, 0.2);
  padding-top: 3rem;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.footer-badges {
  display: flex;
  gap: 1.5rem;
}

.badge {
  background: rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #00ffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid rgba(0, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .income-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .ai-feature-card {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-right {
    order: -1;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 15px 50px rgba(0, 255, 255, 0.2);
    padding: 3rem 0;
    gap: 2rem;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
  }

  .nav-menu.active {
    left: 0;
  }

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

  .section-header h2 {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .opportunity-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-badges {
    justify-content: center;
  }

  .income-left h2,
  .contact-info h3 {
    font-size: 2.8rem;
  }

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

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

  .section-header h2 {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 15px;
  }

  .opportunity-card,
  .testimonial-card,
  .ai-feature-card {
    padding: 2.5rem;
  }

  .join-form,
  .contact-form {
    padding: 3rem;
  }

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

  .floating-card {
    padding: 1.5rem;
    min-width: 180px;
  }

  .hologram-container {
    width: 250px;
    height: 250px;
  }

  .ring-1 { width: 150px; height: 150px; }
  .ring-2 { width: 200px; height: 200px; }
  .ring-3 { width: 250px; height: 250px; }

  .hologram-center {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

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

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

::-webkit-scrollbar-track {
  background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00e6e6 0%, #e600e6 100%);
}

/* Loading Animation */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.loading {
  background: linear-gradient(90deg, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%);
  background-size: 200px 100%;
  animation: shimmer 2s infinite;
}