.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 34px 18px;
  background: #030304;
}

.trust-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  padding: 8px 24px 8px 10px;
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #fffaf0;
  color: #181818;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.trust-avatars,
.trust-flags {
  display: flex;
  align-items: center;
}

.trust-avatars img {
  width: 42px;
  height: 42px;
  margin-left: -12px;
  border: 2px solid #fffaf0;
  border-radius: 50%;
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-pill p {
  margin: 0;
  font-size: 17px;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-align: left;
}

.trust-pill strong {
  font-weight: 800;
}

.trust-divider {
  width: 1px;
  height: 42px;
  background: rgba(24, 24, 24, 0.16);
}

.trust-flags img {
  width: 40px;
  height: 40px;
  margin-left: -10px;
  border: 2px solid #fffaf0;
  border-radius: 50%;
  object-fit: cover;
}

.trust-flags img:first-child {
  margin-left: 0;
}

html[data-theme="light"] .trust-strip {
  background: #050506;
}

@media (max-width: 720px) {
  .trust-strip {
    min-height: 190px;
  }

  .trust-pill {
    flex-wrap: wrap;
    width: min(100%, 360px);
    border-radius: 28px;
    padding: 14px;
  }

  .trust-divider {
    display: none;
  }

  .trust-pill p {
    font-size: 15px;
    text-align: center;
  }
}
