/* ===== D2: TRUST BAR — переработанный дизайн ===== */
.trust-bar {
  background: linear-gradient(135deg, #EAF3F5 0%, #F5FAFB 50%, #EAF3F5 100%);
  border-top: 3px solid var(--brand-teal);
  border-bottom: 1px solid #dde9ec;
  padding: 28px 0;
  position: relative;
  z-index: 10;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--brand-dark);
  padding: 12px 32px;
  position: relative;
  transition: transform 0.2s ease, background 0.2s ease;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: color-mix(in srgb, var(--brand-teal), transparent 65%);
}
.trust-item:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--brand-teal), transparent 92%);
  border-radius: 12px;
}
.trust-item__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--brand-teal) 0%, color-mix(in srgb, var(--brand-teal), black 14%) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--brand-teal), transparent 70%);
  flex-shrink: 0;
}
.trust-item__icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; }
.trust-item__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.2;
}
.trust-item__text span {
  font-size: 12px;
  color: #7A8A8F;
  font-weight: 400;
}
