.site-footer {
    background: linear-gradient(180deg, #0C1721 0%, #0D1821 100%);
    color: var(--soft);
    padding: clamp(36px, 6vw, 64px) clamp(16px, 6vw, 80px) 18px;
    margin-block-start: 0;
}

.mobile-spacer {
    display:none;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: clamp(16px, 4vw, 64px);
    grid-template-columns: 1.3fr 1fr 1fr;
    align-items: start;
}

/* Brand block */
.footer-brand .custom-logo-link img {
    max-height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.footer-brand .site-name {
    display: inline-block;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-brand p {
    margin: 0;
    color: #D9EAF8;
    opacity: .9;
    line-height: 1.8;
    max-width: 540px;
    font-size: 16px;
}

/* Lists */
.footer-links h4 {
    margin: 0 0 10px;
    font-weight: 800;
    color: var(--soft);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    font-size: 16px;
}

.footer-links a,
.footer-legal a {
    color: #E8F5FF;
    text-decoration: none;
    opacity: .9;
    transition: color .2s ease, opacity .2s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent);
    opacity: 1;
}

/* Bottom line */
.footer-bottom {
    max-width: 1200px;
    margin: 100px auto 0;
    padding-top: 14px;
    text-align: center;
    color: #CFE7FA;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Responsive */
@media (max-width: 980px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    
    .mobile-spacer {
        display:block;
    }
}

.disabled {
    pointer-events: none;
    cursor: default;
    color: #a9a9a9;
}