/* Hero section */
.hero-section {
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--color-accent-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0.3;
  pointer-events: none;
}

/* Stats section */
.stats-section {
  padding: var(--space-xl) 0;
  position: relative;
}

/* Info section */
.info-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-bg-secondary);
  margin: var(--space-xl) 0;
}

/* CTA section */
.cta-section {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.cta-text {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero-section {
    padding: var(--space-xl) 0;
  }
  
  .stats-section,
  .info-section {
    padding: var(--space-lg) 0;
  }
  
  .cta-section {
    padding: var(--space-xl) 0;
  }
}