/* STATS STICKY */
.stats-section {
  position: relative;
  padding: 0;
}

.stats-inner {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

.stats-bg-text {
  position: absolute;
  font-size: 18vw;
  font-weight: 800;
  color: rgba(255, 255, 255, .015);
  letter-spacing: -10px;
  white-space: nowrap;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat-item:first-child {
  border-right: none;
}

.stat-num {
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 700;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -2px;
}

.stat-num .plus {
  font-size: .5em;
}

.stat-label {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  margin-top: 10px;
  letter-spacing: .5px;
}

.stats-spacer {
  height: 60vh;
}