.page-trust-section {
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 12% 8%, rgba(4, 120, 87, .08), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(217, 119, 6, .08), transparent 28%),
    #f8fafc;
}

.page-trust-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.page-trust-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.page-trust-heading h2 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
}

.page-trust-heading p {
  max-width: 690px;
  margin: 0 auto;
  color: #52647a;
  font-size: 1.04rem;
}

.page-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.page-trust-card {
  min-height: 365px;
  padding: 28px 22px 30px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.page-trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(4, 120, 87, .24);
  box-shadow: 0 20px 42px rgba(4, 120, 87, .12);
}

.page-trust-icon {
  position: relative;
  width: 126px;
  height: 126px;
  margin: 0 auto 20px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .94);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(231, 244, 239, .72));
  box-shadow: inset 0 1px 0 #fff, 0 12px 26px rgba(15, 23, 42, .12);
}

.page-trust-icon::before {
  position: absolute;
  top: -35%;
  left: -15%;
  width: 68%;
  height: 165%;
  content: '';
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, .72) 46%, transparent 72%);
  transform: rotate(17deg);
  pointer-events: none;
}

.page-trust-icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 9px 8px rgba(4, 120, 87, .17));
}

.page-trust-card h3 {
  margin: 0 0 13px;
  color: #0f172a;
  font-size: 1.2rem;
  line-height: 1.25;
}

.page-trust-card p {
  margin: 0;
  color: #52647a;
  font-size: .96rem;
  line-height: 1.62;
}

@media (max-width: 1050px) {
  .page-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-trust-card { min-height: 340px; }
}

@media (max-width: 620px) {
  .page-trust-section { padding: 60px 0 64px; }
  .page-trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .page-trust-card { min-height: 0; padding: 26px 20px 28px; }
  .page-trust-icon { width: 116px; height: 116px; }
}
