.case-panel__evidence {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid #d7d6d1;
  border-bottom: 1px solid #d7d6d1;
}

.case-panel__evidence > div {
  display: grid;
  grid-template-columns: minmax(86px, 0.28fr) 1fr;
  gap: 18px;
  padding-block: 13px;
}

.case-panel__evidence > div + div {
  border-top: 1px solid #e3e1dc;
}

.case-panel__evidence dt {
  color: #9a773f;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.case-panel__evidence dd {
  margin: 0;
  color: #334d63;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.7;
}

.trust-proof {
  position: relative;
  overflow: hidden;
  padding-block: clamp(92px, 10vw, 156px);
  color: #09243d;
  background:
    linear-gradient(90deg, rgb(12 42 68 / 5%) 1px, transparent 1px),
    linear-gradient(rgb(12 42 68 / 5%) 1px, transparent 1px),
    #f3f5f7;
  background-size: 80px 80px;
}

.trust-proof::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(34vw, 520px);
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #c8a762, #2c7ce0);
}

.trust-proof__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: end;
}

.trust-proof__heading h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5.15rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1.2;
  text-wrap: balance;
}

.trust-proof__heading > p {
  max-width: 560px;
  margin: 0 0 8px;
  padding-left: 34px;
  border-left: 1px solid #c5a45e;
  color: #52687a;
  font-size: 14px;
  line-height: 2;
}

.trust-proof__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(58px, 7vw, 94px) 0 0;
  padding: 0;
  border-top: 1px solid #cbd3da;
  border-bottom: 1px solid #cbd3da;
  list-style: none;
}

.trust-proof__facts li {
  position: relative;
  min-height: 330px;
  padding: 32px 28px 30px;
  background: rgb(255 255 255 / 54%);
}

.trust-proof__facts li + li {
  border-left: 1px solid #cbd3da;
}

.trust-proof__facts li > span {
  display: block;
  color: #a27e3d;
  font-size: 12px;
  font-weight: 850;
}

.trust-proof__facts small {
  display: block;
  margin-top: 18px;
  color: #356da9;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.trust-proof__facts strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  letter-spacing: -0.025em;
  line-height: 1.62;
}

.trust-proof__facts p {
  margin: 22px 0 0;
  color: #5b6f80;
  font-size: 12px;
  line-height: 1.9;
}

.trust-proof__commitment {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 28px 34px;
  color: white;
  background: #06243f;
}

.trust-proof__commitment p {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 64px);
  margin: 0;
}

.trust-proof__commitment small {
  color: #8dbce9;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.trust-proof__commitment strong {
  font-size: clamp(1.18rem, 2.2vw, 1.8rem);
  letter-spacing: -0.025em;
}

.trust-proof__commitment a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 24px;
  padding-inline: 22px;
  border: 1px solid rgb(255 255 255 / 28%);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.trust-proof__commitment a:hover,
.trust-proof__commitment a:focus-visible {
  color: #06243f;
  background: white;
}

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

  .trust-proof__facts li:nth-child(3) {
    border-left: 0;
  }

  .trust-proof__facts li:nth-child(n + 3) {
    border-top: 1px solid #cbd3da;
  }
}

@media (max-width: 900px) {
  .trust-proof__heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .trust-proof__heading > p {
    max-width: none;
  }

  .trust-proof__commitment {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .case-panel__evidence > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .trust-proof {
    padding-block: 78px;
    background-size: 48px 48px;
  }

  .trust-proof__heading h2 {
    font-size: 2.45rem;
    line-height: 1.3;
  }

  .trust-proof__heading > p {
    padding-left: 18px;
    font-size: 13px;
  }

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

  .trust-proof__facts li {
    min-height: 0;
    padding: 28px 24px;
  }

  .trust-proof__facts li + li,
  .trust-proof__facts li:nth-child(3) {
    border-top: 1px solid #cbd3da;
    border-left: 0;
  }

  .trust-proof__commitment {
    padding: 28px 24px;
  }

  .trust-proof__commitment p {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .trust-proof__commitment a {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
  }
}

@media (forced-colors: active) {
  .case-panel__evidence,
  .trust-proof__facts,
  .trust-proof__facts li,
  .trust-proof__commitment {
    border: 1px solid CanvasText;
  }
}
