.counter-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.13), rgba(16, 185, 129, 0.15));
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
}

.counter-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  font-size: 1.45rem;
}

.counter-label {
  font-size: 0.88rem;
  color: var(--muted, #64748b);
  margin-bottom: 4px;
}

.counter-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--text, #0f172a);
}

.counter-text {
  font-size: 0.95rem;
  color: var(--muted, #64748b);
  margin-top: 5px;
}

@media (max-width: 520px) {
  .counter-box {
    align-items: flex-start;
    padding: 18px;
  }

  .counter-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
  }
}
