.site-footer {
    background-color: #030A11;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        gap: 40px;
    }
}

/* Logo Section */
.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 16px;

}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 60%;
}

.logo-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-icon {
    transform: rotate(45deg);
}

.trusted-badge {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 4px;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-inner {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.badge-text {
    font-size: 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Navigation Links */
.footer-nav {
    display: flex;
    gap: 64px;
}

@media (min-width: 768px) {
    .footer-nav {
        gap: 80px;
    }
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 100px;
}

.nav-link {
    color: #A9A8AE;
    font-size: 14px;
    text-decoration: none;
    opacity: 0.8;
    padding: 2px 0;
    transition: color 0.2s, opacity 0.2s;
}

.nav-link:hover {
    color: white;
    opacity: 1;
}

/* Copyright & Socials */
.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 203px;
}

.copyright-text {
    color: #A9A8AE;
    font-size: 12px;
    opacity: 0.5;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon-link {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.social-icon-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* CTA Buttons */
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 105px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(240, 237, 254, 0.1);
    color: #C5C4C8;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: linear-gradient(180deg, #FF744D 0%, #D94D26 100%);
    border-color: #FF744D;
    color: #FFF3F0;
}

.btn-primary:hover {
    opacity: 0.9;
}


@media (max-width: 768px) {
    .btn {
        padding: 8px 8px;
    }

    .footer-actions {
        display: none;
    }

    .footer-container {
        align-items: center;
    }

    .nav-column {
        min-width: unset;
    }

    .footer-info {
        min-width: unset;
        align-items: center;
    }

    .logo-wrapper {
        opacity: 100%;
        justify-content: center;
    }

    .logo-wrapper img {
        height: 38px;

    }

    .trusted-badge{
        display: none;
    }
}