.trust-factory {
  width: 100%;
  padding: 70px 0 90px;
  background: #f9f9f9;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.trust-factory__title {
  margin: 0 0 50px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
}


.trust-factory__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 67%;
  margin: 0 auto;
}

.trust-factory__grid--two {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.trust-factory__card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.trust-factory__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.trust-factory__icon {
  width: 36px;
  height: 36px;
}

.trust-factory__number {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  color: #d9d9d9;
}

.trust-factory__card-title {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #1c1c1c;
}

.trust-factory__card-text {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
}

.trust-factory__actions {
  margin-top: 48px;
  text-align: center;
}

.trust-factory__cta {
  display: inline-block;
  min-width: 240px;
  padding: 14px 72px;
  border: none;
  border-radius: 999px;
  background: #1c1c1c;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.trust-factory__cta:hover {
  background: #333;
}

@media (max-width: 900px) {
  .trust-factory__grid {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
  }

  .trust-factory__grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-factory {
    padding: 50px 0 60px;
  }

  .trust-factory__title {
    font-size: 26px;
    margin-bottom: 32px;
    padding: 0 20px;
  }

  .trust-factory__grid,
  .trust-factory__grid--two {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }
}
