/* =====================================================
 * lp-header-footer.css
 * Unified header / footer used by every landing page via
 * the #lp-header-mount / #lp-footer-mount mount points
 * rendered by lp-common.js.
 * ===================================================== */

/* ---------- Header ---------- */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left  { flex: 1; }
.header-center { flex: 2; text-align: center; }
.header-right { flex: 1; text-align: right; }

.header-logo {
    height: 40px;
    width: auto;
    display: inline-block;
}

.header-title {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    header { padding: 0.8rem 1rem; }
    .header-center { display: none; }
    .header-logo { height: 30px; }
    header .cta-btn { padding: 8px 16px; font-size: 12px; }
}

/* ---------- Footer ---------- */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 48px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
}
footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: var(--accent-cyan);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-bottom: 20px;
}
.footer-links a {
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    footer { padding: 32px 0; }
    .footer-links { gap: 12px 20px; }
}
