/* ================================
   TRUST BAR
   ================================ */

.trust-bar {
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(184,115,51,0.2);
  border-bottom: 1px solid rgba(184,115,51,0.2);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 0.6s forwards;
}
.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }
.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(184,115,51,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; }
.trust-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--off-white);
}
.trust-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .trust-bar { padding: 1.5rem; justify-content: flex-start; gap: 1.5rem; }
}
