:root{
    --footer-bg: #0b1240;
    --footer-text: #f5f5f5;
    --footer-link-hover: #cc00cc;
}

*,*::before,*::after{box-sizing:border-box;}
body{margin:0;font-family:"Inter",sans-serif;background:#fff;}

/* ============ FOOTER WRAPPER ============ */
.site-footer-minimal{
    background: var(--footer-bg);
    padding: 24px 20px;
    color: var(--footer-text);
    font-family: "Inter", sans-serif;
}

/* ============ ROW 1: COMPANY LINKS (centered) ============ */
.footer-company{
    max-width: 1280px;
    margin: 0 auto 14px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    font-weight: 500;
    font-size: 15px;
}
.footer-company a{
    color: var(--footer-text);
    text-decoration: none;
    transition: color .2s ease;
}
.footer-company a:hover{ color: var(--footer-link-hover); }

/* ============ DIVIDER ============ */
.footer-divider{
    max-width: 1280px;
    margin: 0 auto 14px;
    border: 0;
    border-top: 1px solid rgba(245,245,245,0.18);
}

/* ============ ROW 2: LEGAL + COPYRIGHT ============ */
.footer-row{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 300;
    font-size: 14px;
    color: var(--footer-text);
}
.footer-copyright{
    line-height: 1.5;
}
.footer-legal{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
}
.footer-legal a{
    color: var(--footer-text);
    text-decoration: none;
    transition: color .2s ease;
}
.footer-legal a:hover{ color: var(--footer-link-hover); }
.footer-legal .sep{
    opacity: 0.5;
    user-select: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 767px){
    .footer-company{
        gap: 14px;
        font-size: 14px;
    }
    .footer-row{
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-legal{
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
}