/* ==========================
   LOUDVISION DIGITAL FOOTER
   ========================== */

.site-footer {
    background:
       black;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 78px 8% 26px;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.35fr;
    gap: 46px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.footer-logo img {
    display: block;
    width: 190px;
    height: auto;
    object-fit: contain;
}

.footer-logo span {
    color: var(--accent);
}

.footer-brand p {
    margin-top: 18px;
    max-width: 370px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
    font-size: 15px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.60);
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    font-size: 15px;
    max-width: 26ch;
}

.footer-button {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 14px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: black;
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 10px 22px rgba(73, 198, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.footer-button:hover {
    background: linear-gradient(180deg, #72daff 0%, #57ccff 100%);
    transform: translateY(-2px);
    box-shadow:
        0 14px 28px rgba(73, 198, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.footer-bottom {
    max-width: 1400px;
    margin: 56px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 36px;
    }

    .footer-contact {
        grid-column: 1 / -1;
        max-width: 420px;
    }
}

@media (max-width: 900px) {
    .site-footer {
        padding: 64px 6% 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand p,
    .footer-contact p {
        max-width: 100%;
    }

    .footer-bottom {
        margin-top: 42px;
        padding-top: 18px;
    }
}