/* ─────────────────────────────────────────
    FOOTER
    ───────────────────────────────────────── */


.page-footer {
    border-top: 1px solid var(--border);
    padding: 36px 0;
    position: relative;
}

.page-footer::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--blue), var(--red), transparent);
    position: absolute;
    top: 0;
    left: 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-d);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0 10px;
    border-right: 1px solid var(--border);
    transition: color 0.15s;
}

.footer-links a:last-child {
    border-right: none;
}

.footer-links a:hover {
    color: var(--blue-hi);
}

.footer-copy {
    font-size: 0.68rem;
    color: var(--text-muted);
}


/* ── Product Footer ── */

.lp-footer {
    padding: 36px 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.lp-footer-logo {
    font-family: var(--font-d);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.lp-footer-links {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.lp-footer-links a {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0 8px;
    border-right: 1px solid var(--border);
    transition: color 0.15s;
}

.lp-footer-links a:last-child {
    border-right: none;
}

.lp-footer-links a:hover {
    color: var(--blue-hi);
}

.lp-footer-copy {
    font-size: 0.7rem;
    color: var(--text-muted);
}