.trust-strip {
  margin-top: clamp(18px, 2.5vw, 24px);
  padding: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-item-visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  min-height: 180px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.03));
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.trust-item-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.26;
  transform: scale(1.02);
  filter: saturate(0.94) brightness(0.74);
  transition:
    opacity 0.35s ease,
    transform 0.6s ease,
    filter 0.45s ease;
  z-index: 0;
}

.trust-grid .trust-item-visual:nth-child(1)::before {
  background-image: url('/assets/images/trust/profesyonel-destek.webp');
}

.trust-grid .trust-item-visual:nth-child(2)::before {
  background-image: url('/assets/images/trust/seffaf-yaklasim.webp');
}

.trust-grid .trust-item-visual:nth-child(3)::before {
  background-image: url('/assets/images/trust/yerinde-destek.webp');
}

.trust-grid .trust-item-visual:nth-child(4)::before {
  background-image: url('/assets/images/trust/hizli-iletisim.webp');
}

.trust-item-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,16,31,0.2) 0%, rgba(5,14,27,0.72) 100%);
  z-index: 1;
}

.trust-item-visual:hover {
  transform: translateY(-2px);
  border-color: rgba(94,166,255,0.18);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.trust-item-visual:hover::before {
  opacity: 0.40;
  transform: scale(1);
  filter: saturate(1.06) brightness(0.90);
}

.trust-item-visual > * {
  position: relative;
  z-index: 2;
}

.trust-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  margin-top: 1px;
  transition: transform 0.22s ease, color 0.22s ease, filter 0.22s ease;
}

.trust-card-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  filter: drop-shadow(0 5px 12px rgba(42,108,255,0.14));
}

.trust-item-visual:hover .trust-card-icon {
  transform: translateY(-3px) scale(1.06) rotate(-4deg);
  animation: trustIconHover 0.45s ease;
}

.trust-card-body {
  min-width: 0;
}

.trust-card-body strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.trust-card-body span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.trust-grid .trust-item:nth-child(1) .trust-card-icon { color: #7fb0ff; }
.trust-grid .trust-item:nth-child(2) .trust-card-icon { color: #f2c48d; }
.trust-grid .trust-item:nth-child(3) .trust-card-icon { color: #a9c7ff; }
.trust-grid .trust-item:nth-child(4) .trust-card-icon { color: #efb6c8; }

@keyframes trustIconHover {
  0% {
    transform: translateY(0) scale(1) rotate(0);
  }
  35% {
    transform: translateY(-4px) scale(1.08) rotate(-5deg);
  }
  70% {
    transform: translateY(-2px) scale(1.04) rotate(3deg);
  }
  100% {
    transform: translateY(-3px) scale(1.06) rotate(-4deg);
  }
}