/* =========================================
   Секция Trust (Всё по-честному)
   ========================================= */
.trust {
  position: relative;
  width: 100%;
  padding: 60px 0 60px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

/* Фоновое изображение с наложением */
.trust::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #150027;
  background-image: url('../../img/trust.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: scroll;
  background-blend-mode: overlay;
  pointer-events: none;
}

.trust__inner {
  position: relative;
  z-index: 1;
  max-width: 1700px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Заголовок */
.trust__title {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 62px;
}

.trust__title--white { color: #FFFFFF; }
.trust__title--yellow { color: #FFCD02; }

/* Описание */
.trust__desc {
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
  max-width: 800px;
  margin-bottom: 62px;
}

/* Карточки */
.trust__cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  width: 100%;
}

.trust__card {
  flex: 1 1 250px;
  max-width: 320px;
  background: transparent;
  border: 2px solid #BD39FA;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.trust__card-icon {
  height: 55px;
  width: auto;
  margin-bottom: 20px;
}

.trust__card-title {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #FFCD02;
  margin-bottom: 12px;
}

.trust__card-text {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.4;
  max-width: 220px;
}

/* Широкое изображение */
.trust__image {
  width: 90%;
  max-width: 100%;
  margin-bottom: 80px;
}

/* Адаптив */
@media (max-width: 768px) {
  .trust__inner {
    padding: 0 15px;
  }
  .trust__title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .trust__desc {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .trust__cards {
    gap: 20px;
    margin-bottom: 50px;
  }
  .trust__card {
    flex: 1 1 200px;
    max-width: 280px;
    padding: 20px 15px;
  }
  .trust__card-title {
    font-size: 18px;
  }
  .trust__card-text {
    font-size: 14px;
  }
  .trust__image {
    margin-bottom: 50px;
  }
}

/* Мобильные (≤640px) — скрываем pic.png */
@media (max-width: 640px) {
  .trust__image {
    display: none;
  }
}