/* -------------------- Trust strip (LIGHT) -------------------- */
.trust-strip {
  padding: 2.5rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.trust-strip-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}
/* Marquee viewport — clips overflow + soft fades on the edges so items
   slide in/out cleanly. */
.trust-strip-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
/* The track holds two identical copies of the items end-to-end; we
   translate -50% to loop seamlessly back to the start. */
.trust-strip-track {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
  animation: trustStripScroll 32s linear infinite;
  will-change: transform;
}
.trust-strip-marquee:hover .trust-strip-track,
.trust-strip-marquee:focus-within .trust-strip-track {
  animation-play-state: paused;
}
@keyframes trustStripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-strip-track { animation: none; }
}

.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--muted-strong);
  font-weight: 500;
  background: var(--surface-cream);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-strip-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

