/* Technology & safety — customer-facing trust evidence page */

.technology-trust-page {
  --trust-navy: #071b33;
  --trust-navy-2: #0b2948;
  --trust-blue: #246eea;
  --trust-cyan: #42b7e8;
  --trust-green: #63b83f;
  --trust-ink: #0a2038;
  --trust-muted: #607286;
  --trust-pale: #eef5f8;
  --trust-line: #d9e4ea;
  --trust-shell: min(1280px, calc(100vw - 40px));
  color: var(--trust-ink);
  background: #fff;
}

.technology-trust-page main {
  overflow: clip;
}

.technology-trust-page :where(h1, h2, h3, p, figure, dl, dd, ol, ul) {
  margin-top: 0;
}

.technology-trust-page :where(h1, h2, h3, b) {
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.technology-trust-page :where(p, dd, li, figcaption) {
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.trust-shell {
  width: var(--trust-shell);
  margin-inline: auto;
}

.trust-section {
  padding: 76px 0;
}

.trust-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--trust-blue);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .12em;
}

.trust-label::before {
  width: 26px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--trust-green), var(--trust-blue));
}

.trust-section h2 {
  max-width: 15ch;
  margin-bottom: 24px;
  color: var(--trust-ink);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 660;
  line-height: 1.16;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.trust-intro {
  max-width: 40rem;
  margin-bottom: 30px;
  color: var(--trust-muted);
  font-size: 17px;
  line-height: 1.85;
}

/* Hero */
.trust-hero {
  position: relative;
  color: #fff;
  background: var(--trust-navy);
}

.trust-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(66, 183, 232, .07) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(66, 183, 232, .05) 1px, transparent 1px) 0 0 / 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 52%);
}

.trust-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  min-height: 610px;
  padding: 62px 0 54px;
}

.trust-hero-copy {
  max-width: 550px;
}

.trust-hero .trust-label {
  color: #72d6f1;
}

.trust-hero-copy h1 {
  max-width: 10ch;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(48px, 4.7vw, 68px);
  font-weight: 670;
  line-height: 1.1;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.trust-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.trust-lead {
  max-width: 31rem;
  margin-bottom: 34px;
  color: rgba(225, 237, 247, .78);
  font-size: 18px;
  line-height: 1.8;
}

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

.trust-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.trust-button:hover {
  transform: translateY(-2px);
}

.trust-button:focus-visible,
.trust-certificate-image:focus-visible,
.trust-text-link:focus-visible {
  outline: 3px solid rgba(66, 183, 232, .48);
  outline-offset: 3px;
}

.trust-button-primary {
  color: #fff;
  background: var(--trust-blue);
  box-shadow: 0 12px 30px rgba(25, 91, 205, .24);
}

.trust-button-primary:hover {
  background: #145fdc;
}

.trust-button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .04);
}

.trust-button-secondary:hover {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
}

.trust-hero-media {
  position: relative;
  align-self: stretch;
  min-height: 480px;
  margin-bottom: 0;
  overflow: hidden;
  background: #15314c;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 52px), calc(100% - 52px) 100%, 0 100%);
}

.trust-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 18, 34, .82) 100%);
}

.trust-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}

.trust-hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 58px;
  bottom: 24px;
  left: 26px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.6;
}

.trust-proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.trust-proof-strip article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  min-width: 0;
  padding: 28px clamp(16px, 2.5vw, 36px) 32px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.trust-proof-strip article:first-child {
  padding-left: 0;
}

.trust-proof-strip article:last-child {
  border-right: 0;
}

.trust-proof-strip article > span {
  color: #67cef1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.trust-proof-strip b {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 16px;
  font-weight: 620;
}

.trust-proof-strip p {
  margin-bottom: 0;
  color: rgba(220, 234, 245, .64);
  font-size: 13px;
  line-height: 1.55;
}

/* Hardware evidence */
.trust-hardware {
  padding-top: 108px;
  background: #fff;
}

.trust-evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}

.trust-product-proof {
  position: relative;
  margin-bottom: 0;
  padding: 28px 28px 20px;
  border: 1px solid var(--trust-line);
  background: var(--trust-pale);
}

.trust-product-proof::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 30%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--trust-green), var(--trust-blue));
}

.trust-proof-stamp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #35506a;
  font-size: 11px;
  letter-spacing: .12em;
}

.trust-proof-stamp b {
  color: var(--trust-blue);
  font-weight: 700;
}

.trust-product-proof img {
  display: block;
  width: 100%;
  height: clamp(360px, 39vw, 540px);
  object-fit: cover;
  object-position: center 54%;
  background: #e5edf1;
}

.trust-product-proof figcaption {
  margin: 14px 0 0;
  color: #6d7d8d;
  font-size: 12px;
  line-height: 1.65;
}

