:root {
    --primary: #1c5b96;
    --accent: #e31e24;
    --dark: #222;
    --light: #F2F2F2;
    --text-muted:rgba(0, 0, 0, 0.6);
    --gradient: #404040;
    --gradient2: #404040;
    /*--gradient: linear-gradient(135deg, rgba(227, 30, 36, 0.2) 0%, rgba(28, 91, 150, 0.2) 80%);*/
    /*--gradient2: linear-gradient(135deg, rgba(227, 30, 36, 1) 0%, rgba(28, 91, 150, 1) 80%);*/
}

.container-footer {
    max-width: 1480px;
    margin: auto;
    padding: 0 20px;
}

.site-footer {
    padding: 80px 0 70px;
    background: var(--light);
    border-top: 1px solid #eee;
    color: var(--dark);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.footer-socials {
    display: flex;
    gap: 20px;
   
    align-items: center;
}

.footer-socials a {
    text-decoration: none;
    color: var(--dark);
    font-size: 18px;
    transition: transform 0.2s, opacity 0.2s;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    opacity: 0.7;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-nav-col h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #8e8e8e;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col ul li {
    margin-bottom: 12px;
}

.footer-nav-col ul li a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    transition: opacity 0.2s;
}

.footer-nav-col ul li a:hover {
    opacity: 0.6;
}

.footer-logo-text {
    font-weight: 800;
    font-size: 15vw;
    white-space: nowrap;
    letter-spacing: -0.05em;
    line-height: 1;
    text-decoration: none;
    display: block;
    margin: 0;
}
.footer-logo-gradient {
    background: var(--gradient2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-copy {
    max-width: 1480px;
    margin: 10px auto auto;
    padding: 0 20px;
    font-size: 14px;
    color: #8e8e8e;
}

@media (min-width: 992px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
    }

    .site-footer {
        padding: 80px 0 40px;
    }

    .container-footer {
        padding: 0 40px;
    }

    .footer-copy {
        padding: 0 40px;
    }

    .footer-socials {
        width: 90%;
        justify-content: flex-start;
    }

    .footer-nav-grid {
        width: 90%;
        grid-template-columns: repeat(6, 1fr);
    }


    .footer-nav-col .footer-socials {
        margin-top: 20px;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer-nav-col .footer-socials svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

}

.footer-socials { display: flex; gap: 18px; margin-top: 10px; }
.footer-socials svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    transition: color .2s, transform .2s;
}

.socials--desktop { display: none; }
.socials--mobile  { display: flex; }
@media (min-width: 992px) {
    .socials--desktop { display: flex; }
    .socials--mobile  { display: none !important; }
}


/* Show only on mobile */
@media (min-width: 769px) {
    #mobile-fixed-cta { display: none !important; }
}

/* Fixed bar */
#mobile-fixed-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999999;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

#mobile-fixed-cta a {
    pointer-events: auto;
    width: 100%;
    max-width: 220px;
    text-align: center;

    padding: 16px 18px;
    border-radius: 10px;

    font-size: 18px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    background: #1b232c;
    color: #fff;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    -webkit-tap-highlight-color: transparent;
}

#mobile-fixed-cta a:active {
    transform: scale(0.99);
}
@media (max-width: 768px) {
    #mobile-fixed-cta a {
        animation: ctaPulse 14s ease-in-out infinite;
    }
    @keyframes ctaPulse {
        0%, 92%, 100% { transform: scale(1); }
        94% { transform: scale(1.02); }
        96% { transform: scale(1); }
    }
}
