/* ═══════════════════════════════════════════════
   WAJHA AGENCY — HERO.CSS
   Rule: Section-specific styling only. Uses tokens for colors/sizes.
   ═══════════════════════════════════════════════ */

#hero {
  padding-top: calc(72px + var(--section-padding));
  padding-bottom: var(--section-padding);
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-bg-page);
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: var(--z-raised);
}

.hero-title {
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--text-6xl);
    max-width: 900px;
  }
}

.hero-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 700px;
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: var(--text-xl);
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  width: 100%;
  margin-bottom: var(--space-12);
}

@media (min-width: 600px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  padding-block: var(--space-6);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  width: 100%;
  max-width: 700px;
}

@media (min-width: 600px) {
  .hero-stats {
    gap: var(--space-12);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-brand-primary-light);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: var(--text-3xl);
  }
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: var(--space-1);
}

/* Background Glow Effects */
.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(var(--color-brand-primary-rgb), 0.15) 0%, rgba(var(--color-bg-page-rgb), 0) 70%);
  z-index: var(--z-base);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(var(--color-brand-accent-rgb), 0.08) 0%, rgba(var(--color-bg-page-rgb), 0) 70%);
  z-index: var(--z-base);
  pointer-events: none;
}
