footer {
    background-color: #13132e;
    color: #c8c8ee;
    font-family: "League Spartan", sans-serif;
    padding: 2.5em 2em 0;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2em;
    padding-bottom: 2em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    width: 44px;
    border-radius: 5%;
    margin-bottom: 0.8em;
    display: block;
}

.footer-col h4 {
    color: #f1f1ff;
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0 0 0.8em 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col p,
.footer-col a {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #a8a8cc;
    text-decoration: none;
    margin: 0 0 0.4em 0;
    line-height: 1.4;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-company {
    color: #d0d0ee !important;
    font-weight: 700 !important;
}

.footer-bottom {
    max-width: 960px;
    margin: 0 auto;
    padding: 1em 0 1.2em;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #6868a0;
    margin: 0;
}

@media (max-width: 700px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1.5em;
    }
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 450px) {
    footer {
        padding: 2em 1.2em 0;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-col:first-child {
        grid-column: auto;
    }
}
