/* Counter Style 02 — Outline numbers (text-stroke) */
.count-number {
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
  font-family: 'Space Grotesk', sans-serif;
}
.count-number .counter-value {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 2px #1D83C1;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.count-number .prefix {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1.5px #1D83C1;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cv2-line {
  width: 60px; height: 2px;
  background: #ddd;
  margin: 18px auto 0;
  border-radius: 1px;
}
.cv2-lbl {
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #555 !important;
  margin-top: 12px;
}
.cv2-cell {
  text-align: center;
  padding: 10px;
  border: none;
}
/* Environment counters — outline style */
.env-num {
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
  font-family: 'Space Grotesk', sans-serif;
}
.env-num .counter-value {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 2px #1D83C1;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.env-num .env-decimal,
.env-num .suffix {
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-text-stroke: 1.5px #1D83C1;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.env-stat.hi .env-num .counter-value,
.env-stat.hi .env-num .env-decimal,
.env-stat.hi .env-num .suffix {
  -webkit-text-stroke-color: #fff;
}