/* Trust / SEO public pages */
.trust-page {
    padding: 4.5rem 0;
}

.trust-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.trust-hero__content,
.trust-card,
.trust-panel,
.trust-note {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.86);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.trust-hero__content {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.trust-kicker {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(14,165,233,0.1);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.trust-hero h1 {
    margin: 0 0 1rem;
    max-width: 11ch;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.trust-hero p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.trust-panel {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
    align-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(224,242,254,0.48));
}

.trust-panel__item {
    padding: 1rem;
    border: 1px solid rgba(14,165,233,0.14);
    border-radius: 18px;
    background: #fff;
}

.trust-panel__item strong {
    display: block;
    margin-bottom: 0.3rem;
}

.trust-panel__item span {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.55;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}

.trust-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card {
    padding: 1.5rem;
}

.trust-card h2,
.trust-card h3 {
    margin-top: 0;
    margin-bottom: 0.65rem;
}

.trust-card p,
.trust-card li,
.trust-note p {
    color: var(--text-secondary);
    line-height: 1.65;
}

.trust-card ul,
.trust-card ol {
    margin: 0.85rem 0 0;
    padding-left: 1.15rem;
}

.trust-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0f172a, #10213c 55%, #0ea5e9);
    color: #fff;
}

.trust-note h2,
.trust-note h3 {
    margin-top: 0;
    color: #fff;
}

.trust-note p,
.trust-note li {
    color: rgba(255,255,255,0.82);
}

.trust-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
}

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

    .trust-hero h1 {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .trust-page {
        padding: 3rem 0;
    }

    .trust-hero__content,
    .trust-card,
    .trust-panel,
    .trust-note {
        border-radius: 18px;
        padding: 1.2rem;
    }
}
