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

.trust-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.trust-panel h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
}

.trust-panel p,
.trust-panel li {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.trust-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 12px;
  color: #dff6ff;
  background: linear-gradient(135deg, rgba(0, 168, 225, 0.22), rgba(0, 168, 225, 0.1));
  border: 1px solid rgba(0, 168, 225, 0.28);
}

.trust-steps {
  counter-reset: trust-step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.trust-steps li {
  position: relative;
  padding: 14px 14px 14px 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-steps li::before {
  counter-increment: trust-step;
  content: counter(trust-step);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #dff6ff;
  background: rgba(0, 168, 225, 0.18);
  border: 1px solid rgba(0, 168, 225, 0.32);
}

.trust-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-contact-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-contact-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: #fff;
}

.trust-contact-card a {
  color: var(--prime-blue);
  text-decoration: none;
}

.trust-contact-card a:hover {
  text-decoration: underline;
}

.trust-contact-meta {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.trust-code {
  display: block;
  overflow-x: auto;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dff6ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.trust-callout {
  border-left: 3px solid rgba(0, 168, 225, 0.75);
  padding: 14px 16px;
  border-radius: 0 14px 14px 0;
  background: rgba(0, 168, 225, 0.08);
  color: #dff6ff;
}

.trust-callout strong {
  color: #fff;
}

.trust-note-danger {
  border-left-color: rgba(248, 113, 113, 0.9);
  background: rgba(248, 113, 113, 0.08);
}

.trust-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.trust-table th,
.trust-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-table th {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8fb7c9;
}

.trust-table td {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.trust-anchor-offset {
  scroll-margin-top: 96px;
}

@media (max-width: 980px) {
  .trust-grid,
  .trust-grid--three,
  .trust-contact-grid {
    grid-template-columns: 1fr;
  }
}
