/* ==========================================================================
   stats.css — green stats / metrics band
   Self-contained, includes its own responsive rules.
   ========================================================================== */

.tp-stats {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem;
  color: var(--tp-white);
  background:
    radial-gradient(120% 140% at 50% 0%, #0c8b40 0%, #097736 45%, #066b30 100%);
  box-shadow: 0 18px 40px rgba(9, 119, 54, 0.22);
}

/* subtle vertical light streaks like the reference */
.tp-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 60px 100%,
    radial-gradient(60% 90% at 50% 120%, rgba(255, 255, 255, 0.10), transparent 70%);
  pointer-events: none;
}

.tp-stats__grid {
  position: relative;
  z-index: 1;
}

.tp-stat {
  text-align: center;
  padding: 0.5rem 0.25rem;
}

.tp-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--tp-white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tp-stat__icon img {
  width: 30px;
  height: 30px;
}

.tp-stat__num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.tp-stat__label {
  margin-top: 0.2rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Responsive — stats
   ========================================================================== */
@media (max-width: 575.98px) {
  .tp-stats {
    padding: 2rem 1rem;
    border-radius: 1rem;
  }

  .tp-stat__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.6rem;
  }

  .tp-stat__icon img {
    width: 26px;
    height: 26px;
  }
}