.trust-verification-sheet {
  position: relative;
  padding: 30px;
  border: 1px solid var(--trust-line);
  background: var(--trust-pale);
}

.trust-verification-sheet::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 34%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--trust-green), var(--trust-blue));
}

.trust-verification-sheet > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--trust-ink);
}

.trust-verification-sheet > header span {
  color: var(--trust-ink);
  font-size: 18px;
  font-weight: 680;
}

.trust-verification-sheet > header b {
  color: var(--trust-blue);
  font-size: 11px;
  letter-spacing: .1em;
}

.trust-verification-sheet > div {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #c9d8e0;
}

.trust-verification-sheet > div > i {
  color: var(--trust-blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.trust-verification-sheet > div p {
  margin-bottom: 0;
}

.trust-verification-sheet > div p b,
.trust-verification-sheet > div p span {
  display: block;
}

.trust-verification-sheet > div p b {
  margin-bottom: 5px;
  color: var(--trust-ink);
  font-size: 15px;
  font-weight: 680;
}

.trust-verification-sheet > div p span {
  color: var(--trust-muted);
  font-size: 12px;
  line-height: 1.55;
}

.trust-verification-sheet > div em {
  padding: 5px 8px;
  color: #317f21;
  border: 1px solid #9fc993;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}

.trust-verification-sheet > footer {
  padding-top: 20px;
  color: #64798a;
  font-size: 12px;
  line-height: 1.6;
}

.trust-fact-list {
  margin: 0 0 30px;
  border-top: 1px solid var(--trust-line);
}

.trust-fact-list > div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--trust-line);
}

.trust-fact-list dt {
  color: var(--trust-ink);
  font-size: 15px;
  font-weight: 680;
}

.trust-fact-list dd {
  margin: 0;
  color: var(--trust-muted);
  font-size: 14px;
  line-height: 1.7;
}

.trust-text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  color: var(--trust-blue);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.trust-text-link span {
  transition: transform .2s ease;
}

.trust-text-link:hover span {
  transform: translateX(4px);
}

/* Traceability */
.trust-trace {
  padding-top: 90px;
  padding-bottom: 110px;
  color: #fff;
  background: var(--trust-navy);
}

.trust-trace-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr);
  gap: clamp(48px, 9vw, 132px);
  align-items: end;
  margin-bottom: 48px;
}

.trust-trace h2,
.trust-trace .trust-label {
  color: #fff;
}

.trust-trace h2 {
  max-width: none;
  margin-bottom: 0;
}

.trust-trace-heading > p {
  max-width: 33rem;
  margin-bottom: 6px;
  color: rgba(219, 234, 245, .72);
  font-size: 16px;
  line-height: 1.85;
}

.trust-trace-media {
  position: relative;
  height: clamp(480px, 50vw, 660px);
  margin-bottom: 0;
  overflow: hidden;
  background: #102e4a;
}

.trust-trace-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(3, 18, 34, .08) 38%, rgba(3, 18, 34, .92) 100%);
  pointer-events: none;
}

.trust-trace-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.trust-trace-flow {
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: 38px;
  left: 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(4, 24, 44, .76);
  border: 1px solid rgba(125, 208, 238, .36);
  backdrop-filter: blur(12px);
}

.trust-trace-flow span {
  position: relative;
  min-width: 0;
  padding: 22px 20px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.trust-trace-flow span:last-child {
  border-right: 0;
}

.trust-trace-flow i {
  display: block;
  margin-bottom: 12px;
  color: #6bd0ef;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.trust-trace-flow b {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 17px;
  font-weight: 650;
}

.trust-trace-flow small {
  color: rgba(220, 236, 246, .64);
  font-size: 12px;
}

/* Controlled actions */
.trust-control {
  padding-block: 112px;
  background: #f5f8fa;
}

.trust-control-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: center;
}

.trust-guard-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cddce4;
}

.trust-guard-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #cddce4;
}

.trust-guard-list li > span {
  padding-top: 2px;
  color: var(--trust-blue);
  font-size: 11px;
  font-weight: 700;
}

.trust-guard-list b {
  display: block;
  margin-bottom: 4px;
  color: var(--trust-ink);
  font-size: 15px;
  font-weight: 680;
}

.trust-guard-list p {
  margin-bottom: 0;
  color: var(--trust-muted);
  font-size: 14px;
  line-height: 1.65;
}

.trust-control-media {
  position: relative;
  min-height: 600px;
  margin-bottom: 0;
  overflow: hidden;
  background: #12304d;
}

.trust-control-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(4, 22, 39, .84));
}

.trust-control-media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

.trust-control-media figcaption {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 30px;
  left: 32px;
  margin: 0;
  color: #fff;
}

.trust-control-media figcaption b,
.trust-control-media figcaption span {
  display: block;
}

.trust-control-media figcaption b {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 650;
}

