/* ========================================
   Section 3: Trust Bar — Bold, no icons
   ======================================== */

.trust-bar {
  background: var(--color-primary);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Top accent line */
.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-amber), var(--color-accent));
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: background var(--transition-fast);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.trust-stat {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-bar .container { grid-template-columns: repeat(4, 1fr); }
  .trust-item { padding: 16px 8px; }
  .trust-stat { font-size: 1rem; }
  .trust-item p { font-size: var(--fs-xs); display: none; }
}
