/* Trust Banner / Credentials Section */
.trust-section {
  background: linear-gradient(135deg, #091e3a 0%, #003a60 50%, #005c99 100%);
  padding: 4rem 1.5rem;
  border-top: 4px solid var(--accent-yellow);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(254, 203, 0, 0.05) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.8;
  pointer-events: none;
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.trust-card {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.trust-card:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(254, 203, 0, 0.25);
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-icon-wrapper {
  background: rgba(254, 203, 0, 0.1);
  color: var(--accent-yellow);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(254, 203, 0, 0.2);
}

/* Bounce icon when card scrolls into view */
.trust-card.reveal.visible .trust-icon-wrapper {
  animation: iconBounce 0.6s 0.2s ease both;
}

.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-yellow);
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  font-weight: 500;
}

.trust-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-white);
  letter-spacing: 0.2px;
}

