/* ═══════════════════════════════════════
   HERO SECTIONS
   ═══════════════════════════════════════ */

/* ── Homepage Hero (dark, with particles) ── */
.hero {
  position: relative;
  background: var(--gradient-hero);
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-brand-blue-light);
  margin-bottom: var(--space-md);
  padding: 6px 16px;
  border: 1px solid rgba(75, 139, 245, 0.3);
  border-radius: var(--radius-full);
}

.hero__title {
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-slate-300);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

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

/* ── Interior Page Hero (lighter, shorter) ── */
.hero--interior {
  min-height: auto;
  padding: 160px 0 80px;
  background: var(--gradient-hero);
}

.hero--interior .hero__title {
  font-size: 3rem;
}

.hero--interior .hero__subtitle {
  font-size: 1.1rem;
}

/* ── Hero with centered text ── */
.hero--centered .hero__content {
  text-align: center;
  margin: 0 auto;
}

.hero--centered .hero__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero--centered .hero__actions {
  justify-content: center;
}

/* ── Hero Stats Bar ── */
.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--color-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
