.site-footer {
    background-color: #0b1e3a;
    background-image: linear-gradient(180deg, #0b1e3a 0%, #07152c 100%);
    color: #c9d4e5;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
}

.footer-grid {

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;

}

.footer-brand h3 {

    margin: 0 0 12px;
    color: #ffffff;
    font-size: 20px;

}

.footer-brand p {

    color: #9fb3d1;
    line-height: 1.6;

}

.footer-links h4,
.footer-support h4 {

    color: #ffffff;
    margin-bottom: 12px;
    font-size: 15px;

}

.footer-links ul {

    list-style: none;
    padding: 0;
    margin: 0;

}

.footer-links li {

    margin-bottom: 8px;

}

.site-footer a {

    color: #7db6ff;
    text-decoration: none;
    transition: color 0.2s ease;

}

.site-footer a:hover {

    color: #ffffff;

}

.footer-support p {

    color: #9fb3d1;
    line-height: 1.6;

}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #7f95b3;

}

/* responsive */

@media (max-width: 800px) {

    .footer-grid {

        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;

    }

}