/* SEO P10 - Trust pages. Scope is intentionally limited to /about and /contact views. */

.trust-page {
  display: grid;
  gap: 24px;
}

.trust-hero,
.trust-panel,
.trust-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 18%, rgba(45, 212, 191, 0.16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(129, 140, 248, 0.14), transparent 32%),
    rgba(9, 14, 28, 0.84);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.trust-hero {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 5vw, 58px);
}

.trust-hero-compact {
  padding-block: clamp(28px, 4vw, 44px);
}

.trust-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(2.3rem, 5.8vw, 5.6rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.trust-hero p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.trust-actions,
.trust-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.trust-card,
.trust-panel {
  padding: 26px;
}

.trust-card {
  display: grid;
  gap: 12px;
}

.trust-card h2,
.trust-panel h2,
.trust-card p,
.trust-panel p {
  margin: 0;
}

.trust-card h2,
.trust-panel h2 {
  color: var(--text);
  letter-spacing: -0.03em;
}

.trust-card p,
.trust-panel p {
  color: var(--muted);
  line-height: 1.62;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 18px;
  background: rgba(45, 212, 191, 0.08);
  font-size: 1.35rem;
}

.trust-panel {
  display: grid;
  gap: 18px;
}

.trust-panel-split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: center;
}

.trust-feature-list span,
.trust-feature-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
  text-decoration: none;
}

.trust-feature-list a:hover {
  color: var(--accent);
  border-color: rgba(45, 212, 191, 0.32);
}

.trust-contact-box {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-contact-box strong {
  color: var(--text);
  font-size: 1.1rem;
}

.trust-contact-box span {
  color: var(--muted);
  line-height: 1.45;
}

.trust-contact-box a {
  color: var(--accent);
  overflow-wrap: anywhere;
  font-weight: 900;
  text-decoration: none;
}

.trust-contact-box .button-primary {
  justify-content: center;
  color: #03131f;
}

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

@media (max-width: 640px) {
  .trust-page {
    gap: 18px;
  }

  .trust-hero,
  .trust-card,
  .trust-panel {
    border-radius: 26px;
    padding: 22px;
  }

  .trust-hero h1 {
    font-size: clamp(2rem, 12vw, 3.45rem);
  }
}
