
.heading {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 32px;
  text-wrap: balance;
}

.body {
  font-size: 18px;
  line-height: 1.7;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  text-align: center;
  opacity: 0; /* Hidden by default */
  animation: fadeInUp 0.8s ease-out forwards;
}

.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  color: rgb(var(--color-base-primary));
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  line-height: 1.4;
}
