/* =====================================
   FOOTER
===================================== */

.site-footer {
    background: linear-gradient(180deg, #020617, #020617);
    color: #cbd5f5;
    padding-top: 70px;
}


/* Main Grid */

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}


/* Links */

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #94a3b8;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 4px;
}


/* Bottom Bar */

.footer-bottom {
    text-align: center;
    padding: 15px;
    font-size: 13px;
    background: #020617;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* Responsive */

@media(max-width:768px) {
    .footer-main {
        text-align: center;
    }
}