/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .reveal-text {
        font-size: 14vw;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        text-align: center;
    }
    .brand-col {
        grid-column: 1 / -1;
        text-align: left;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-column h3 {
        font-size: 16px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .footer-column h3::after {
        content: "";
        display: block;
        width: 25px;
        height: 2px;
        background: #0069C8;
        margin-top: 5px;
        border-radius: 2px;
        margin: 0 auto;
    }
    .brand-col h3::after {
        margin: 5px auto 0;
    }
    .seo-tags {
        flex-direction: column;
        gap: 0;
    }
}
