/* ==========================================================================
   AirSound — Trust Signals Component
   Horizontal trust strip with stats
   ========================================================================== */

.trust-strip {
  padding: var(--space-12) var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- Item ---------- */

.trust-item {
  text-align: center;
}

.trust-val {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1;
}

.trust-lbl {
  font-size: 0.7rem;
  color: var(--text-light-dim);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Light variant ---------- */

.light-section .trust-strip {
  border-top-color: rgba(0, 0, 0, 0.06);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.light-section .trust-val {
  color: var(--text-primary);
}

.light-section .trust-lbl {
  color: var(--text-secondary);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .trust-strip {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: var(--space-8) var(--container-pad-mobile);
  }

  .trust-item {
    flex: 0 0 auto;
  }
}
