/* TrustStrip [ink] — 655:19470: фон #181d24, отступы 44/110 */
.trust {
  background: var(--ink);
  /* 655:19470 — фиксированная высота 100: отступ 44 из макета перебит высотой,
     контент по факту центрируется по вертикали (замер: чернила на y 38–61). */
  height: clamp(88px, 5.2083vw, 100px);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.trust__list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 40px);
}
.trust__item {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.8333vw, 16px);
  white-space: nowrap;
}
.trust__num {
  font-size: var(--t-stat);
  font-weight: 900;
  line-height: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust__label {
  font-size: var(--t-body);
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.6);
  white-space: normal;
}
.trust__label--w140 { width: min(140px, 100%); }          /* 655:19481 */
.trust__sep {
  width: 1px;
  height: 40px;
  background: var(--border-glass-strong);
  flex: 0 0 1px;
}

@media (max-width: 1023px) {
  .trust { height: auto; padding-block: clamp(20px, 2.2917vw, 44px); }
  .trust__list { flex-wrap: wrap; justify-content: flex-start; gap: 18px 32px; }
  .trust__sep { display: none; }
  .trust__item { flex: 0 0 calc(50% - 16px); }
  .trust__label--w140 { width: auto; }
}
@media (max-width: 599px) {
  .trust__item { flex: 1 1 100%; }
}
