.footer {
    margin-top: 0;
    background: #080808;
    color: #f9fafb;
    padding: 32px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Comfortaa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
}

.footer-brand-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

    .footer-brand-title,
    .footer-brand-title:visited,
    .footer-brand-title:hover,
    .footer-brand-title:active {
        color: #ffffff;
    }

.footer-brand p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    font-size: 13px;
}

.footer-col-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 8px;
}

.footer-link {
    display: block;
    color: #e5e7eb !important;
    margin-bottom: 4px;
    cursor: pointer;
}

    .footer-link:hover {
        color: #ffffff;
    }

.footer-contact-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 2px;
}

.footer-contact-link {
    display: inline-flex;
    opacity: 0.75;
    transition: opacity 0.2s, transform 0.2s;
}

    .footer-contact-link:hover {
        opacity: 1;
        transform: translateY(-2px);
    }

.footer-contact-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.footer-bottom {
    max-width: var(--container);
    margin: 40px auto 0;
    padding: 0 20px 4px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 11px;
    color: #6b7280;
    border-top: 1px solid rgba(55, 65, 81, 0.7);
    padding-top: 10px;
}

@media (max-width: 720px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 28px 0 16px;
    }

    .footer-brand-title {
        font-size: 22px;
    }

    .footer-brand-logo {
        height: 28px;
    }

    .footer-columns {
        gap: 20px;
    }

    .footer-contact-icon {
        width: 36px;
        height: 36px;
    }
}
