.trust-page {
    background: var(--bg-primary);
}

.trust-hero {
    background: linear-gradient(135deg, var(--emerald-light), #ffffff);
    padding: 3rem 0 2.5rem;
}

.trust-hero-inner {
    max-width: 860px;
    text-align: right;
}

.trust-kicker {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--emerald);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.trust-hero h1 {
    color: var(--emerald);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.trust-hero p {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 760px;
}

.trust-section {
    padding: 2.5rem 0;
}

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

.trust-content {
    display: grid;
    gap: 1rem;
}

.trust-content-narrow {
    max-width: 900px;
}

.trust-card,
.trust-side {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
}

.trust-card-large {
    padding: 1.5rem;
}

.trust-card h2,
.trust-side h2 {
    color: var(--emerald);
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.trust-card p,
.trust-side p,
.trust-mini p {
    color: var(--gray-500);
    line-height: 1.9;
    font-size: 0.95rem;
}

.trust-faq-list {
    display: grid;
    gap: 0.6rem;
}

.trust-faq-list details {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.trust-faq-list summary {
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 800;
    padding: 0.9rem 1rem;
}

.trust-faq-list p {
    padding: 0 1rem 1rem;
}

.trust-action {
    display: inline-flex;
    justify-content: center;
    margin-top: 1rem;
    background: var(--emerald);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 800;
}

.trust-side-stack {
    display: grid;
    gap: 1rem;
}

.trust-mini {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.trust-mini h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

@media (max-width: 768px) {
    .trust-hero {
        padding: 2rem 0;
    }

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

    .trust-card,
    .trust-side {
        padding: 1rem;
    }
}
