/* Stats strip — [bh_stats_strip] */
.bh-stats-strip {
  width: 100%;
  padding: 56px 4% 56px;
  box-sizing: border-box;
}
.bh-stats-strip * { box-sizing: border-box; }

.bh-stats-strip__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  justify-items: center;
}

.bh-stats-strip__item {
  text-align: center;
  min-width: 0;
}

.bh-stats-strip__value {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.05;
  color: #0f172a;
  letter-spacing: 0.01em;
}

.bh-stats-strip__label {
  margin-top: 0.5rem;
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .bh-stats-strip__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .bh-stats-strip { padding: 32px 4% 36px; }
  .bh-stats-strip__inner { grid-template-columns: 1fr; gap: 18px; }
}

