.trust-bar {
  background: linear-gradient(
    90deg,
    var(--color-dark, #171c1e) 0%,
    var(--color-dark-soft, #2a3236) 50%,
    var(--color-dark, #171c1e) 100%
  );
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  border-top: 0.3rem solid var(--color-accent, #ef7c00);
  border-bottom: 0.3rem solid var(--color-accent, #ef7c00);
}

.trust-bar__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  max-width: 110rem;
  margin: 0 auto;
}

.trust-bar__list li {
  flex: 1 1 18rem;
  text-align: center;
  color: #fff;
  padding: 0.8rem 1rem;
}

.trust-bar__list strong {
  display: block;
  font-family: var(--font-heading, inherit);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-accent, #ef7c00);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.trust-bar__list span {
  display: block;
  font-size: 1.45rem;
  line-height: 2rem;
  opacity: 0.92;
}

@media screen and (max-width: 768px) {
  .trust-bar__list {
    flex-direction: column;
    gap: 1.6rem;
  }
}
