/* ═══════════════════════════════════════
   Social Proof Bar
   Дизайн-система: Swiss/Achromatic
   ═══════════════════════════════════════ */

.proof-bar {
  background: #F1F1F1;
}

.proof-bar__inner {
  max-width: 1570px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-bar__stat {
  padding: 42px 30px;
  text-align: center;
  position: relative;
}

.proof-bar__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(22, 22, 22, 0.14);
}

.proof-bar__number {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: #161616;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.proof-bar__star {
  color: #C8A94E;
  font-size: 28px;
}

.proof-bar__label {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #464646;
}

/* ═══════════════════════════════════════
   Responsive
   ═══════════════════════════════════════ */

@media (max-width: 1025px) {
  .proof-bar__number {
    font-size: 34px;
  }
  .proof-bar__stat {
    padding: 32px 20px;
  }
  .proof-bar__label {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

@media (max-width: 767px) {
  .proof-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .proof-bar__stat {
    padding: 24px 16px;
  }
  /* Убираем правый разделитель у 2-го элемента */
  .proof-bar__stat:nth-child(2)::after {
    display: none;
  }
  /* Нижняя граница для верхнего ряда */
  .proof-bar__stat:nth-child(1),
  .proof-bar__stat:nth-child(2) {
    border-bottom: 1px solid rgba(22, 22, 22, 0.14);
  }
  .proof-bar__number {
    font-size: 30px;
  }
  .proof-bar__star {
    font-size: 22px;
  }
  .proof-bar__label {
    font-size: 11px;
    letter-spacing: 1px;
  }
}
