/* Landing Footer Styles */
.landing-footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 2.5rem 0 1.5rem;
    position: relative;
}

.landing-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.landing-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.landing-footer__brand {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.landing-footer__logo {
    height: 28px;
    display: block;
    flex-shrink: 0;
}

.landing-footer__description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #9ca3af;
}

.landing-footer__right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.landing-footer__links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.landing-footer__link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.landing-footer__link:hover {
    color: white;
}

.landing-footer__social {
    display: flex;
    gap: 0.5rem;
}

.landing-footer__social-link {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.landing-footer__social-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.landing-footer__divider {
    height: 1px;
    background: #374151;
    margin: 1.5rem 0;
    border: none;
}

.landing-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.landing-footer__copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

.landing-footer__legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.landing-footer__legal-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.landing-footer__legal-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-footer {
        padding: 2rem 0 1.5rem;
    }

    .landing-footer__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .landing-footer__brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .landing-footer__right {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .landing-footer__links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .landing-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .landing-footer__legal {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .landing-footer__container {
        padding: 0 1rem;
    }
}

