.page-shell--legal {
    width: 100%;
    padding: 32px 16px 56px;
}

.page-shell__inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.page-hero--legal {
    margin-bottom: 24px;
}

.page-hero__eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a7a7a;
}

.page-hero__title {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    color: #121212;
}

.page-hero__intro {
    margin: 0;
    max-width: 720px;
    font-size: 16px;
    line-height: 1.7;
    color: #5f5f5f;
}

.legal-card {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 28px;
    padding: 28px 24px;
    box-shadow: 0 18px 40px rgba(18, 18, 18, 0.06);
}

.legal-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: legal-counter;
    display: grid;
    gap: 20px;
}

.legal-list__item {
    position: relative;
    padding: 0 0 20px 56px;
    border-bottom: 1px solid #f1ece5;
}

.legal-list__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-list__item::before {
    counter-increment: legal-counter;
    content: counter(legal-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #121212;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-list__item h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
    color: #121212;
}

.legal-list__item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #4f4f4f;
}

.legal-list__item a {
    color: #121212;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 640px) {
    .page-shell--legal {
        padding: 24px 12px 44px;
    }

    .legal-card {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .legal-list__item {
        padding-left: 48px;
    }

    .legal-list__item h2 {
        font-size: 18px;
    }

    .legal-list__item p {
        font-size: 14px;
        line-height: 1.75;
    }

    .legal-list__item::before {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }
}