/* Mobile First */
.social-proof-section {
  padding: 40px 0;
}

.sp-card {
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100% !important;
}

.sp-icon {
  width: 80px;
  height: 80px;
  padding: 25px;
  border-radius: 50%;
  /* background: #f9f9f9; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.sp-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.sp-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}

.sp-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #555;
}

.row.social-proof {
  row-gap: 20px;
}

/* Mobile Small */
@media (max-width: 320px) {
  .sp-card {
    border-radius: 20px;
    padding: 26px;
  }

  .sp-icon {
    margin-bottom: 12px;
  }

  .sp-title {
    margin-bottom: 12px;
  }
}

/* Tablet Styles */
@media (min-width: 768px) {
  .row.social-proof {
    column-gap: 30px;
    justify-content: center;
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  .social-proof-section {
    padding: 60px 0;
  }

  .card-sp {
    max-width: 350px;
  }

  .row.social-proof {
    column-gap: 20px;
  }
}

/* Desktop Large Styles */
@media (min-width: 1440px) {
  .social-proof-section {
    padding: 100px 0;
  }

  .row.social-proof {
    column-gap: 40px;
    justify-content: center;
  }

  .card-sp {
    max-width: 400px;
    height: 440px;
  }

  .sp-card {
    border-radius: 40px;
    padding: 45px;
  }

  .sp-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 40px;
  }

  .sp-icon img {
    width: 40px;
    height: 40px;
  }

  .sp-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .sp-desc {
    font-size: 20px;
    line-height: 1.4;
  }
}
