/* ==========================================
   STObonus — Footer — Premium European Style
   ========================================== */

.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, .6);
    padding: 72px 0 28px;
}

.footer a {
    color: rgba(255, 255, 255, .6);
    transition: color var(--speed) var(--ease);
}

.footer a:hover {
    color: #fff;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer__brand h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: var(--letter-tight);
}

.footer__brand h3 span {
    color: #6EB0FF;
}

.footer__brand p {
    font-size: .9rem;
    line-height: 1.75;
    max-width: 300px;
}

.footer__col h4 {
    color: rgba(255, 255, 255, .4);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 20px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col li a {
    font-size: .9rem;
    display: inline-block;
    padding: 2px 0;
}

.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer__socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    transition: all var(--speed) var(--ease);
}

.footer__socials a:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
}

.footer__socials svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
}

@media (max-width: 768px) {
    .footer {
        padding: 56px 0 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}