/* Trust panel — featured chips + glass marquee */

.trust-panel {
  position: relative;
  border-top: none;
  border-bottom: none;
  background: transparent;
}

.trust-panel.section-panel--ticker {
  min-height: auto;
  min-height: unset;
  padding-block: clamp(3.5rem, 9vh, 5.5rem);
}

.trust-panel__fx {
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.trust-panel__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.trust-panel__orb--1 {
  width: 320px;
  height: 320px;
  top: -8%;
  left: 12%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.32), transparent 68%);
}

.trust-panel__orb--2 {
  width: 260px;
  height: 260px;
  bottom: -5%;
  right: 10%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 70%);
}

.trust-panel__inner {
  gap: clamp(2rem, 4vh, 2.75rem);
}

.trust-panel .section-head {
  margin-bottom: 0;
}

.trust-panel__featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 920px;
  margin-inline: auto;
  width: 100%;
}

.trust-chip--featured {
  padding: 1.25rem 1.15rem;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(42, 24, 72, 0.65), rgba(14, 12, 26, 0.92));
  border: 1px solid rgba(124, 58, 237, 0.32);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.trust-chip--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.12), transparent 50%);
  pointer-events: none;
}

.trust-chip--featured:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 18px 48px rgba(124, 58, 237, 0.25);
}

.trust-chip__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7c3aed, #22d3ee);
  color: #fff;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.trust-chip__icon svg {
  width: 22px;
  height: 22px;
}

.trust-chip__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  min-width: 0;
}

.trust-chip__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-chip--featured .trust-chip__value {
  font-size: 1.5rem;
}

.trust-chip__text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Marquee row */
.trust-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.trust-marquee__track,
.logo-cloud--ticker .logo-cloud__track {
  display: flex;
  width: max-content;
  animation: trust-ticker-ltr 48s linear infinite;
  gap: 0;
}

.trust-marquee__group,
.logo-cloud--ticker .logo-cloud__stats {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  list-style: none;
  flex-shrink: 0;
  padding: 0.35rem 0.5rem;
  margin: 0;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  background: rgba(22, 18, 38, 0.85);
  border: 1px solid rgba(124, 58, 237, 0.25);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.trust-chip:hover {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.2);
}

.trust-chip .trust-chip__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.trust-chip .trust-chip__icon svg {
  width: 18px;
  height: 18px;
}

.trust-chip .trust-chip__value {
  font-size: 1.05rem;
}

.trust-chip .trust-chip__text {
  font-size: 0.8rem;
}

.trust-marquee:hover .trust-marquee__track,
.trust-marquee:hover .logo-cloud__track {
  animation-play-state: paused;
}

@keyframes trust-ticker-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (min-width: 720px) {
  .trust-panel__featured {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-marquee__track,
  .logo-cloud--ticker .logo-cloud__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
  }

  .trust-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .trust-marquee__group:last-of-type,
  .logo-cloud--ticker .logo-cloud__stats:last-of-type {
    display: none;
  }

  .trust-chip--featured:hover {
    transform: none;
  }
}
