/* ===== FOOTER ===== */
.footer {
    background: #070a12;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
    margin-top: auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__title {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer__links a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(79, 143, 255, 0.5), 0 0 20px rgba(79, 143, 255, 0.25);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
    .footer {
        padding: 48px 0 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
        text-align: center;
    }

    .footer__brand {
        text-align: center;
    }

    .footer__brand img {
        margin: 0 auto 16px;
        display: block;
    }

    .footer__brand p {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer__title {
        margin-bottom: 14px;
    }

    .footer__links li {
        margin-bottom: 8px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px 0;
    }

    .footer__legal {
        justify-content: center;
    }

    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
    }
}

/* ===== FOOTER LEGAL LINKS ===== */
.footer__legal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer__legal a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(79, 143, 255, 0.5), 0 0 20px rgba(79, 143, 255, 0.25);
}

.footer__legal span {
    color: rgba(255, 255, 255, 0.2);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(11, 15, 25, 0.97);
    border-top: 1px solid rgba(79, 143, 255, 0.15);
    backdrop-filter: blur(16px);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.cookie-banner__icon {
    font-size: 1.6rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-banner__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.cookie-banner__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cookie-banner__desc a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__desc a:hover {
    color: var(--accent);
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner__btn--refuse {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.cookie-banner__btn--refuse:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.cookie-banner__btn--accept {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

.cookie-banner__btn--accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(79, 143, 255, 0.3);
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .footer {
        padding: 36px 0 0;
    }

    .footer__bottom {
        font-size: 0.8rem;
        padding: 16px 0;
    }
}
