/* ─── Trust Bar with real logos ─────────────────────────────── */
.trust-logos-real {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.trust-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: opacity .3s ease;
}
.trust-logo-img:hover {
  opacity: 0.8;
}

/* Logo Marquee (scrolling) */
.logo-marquee-wrap {
  overflow: hidden;
  position: relative;
}
.logo-marquee-wrap::before,
.logo-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--color-bg-soft), transparent); }
.logo-marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--color-bg-soft), transparent); }

.logo-marquee {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: marquee 80s linear infinite;
}
.logo-marquee:hover { animation-play-state: paused; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
