* {
  box-sizing: border-box;
}

html {
  background: #060806;
  color-scheme: dark;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(124,255,0,.09),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(255,40,40,.08),
      transparent 30rem
    ),
    #060806;
  color: #f7f7f7;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.trust-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom:
    1px solid rgba(255,255,255,.09);
  background: rgba(6,8,6,.92);
  backdrop-filter: blur(18px);
}

.trust-header-inner,
.trust-main,
.trust-footer-inner {
  width: min(
    1040px,
    calc(100% - 32px)
  );
  margin: 0 auto;
}

.trust-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.trust-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
}

.trust-brand img {
  width: 58px;
  height: auto;
  display: block;
}

.trust-brand-text {
  font-size: 18px;
}

.trust-brand-text b:first-child {
  color: #7cff00;
}

.trust-brand-text b:last-child {
  color: #ff3030;
}

.trust-phone {
  padding: 11px 15px;
  border:
    1px solid rgba(124,255,0,.35);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}

.trust-main {
  padding: 70px 0 90px;
}

.trust-kicker {
  margin-bottom: 10px;
  color: #7cff00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-main h1 {
  max-width: 860px;
  margin: 0 0 22px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: .98;
  letter-spacing: -.04em;
}

.trust-lead {
  max-width: 780px;
  margin: 0 0 38px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
  line-height: 1.65;
}

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

.trust-card {
  padding: 26px;
  border:
    1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}

.trust-card h2 {
  margin: 0 0 12px;
  font-size: 23px;
}

.trust-card h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

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

.trust-card ul {
  padding-left: 20px;
}

.trust-wide {
  grid-column: 1 / -1;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 13px;
  background: #7cff00;
  color: #071000;
  text-decoration: none;
  font-weight: 900;
}

.trust-button.secondary {
  border:
    1px solid rgba(255,255,255,.16);
  background: transparent;
  color: #fff;
}

.trust-footer {
  border-top:
    1px solid rgba(255,255,255,.09);
}

.trust-footer-inner {
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.trust-footer a {
  text-decoration: none;
}

@media (max-width: 720px) {
  .trust-header-inner {
    min-height: 68px;
  }

  .trust-brand img {
    width: 48px;
  }

  .trust-brand-text {
    font-size: 15px;
  }

  .trust-phone {
    font-size: 13px;
  }

  .trust-main {
    padding: 48px 0 68px;
  }

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

  .trust-wide {
    grid-column: auto;
  }

  .trust-card {
    padding: 21px;
  }
}
