/* =========================================================
   PROOF / STATS — START
   ========================================================= */

.proof {
  background: var(--navy, #293896);
  color: var(--white);
  padding: var(--section-pad-top) 0 var(--section-pad-top);
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.proof__item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
}

.proof__icon {
  display: none;
}

.proof__copy {
  min-width: 0;
}

.proof__num {
  display: block;
  min-width: 4.5ch;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold, #f9a825);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.proof__num.is-counting {
  --tick-h: 1em;
  display: inline-flex;
  align-items: flex-start;
  height: var(--tick-h);
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 0.08em;
  box-sizing: content-box;
}

.proof__label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  text-wrap: pretty;
}

/* =========================================================
   PROOF — Responsive
   ========================================================= */

@media (max-width: 980px) {
  .proof__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .proof__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 0.75rem;
  }
  .proof__num {
    font-size: 1.55rem;
    min-width: 0;
  }
  .proof__label {
    font-size: 0.78rem;
  }
}

/* =========================================================
   PROOF — END
   ========================================================= */
