/* =============================================
   VALUE PROPS (dark section — numbered list)
   ============================================= */

.vp {
    padding-block: var(--space-32);
    background: var(--color-navy);
}

.vp__layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: var(--space-24);
    align-items: start;
}

/* ── Left column ──────────────────────────── */

.vp .section-title {
    color: var(--color-white);
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

.vp__lead {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    max-width: 34ch;
    margin-bottom: var(--space-10);
}

/* ── Right column — numbered items ────────── */

.vp__items {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.vp__item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: var(--space-5);
    align-items: start;
    padding-block: var(--space-8);
    border-top: 1px solid rgba(255,255,255,0.07);
}

.vp__item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.vp__item-num {
    font-size: 1.7rem;
    line-height: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.18);
    font-feature-settings: "tnum";
}

.vp__item-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-2);
    letter-spacing: -0.01em;
}

.vp__item-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.75;
}

/* ── Responsive ───────────────────────────── */

@media (max-width: 900px) {
    .vp__layout {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .vp__lead {
        max-width: 100%;
    }
}
