/* Ensure body takes full height for sticky footer */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== FOOTER ===== */
.landing-footer {
    padding: 48px 40px 32px;
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.footer-tagline {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #0088cc;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1100px) {
    .landing-footer {
        padding: 40px 20px 28px;
    }

    .footer-main {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .landing-footer {
        padding: 32px 16px 24px;
    }

    .footer-main {
        gap: 20px;
    }

    .footer-nav {
        gap: 16px;
    }
}