.trust-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(18px, 3vw, 34px) 0;
  color: #f4fffd;
  background:
    radial-gradient(circle at 14% 0%, rgba(73, 220, 206, 0.3), transparent 34%),
    radial-gradient(circle at 92% 22%, rgba(218, 184, 92, 0.16), transparent 30%),
    linear-gradient(135deg, #07181c 0%, #0b292c 48%, #071317 100%);
  border-block: 1px solid rgba(117, 246, 232, 0.16);
}

.trust-band::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  opacity: 0.5;
}

.trust-band::after {
  position: absolute;
  inset: auto 8% -54px 8%;
  z-index: -1;
  height: 120px;
  content: "";
  background: radial-gradient(ellipse, rgba(71, 214, 201, 0.32), transparent 66%);
  filter: blur(16px);
}

.trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}

.trust-item,
.trust-note {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  padding: clamp(16px, 1.75vw, 22px);
  border: 1px solid rgba(154, 245, 235, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(10, 37, 42, 0.92), rgba(8, 25, 30, 0.78)),
    rgba(7, 19, 23, 0.74);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.trust-item::before,
.trust-note::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.13) 44%, transparent 62%),
    radial-gradient(circle at 80% 18%, rgba(74, 222, 208, 0.16), transparent 34%);
  opacity: 0;
  transform: translateX(-26%);
  transition:
    opacity 220ms ease,
    transform 360ms ease;
}

.trust-item::after {
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--amber));
  box-shadow: 0 0 24px rgba(73, 220, 206, 0.4);
}

.trust-kicker,
.trust-note-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(134, 236, 225, 0.18);
  border-radius: 999px;
  color: rgba(198, 246, 240, 0.78);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.trust-item strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  color: #80f2e8;
  font-size: clamp(2.05rem, 4vw, 3.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow: 0 0 28px rgba(74, 222, 208, 0.26);
}

.trust-item span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 900;
}

.trust-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(232, 194, 104, 0.22);
  background:
    linear-gradient(145deg, rgba(18, 54, 55, 0.94), rgba(9, 31, 36, 0.86)),
    linear-gradient(135deg, rgba(74, 222, 208, 0.14), rgba(232, 194, 104, 0.12));
}

.trust-note strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 14px 0 8px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.25;
}

.trust-note span:not(.trust-note-kicker) {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(237, 247, 246, 0.74);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.55;
}

.trust-note em {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  color: rgba(128, 242, 232, 0.82);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.trust-item:hover,
.trust-note:hover {
  border-color: rgba(125, 242, 229, 0.42);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(125, 242, 229, 0.08) inset;
  transform: translateY(-3px);
}

.trust-item:hover::before,
.trust-note:hover::before {
  opacity: 1;
  transform: translateX(0);
}

body.ui-theme-dark .trust-band {
  background:
    radial-gradient(circle at 12% 0%, rgba(73, 220, 206, 0.24), transparent 34%),
    radial-gradient(circle at 92% 22%, rgba(218, 184, 92, 0.13), transparent 30%),
    linear-gradient(135deg, #061316 0%, #092427 50%, #061114 100%);
}

@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .trust-band {
    padding: 16px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-item,
  .trust-note {
    min-height: 0;
    padding: 13px 14px;
    border-radius: 20px;
  }

  .trust-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: center;
  }

  .trust-kicker {
    grid-column: 1;
    grid-row: 1 / span 3;
    min-height: 38px;
    padding-inline: 10px;
  }

  .trust-item strong {
    margin-top: 0;
    font-size: 1.72rem;
  }

  .trust-item span {
    margin-top: 4px;
    font-size: 0.86rem;
  }

  .trust-note-kicker {
    min-height: 24px;
    font-size: 0.66rem;
  }

  .trust-note strong {
    margin-top: 12px;
    font-size: 1rem;
  }

  .trust-note span:not(.trust-note-kicker) {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .trust-note em {
    margin-top: 12px;
    font-size: 0.68rem;
  }
}