.trust-control-media figcaption span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

/* Copyright evidence */
.trust-certificates {
  padding-block: 104px;
  background: #fff;
}

.trust-certificate-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .68fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: end;
  margin-bottom: 50px;
}

.trust-certificate-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.trust-certificate-heading > p {
  margin-bottom: 5px;
  color: var(--trust-muted);
  font-size: 16px;
  line-height: 1.85;
}

.trust-certificate-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--trust-line);
  border-bottom: 1px solid var(--trust-line);
}

.trust-certificate-wall article {
  min-width: 0;
  padding: 34px clamp(20px, 3vw, 42px) 32px;
  border-right: 1px solid var(--trust-line);
}

.trust-certificate-wall article:first-child {
  padding-left: 0;
}

.trust-certificate-wall article:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-certificate-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 260px;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid #dfe8ed;
  background: #f4f7f9;
  cursor: zoom-in;
  transition: border-color .2s ease, transform .2s ease;
}

.trust-certificate-image:hover {
  border-color: #9cc7e2;
  transform: translateY(-3px);
}

.trust-certificate-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0 14px 26px rgba(13, 40, 65, .12);
}

.trust-certificate-wall article div > span {
  display: block;
  margin-bottom: 9px;
  color: var(--trust-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
}

.trust-certificate-wall h3 {
  min-height: 3.4em;
  margin-bottom: 9px;
  color: var(--trust-ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

.trust-certificate-wall p {
  margin-bottom: 0;
  color: var(--trust-muted);
  font-size: 13px;
}

.trust-source-note {
  margin: 15px 0 0;
  color: #81909d;
  font-size: 12px;
  text-align: right;
}

/* Delivery proof */
.trust-delivery {
  color: #fff;
  background: #0b2b4a;
}

.trust-delivery-grid {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: start;
}

.trust-delivery h2,
.trust-delivery .trust-label {
  color: #fff;
}

.trust-delivery h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 3.3vw, 46px);
}

.trust-delivery-track {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.trust-delivery-track li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.trust-delivery-track li > span {
  color: #69d0ee;
  font-size: 11px;
  font-weight: 700;
}

.trust-delivery-track b {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
}

.trust-delivery-track p {
  margin-bottom: 0;
  color: rgba(221, 234, 244, .68);
  font-size: 13px;
  line-height: 1.6;
}

/* Boundaries */
.trust-boundaries {
  padding-block: 100px;
  background: #eaf3f7;
}

.trust-boundary-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.trust-boundary-title h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.trust-boundary-list {
  border-top: 2px solid var(--trust-ink);
}

.trust-boundary-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid #bdced8;
}

.trust-boundary-list span {
  color: var(--trust-ink);
  font-size: 15px;
  font-weight: 680;
}

.trust-boundary-list p {
  margin-bottom: 0;
  color: #536b7e;
  font-size: 14px;
  line-height: 1.75;
}

/* CTA */
.trust-cta {
  padding-block: 86px;
  color: #fff;
  background: var(--trust-navy);
}

.trust-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .6fr);
  gap: clamp(56px, 10vw, 150px);
  align-items: end;
  padding-left: 34px;
}

.trust-cta-inner::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--trust-green), var(--trust-blue));
}

.trust-cta h2,
.trust-cta .trust-label {
  color: #fff;
}

.trust-cta h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(34px, 3.7vw, 50px);
}

.trust-cta-inner > div:last-child > p {
  margin-bottom: 24px;
  color: rgba(221, 234, 244, .74);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 1080px) {
  .trust-hero-grid {
    grid-template-columns: .95fr 1.05fr;
    gap: 40px;
    min-height: 560px;
  }

  .trust-hero-copy h1 {
    font-size: clamp(44px, 5.2vw, 58px);
  }

  .trust-control-grid,
  .trust-evidence-grid {
    gap: 48px;
  }

  .trust-control-media,
  .trust-control-media img {
    min-height: 520px;
    height: 520px;
  }

  .trust-certificate-image {
    height: 230px;
  }
}

