/* ═══════════════════════════════════════════
   STATS — Simple Ribbon
   ═══════════════════════════════════════════ */
.stats {
  padding: 50px 0;
  background: var(--blue-900);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__item {
  padding: 1rem;
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
}
