:root {
    --red: #e8192c;
    --ink: #0c0c0d;
    --ink-2: #1c1c1e;
    --paper: #f4f3ef;
    --paper-2: #ebe9e4;
    --white: #ffffff;
    --muted: #686871;
    --rule: rgba(0, 0, 0, 0.1);
    --ff-d: 'Bebas Neue', sans-serif;
    --ff-b: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--ff-b);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.trust-hero {
    background: var(--ink);
    color: var(--white);
    padding: 86px 0 72px;
    position: relative;
    overflow: hidden;
}

.trust-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(232, 25, 44, 0.16), transparent 44%),
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(255, 255, 255, 0.08), transparent 65%);
    pointer-events: none;
}

.trust-wrap {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.trust-kicker::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--red);
}

.trust-hero h1 {
    max-width: 820px;
    margin: 0 0 20px;
    font-family: var(--ff-d);
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.trust-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(17px, 2vw, 21px);
}

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

.trust-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 52px;
    align-items: start;
}

.trust-content {
    min-width: 0;
}

.trust-section {
    padding: 34px 0;
    border-bottom: 1px solid var(--rule);
}

.trust-section:first-child {
    padding-top: 0;
}

.trust-section h2 {
    margin: 0 0 14px;
    font-family: var(--ff-d);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.trust-section h3 {
    margin: 24px 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.trust-section p {
    margin: 0 0 16px;
    color: #252528;
    font-size: 17px;
}

.trust-section ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: #252528;
    font-size: 16px;
}

.trust-section li {
    margin: 8px 0;
}

.trust-panel {
    position: sticky;
    top: 24px;
    padding: 24px;
    background: var(--ink);
    color: var(--white);
    border-radius: 8px;
}

.trust-panel h2 {
    margin: 0 0 14px;
    font-family: var(--ff-d);
    font-size: 32px;
    letter-spacing: 0.02em;
}

.trust-panel a {
    display: block;
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-panel a:hover {
    color: var(--white);
}

.trust-link-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
}

.trust-link-list a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
}

.trust-link-list a:hover {
    color: var(--red);
}

.trust-note {
    padding: 22px;
    margin-top: 20px;
    background: var(--paper-2);
    border-left: 4px solid var(--red);
}

.trust-status {
    display: none;
    padding: 14px 16px;
    margin: 16px 0 0;
    border-radius: 6px;
    background: var(--paper-2);
    color: var(--ink);
    font-weight: 700;
}

.trust-status.is-visible {
    display: block;
}

.trust-cta {
    margin-top: 28px;
}

.trust-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    background: var(--red);
    color: var(--white);
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
}

.trust-form {
    display: grid;
    gap: 12px;
    max-width: 620px;
    margin-top: 18px;
}

.trust-form label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.trust-input,
.trust-textarea,
.trust-select {
    width: 100%;
    border: 1px solid var(--rule);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.trust-input,
.trust-select {
    min-height: 48px;
    padding: 0 14px;
}

.trust-textarea {
    min-height: 150px;
    padding: 13px 14px;
    resize: vertical;
}

.trust-archive-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.trust-archive-list a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--rule);
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.trust-archive-list a span {
    color: var(--muted);
    font-weight: 600;
}

.trust-archive-list a:hover {
    color: var(--red);
}

.trust-footer {
    padding: 30px 20px;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
    font-size: 14px;
}

.trust-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
    margin-top: 10px;
}

.trust-footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.trust-footer a:hover {
    color: var(--white);
}

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

    .trust-panel {
        position: static;
    }

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