@media (max-width: 820px) {
  .technology-trust-page {
    --trust-shell: min(100% - 32px, 720px);
  }

  .trust-section {
    padding-block: 72px;
  }

  .trust-hero-grid,
  .trust-evidence-grid,
  .trust-control-grid,
  .trust-trace-heading,
  .trust-certificate-heading,
  .trust-delivery-grid,
  .trust-boundary-grid,
  .trust-cta-inner {
    grid-template-columns: 1fr;
  }

  .trust-hero-grid {
    gap: 36px;
    padding: 62px 0 36px;
  }

  .trust-hero-copy,
  .trust-section h2,
  .trust-trace-heading > p,
  .trust-certificate-heading > p {
    max-width: 100%;
  }

  .trust-hero-media {
    min-height: 440px;
  }

  .trust-hero-media img {
    min-height: 440px;
  }

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

  .trust-proof-strip article,
  .trust-proof-strip article:first-child {
    grid-template-columns: 34px 1fr;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .trust-proof-strip article:last-child {
    border-bottom: 0;
  }

  .trust-hardware {
    padding-top: 78px;
  }

  .trust-section-copy {
    order: -1;
  }

  .trust-trace-heading,
  .trust-certificate-heading {
    gap: 12px;
    margin-bottom: 36px;
  }

  .trust-trace-media {
    height: auto;
    overflow: visible;
    background: transparent;
  }

  .trust-trace-media::after {
    bottom: auto;
    height: 420px;
  }

  .trust-trace-media > img {
    height: 420px;
  }

  .trust-trace-flow {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    margin-top: 0;
    overflow-x: auto;
    background: #0b2948;
    border-top: 0;
    backdrop-filter: none;
    scrollbar-width: thin;
  }

  .trust-control-grid {
    gap: 44px;
  }

  .trust-control-media,
  .trust-control-media img {
    min-height: 470px;
    height: 470px;
  }

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

  .trust-certificate-wall article,
  .trust-certificate-wall article:first-child,
  .trust-certificate-wall article:last-child {
    display: grid;
    grid-template-columns: minmax(150px, 210px) 1fr;
    gap: 28px;
    align-items: center;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--trust-line);
  }

  .trust-certificate-wall article:last-child {
    border-bottom: 0;
  }

  .trust-certificate-image {
    height: 220px;
    margin-bottom: 0;
  }

  .trust-certificate-wall h3 {
    min-height: 0;
  }

  .trust-delivery-grid,
  .trust-boundary-grid,
  .trust-cta-inner {
    gap: 36px;
  }

  .trust-cta-inner {
    padding-left: 26px;
  }
}

@media (max-width: 560px) {
  .technology-trust-page {
    --trust-shell: calc(100% - 32px);
  }

  .trust-section {
    padding-block: 60px;
  }

  .trust-section h2 {
    margin-bottom: 20px;
    font-size: clamp(31px, 9.6vw, 40px);
    line-height: 1.18;
  }

  .trust-label {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .trust-hero-grid {
    padding-top: 54px;
  }

  .trust-hero-copy h1 {
    max-width: none;
    margin-bottom: 20px;
    font-size: clamp(40px, 12vw, 52px);
  }

  .trust-lead {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.75;
  }

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

  .trust-button {
    min-height: 48px;
    padding-inline: 14px;
  }

  .trust-hero-media,
  .trust-hero-media img {
    min-height: 330px;
  }

  .trust-hero-media figcaption {
    right: 38px;
    bottom: 18px;
    left: 18px;
  }

  .trust-proof-strip article,
  .trust-proof-strip article:first-child {
    padding-block: 16px;
  }

  .trust-hardware {
    padding-top: 64px;
  }

  .trust-intro {
    font-size: 16px;
    line-height: 1.75;
  }

  .trust-product-proof {
    padding: 18px 18px 16px;
  }

  .trust-verification-sheet {
    padding: 20px;
  }

  .trust-verification-sheet > div {
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    padding: 17px 0;
  }

  .trust-product-proof img {
    height: 390px;
  }

  .trust-fact-list > div,
  .trust-boundary-list article {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .trust-trace {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .trust-trace-media > img,
  .trust-trace-media::after {
    height: 300px;
  }

  .trust-trace-flow {
    grid-template-columns: repeat(5, minmax(105px, 1fr));
  }

  .trust-trace-flow span {
    padding: 18px 14px;
  }

  .trust-control {
    padding-block: 64px;
  }

  .trust-control-media,
  .trust-control-media img {
    min-height: 330px;
    height: 330px;
  }

  .trust-control-media figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .trust-certificates {
    padding-block: 68px;
  }

  .trust-certificate-wall article,
  .trust-certificate-wall article:first-child,
  .trust-certificate-wall article:last-child {
    grid-template-columns: 112px 1fr;
    gap: 18px;
    padding-block: 22px;
  }

  .trust-certificate-image {
    height: 158px;
    padding: 10px;
  }

  .trust-certificate-wall h3 {
    font-size: 15px;
    line-height: 1.55;
  }

  .trust-certificate-wall article div > span,
  .trust-certificate-wall p {
    font-size: 10px;
  }

  .trust-source-note {
    text-align: left;
    line-height: 1.6;
  }

  .trust-delivery,
  .trust-boundaries,
  .trust-cta {
    padding-block: 62px;
  }

  .trust-delivery h2,
  .trust-cta h2 {
    font-size: clamp(30px, 9.2vw, 38px);
  }

  .trust-cta-inner {
    padding-left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .technology-trust-page *,
  .technology-trust-page *::before,
  .technology-trust-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
