/* Trust Layer — institutional. Structured, authoritative, subtle depth. */

.trust-layer-section {
    --trust-text: #111827;
    --trust-text-muted: #6b7280;
    --trust-icon: #475569;
}

.trust-layer-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 4.5rem 0;
    width: 100%;
}

.trust-layer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-layer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* Left column — statements and highlights */
.trust-layer-left {
    min-width: 0;
}

.trust-main-title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: var(--trust-text);
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.trust-supporting-line {
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.5;
    margin: 0 0 1.25rem 0;
}

.trust-main-description {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.trust-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.trust-highlights li {
    font-size: 0.9375rem;
    color: var(--trust-text);
    line-height: 1.5;
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
}

.trust-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9em;
    width: 10px;
    height: 1px;
    background: #cbd5e1;
}

/* Right column — structured, left-aligned. Vertical anchor line. */
.trust-layer-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid rgba(15, 23, 42, 0.16);
    padding-left: 2rem;
}

.trust-line-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.16);
}

.trust-line-item:first-child {
    border-top: none;
    padding-top: 0;
}

.trust-line-item-icon {
    color: var(--trust-icon);
    flex-shrink: 0;
}

.trust-line-item-icon svg {
    display: block;
}

.trust-line-item-text {
    text-align: left;
    min-width: 0;
}

.trust-line-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--trust-text);
    margin: 0 0 0.35rem 0;
    line-height: 1.35;
}

.trust-line-item-desc {
    font-size: 0.875rem;
    color: var(--trust-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Tablet: keep two columns, reduce gap */
@media (max-width: 1024px) {
    .trust-layer-section {
        padding: 3.5rem 0;
    }

    .trust-layer-container {
        padding: 0 1.5rem;
    }

    .trust-layer-layout {
        gap: 3rem;
    }
}

/* Mobile: stack — title, description, highlights, custom line, then line items */
@media (max-width: 768px) {
    .trust-layer-section {
        padding: 3rem 0;
    }

    .trust-layer-container {
        padding: 0 1.25rem;
    }

    .trust-layer-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .trust-layer-right {
        padding-top: 0;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.16);
        padding-top: 2rem;
    }

    .trust-line-item {
        padding: 1.25rem 0;
    }
}
