/* ════════════════════════════════════════════
   TRUST.CSS — Trust bar / logo strip
════════════════════════════════════════════ */

#trust {
  background: var(--bg-alt);
  padding: 52px 0;
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
}

.trust-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-logo,
.logo-ph {
  width: 108px;
  height: 34px;
  border-radius: 6px;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  width: auto;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-solid);
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}
.trust-logo:hover {
  opacity: 0.85;
  border-color: rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}
.trust-logo img {
  max-height: 18px;
  width: auto;
  object-fit: contain;
}
.trust-logo-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.logo-ph {
  background: rgba(0, 0, 0, 0.07);
  transition: opacity 0.2s;
}
.logo-ph:hover {
  opacity: 0.6;
}

@media (max-width: 480px) {
  .trust-logo,
  .logo-ph {
    width: 88px;
    height: 28px;
  }

  .trust-logo {
    min-width: 88px;
    padding: 0 10px;
  }

  .trust-logo-text {
    font-size: 11px;
  }
}
