.cst-footer-legal {
    width: 100%;
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    background: rgba(0, 10, 23, 0.58);
    padding: 34px 24px 36px;
}

.cst-footer-legal-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
}

.cst-footer-copy,
.cst-footer-company-info {
    margin: 0;
    color: rgba(255,255,255,0.62);
    font-size: 13px;
    line-height: 1.6;
}

.cst-footer-platform {
    display: block;
    margin-top: 5px;
    color: rgba(212,175,55,0.72);
    font-size: 12.5px;
}

.cst-footer-company-info strong {
    color: rgba(212,175,55,0.82);
    font-weight: 700;
}

.cst-footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cst-footer-legal-links a {
    color: rgba(255,255,255,0.64);
    font-size: 13.3px;
    transition: color 0.22s ease;
}

.cst-footer-legal-links a:hover,
.cst-footer-legal-links a:focus-visible {
    color: #D4AF37;
    outline: none;
}

.cst-footer-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex-wrap: wrap;
}

.cst-footer-payments-label {
    width: 100%;
    color: rgba(255,255,255,0.58);
    font-size: 13.2px;
    margin-bottom: 2px;
}

.cst-footer-payment-chip {
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    color: rgba(255,255,255,0.76);
    background: rgba(255,255,255,0.025);
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .cst-footer-legal {
        padding: 34px 14px 38px;
    }

    .cst-footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }

    .cst-footer-payments {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 5px;
        overflow: visible;
        padding: 0;
    }

    .cst-footer-payments-label {
        flex: 0 0 auto;
        width: auto;
        margin: 0 3px 0 0;
        font-size: 11px;
        line-height: 1;
        white-space: nowrap;
    }

    .cst-footer-payment-chip {
        flex: 0 0 auto;
        height: 30px;
        min-height: 30px;
        padding: 0 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 10.5px;
        line-height: 1;
        letter-spacing: -0.02em;
        white-space: nowrap;
    }
}