/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  animation: heroEntrance 1s ease 0.2s both;
}

.hero__badge { animation: heroEntrance 0.8s ease 0.3s both; }
.hero__title { animation: heroEntrance 0.8s ease 0.5s both; }
.hero__description { animation: heroEntrance 0.8s ease 0.7s both; }
.hero__actions { animation: heroEntrance 0.8s ease 0.9s both; }
.hero__stats { animation: heroEntrance 0.8s ease 1.1s both; }

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #00E676;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-light);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero__title-accent {
  color: var(--color-accent);
}

.hero__description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  line-height: var(--line-height-relaxed);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__btn--primary {
  background: var(--color-accent);
  color: var(--text-light);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
}

.hero__btn--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(var(--color-accent-rgb), 0.4);
  color: var(--text-light);
}

.hero__btn--secondary {
  background: transparent;
  color: var(--text-light);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-fast);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: var(--text-base);
}

.hero__btn--secondary:hover {
  border-color: var(--text-light);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.hero__stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat-number {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-1);
}

@media (max-width: 768px) {
  .hero__stats {
    gap: var(--space-6);
    flex-wrap: wrap;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__btn--primary,
  .hero__btn--secondary {
    text-align: center;
  }
}
