.sp-trust-page {
    display: grid;
    gap: clamp(24px, 4vw, 42px);
    padding-bottom: clamp(34px, 6vw, 72px);
}

.sp-trust-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: clamp(18px, 3vw, 32px);
    align-items: stretch;
    overflow: hidden;
    padding: clamp(26px, 5vw, 54px);
    border: 1px solid var(--sp-card-border);
    border-radius: var(--sp-radius-lg);
    background:
        radial-gradient(circle at 12% 0%, rgba(var(--sp-accent-rgb), .22), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
    box-shadow: var(--sp-shadow-soft);
}

.sp-trust-hero::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -150px;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    background: rgba(var(--sp-accent-rgb), .16);
    filter: blur(4px);
    pointer-events: none;
}

.sp-trust-hero__content,
.sp-trust-hero__card {
    position: relative;
    z-index: 1;
}

.sp-trust-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 11px;
    border: 1px solid var(--sp-card-border);
    border-radius: 999px;
    background: rgba(var(--sp-accent-rgb), .10);
    color: var(--sp-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sp-trust-hero h1 {
    max-width: 820px;
    margin: 0;
    color: var(--sp-text);
    font-size: clamp(30px, 5vw, 58px);
    line-height: .98;
    letter-spacing: -.055em;
}

.sp-trust-hero p {
    max-width: 760px;
    margin: clamp(14px, 2vw, 20px) 0 0;
    color: var(--sp-muted);
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.65;
}

.sp-trust-hero__card {
    display: grid;
    align-content: center;
    gap: 9px;
    min-height: 180px;
    padding: 22px;
    border: 1px solid var(--sp-card-border);
    border-radius: var(--sp-radius-md);
    background: rgba(0,0,0,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.sp-trust-hero__card span,
.sp-trust-side-card__label {
    color: var(--sp-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sp-trust-hero__card strong {
    color: var(--sp-text);
    font-size: 18px;
    line-height: 1.35;
}

.sp-trust-hero__card small {
    color: var(--sp-muted);
    font-size: 13px;
}

.sp-trust-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: clamp(20px, 3vw, 34px);
    align-items: start;
}

.sp-trust-card,
.sp-trust-side-card {
    border: 1px solid var(--sp-card-border);
    border-radius: var(--sp-radius-lg);
    background: var(--sp-glass-dark-72);
    box-shadow: var(--sp-shadow-soft);
}

.sp-trust-card {
    padding: clamp(22px, 4vw, 44px);
}

.sp-trust-content {
    color: var(--sp-text);
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 1.78;
}

.sp-trust-content > *:first-child {
    margin-top: 0;
}

.sp-trust-content > *:last-child {
    margin-bottom: 0;
}

.sp-trust-content h2 {
    margin: 34px 0 12px;
    color: var(--sp-text);
    font-size: clamp(22px, 2.3vw, 31px);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.sp-trust-content h3 {
    margin: 26px 0 10px;
    color: var(--sp-text);
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.2;
}

.sp-trust-content p {
    margin: 0 0 16px;
    color: var(--sp-text);
}

.sp-trust-content ul,
.sp-trust-content ol {
    display: grid;
    gap: 9px;
    margin: 0 0 18px;
    padding-left: 1.25em;
}

.sp-trust-content li {
    color: var(--sp-text);
}

.sp-trust-content a,
.sp-trust-side-card a {
    color: var(--sp-accent);
    text-decoration: none;
}

.sp-trust-content a:hover,
.sp-trust-side-card a:hover {
    text-decoration: underline;
}

.sp-trust-sidebar {
    position: sticky;
    top: calc(var(--sp-header-height, 76px) + 18px);
    display: grid;
    gap: 14px;
}

.sp-trust-side-card {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.sp-trust-side-card strong {
    color: var(--sp-text);
    line-height: 1.35;
}

.sp-trust-side-card small {
    color: var(--sp-muted);
    line-height: 1.45;
}

.sp-trust-side-nav a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 0;
    border-top: 1px solid var(--sp-card-border);
}

.sp-trust-side-nav a:first-of-type {
    border-top: 0;
}

@media (max-width: 900px) {
    .sp-trust-hero,
    .sp-trust-layout {
        grid-template-columns: 1fr;
    }

    .sp-trust-sidebar {
        position: static;
    }
}

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

    .sp-trust-hero,
    .sp-trust-card {
        border-radius: var(--sp-radius-md);
    }

    .sp-trust-hero {
        padding: 24px 18px;
    }

    .sp-trust-card {
        padding: 22px 18px;
    }

    .sp-trust-hero__card {
        min-height: auto;
    }
}