.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    background: #ffffff;
}

.site-main {
    flex: 1;
}

.site-footer {
    color: white;
    background: #0f0826;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 28px 48px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr 0.9fr;
    gap: 40px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: white;
    text-decoration: none;
}

.footer-brand strong {
    font-size: 1.25rem;
}


.footer-grid p {
    max-width: 280px;
    margin: 0;
    color: #a89ec9;
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-grid h2 {
    margin: 0 0 16px;
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
}

.footer-grid a {
    display: block;
    margin: 0 0 12px;
    color: #a89ec9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.footer-grid a:hover,
.footer-bottom a:hover {
    color: white;
}

.download-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-width: 180px;
    padding: 12px 14px;
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.download-link:hover {
    background: rgba(255, 255, 255, 0.18);
}

.download-link > span:first-child {
    font-size: 1.3rem;
}

.download-link small {
    display: block;
    color: #a89ec9;
    font-size: 0.65rem;
    line-height: 1.1;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 28px 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a89ec9;
    font-size: 0.88rem;
}

.footer-bottom span:last-child {
    display: flex;
    gap: 24px;
}

.footer-bottom a {
    color: #a89ec9;
    text-decoration: none;
}

@media (max-width: 860px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

