/* =============================================
   STATS STRIP — live counters
   OUR IMPACT AT A GLANCE section
   ============================================= */

#stats { background: #E8F2EC; padding: 44px 0; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #d0e8da;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.stat-cell {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid #d0e8da;
  position: relative;
}
.stat-cell:last-child { border-right: none; }

.stat-num {
  display: block;
  font-size: 42px;
  font-weight: bold;
  color: #0F3D2E;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  transition: opacity 0.3s;
}
.stat-num.loading { opacity: 0.3; }
.stat-lbl {
  font-size: 13px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
}
.stat-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { border-bottom: 1px solid #d0e8da; }
  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) { border-bottom: none; }
}
@media (max-width: 480px) {
  .stat-num  { font-size: 32px; }
  .stat-cell { padding: 22px 16px; }
}
