/* =====================================================
   STATS COUNTER SECTION - HORIZONTAL SHOWCASE BAR
   Swiss Clean Aesthetics - Animated Business Data Metrics
===================================================== */

.ibr-stats {
  padding: 40px 0 70px;
  background: #ffffff;
  color: #0f172a;
  border-top: none;
  border-bottom: none;
  position: relative;
}

.ibr-stats__container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.ibr-stats__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px 40px;
  gap: 20px;
}

.ibr-stats__item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.ibr-stats__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #0a64c4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.ibr-stats__content {
  display: flex;
  flex-direction: column;
}

.ibr-stats__number-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.ibr-stats__counter {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.ibr-stats__suffix {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  color: #0a64c4;
}

.ibr-stats__label {
  font-size: 13.5px;
  font-weight: 600;
  color: #64748b;
  margin-top: 6px;
  line-height: 1.3;
}

.ibr-stats__divider {
  width: 1px;
  height: 48px;
  background: #cbd5e1;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .ibr-stats__bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    padding: 28px 24px;
  }
  .ibr-stats__divider {
    display: none;
  }
}

@media (max-width: 540px) {
  .ibr-stats__bar {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
