.social-proof {
  margin: 160px auto;
  max-width: 1264px;
  padding: 0 32px;
}

.soc-top {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-end;
}

.soc-h2 {
  max-width: 480px;
}

.soc-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.soc-item {
  flex: 1 1 30%;
  margin: 16px 0;
}

.soc-value {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.soc-value::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background-color: #E5E7EB;
  left: 0;
  bottom: 0;
}

@media (max-width: 1100px) {
  .soc-item {
    flex: 1 1 40%;
  }
}
@media (max-width: 768px) {
  .social-proof {
    margin: 64px 0;
    padding: 0 16px;
  }
  .soc-wrap {
    margin-top: 24px;
  }
  .soc-top {
    gap: 16px;
  }
  .soc-item {
    flex: 1 1 50%;
    margin: 0;
  }
}