.lp-footer {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    color: var(--lp-text);
    padding: 5rem 0 1.5rem;
    border-top: 1px solid var(--lp-border);
}

.lp-footer-brand {
    gap: 0.85rem;
}

.lp-footer-brand-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.lp-footer-brand-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.lp-footer-brand-subtitle {
    color: var(--lp-text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.lp-footer-description {
    color: var(--lp-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 32rem;
}

.lp-footer-title {
    color: var(--lp-primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.lp-footer-list li+li {
    margin-top: 0.65rem;
}

.lp-footer-link {
    color: var(--lp-text-muted);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    font-size: 0.92rem;
    display: inline-block;
}

.lp-footer-link:hover {
    color: var(--lp-primary);
    transform: translateX(4px);
}

.lp-social-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--lp-surface);
    color: var(--lp-primary);
    border: 1px solid var(--lp-border);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.25s ease;
    box-shadow: var(--lp-shadow-sm);
}

.lp-social-btn:hover {
    background: var(--lp-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-md);
}

.lp-status-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 1.2rem;
    padding: 1.25rem;
    box-shadow: var(--lp-shadow-sm);
}

.lp-status-indicator {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    display: inline-block;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14), 0 0 12px rgba(34, 197, 94, 0.7);
    animation: lpPulse 2s infinite;
}

.lp-status-text,
.lp-contact-lines {
    color: var(--lp-text-muted);
    font-size: 0.90rem;
    line-height: 1.7;
}

.lp-footer-divider {
    border-color: var(--lp-border);
    opacity: 1;
    margin: 0 0 1rem;
}

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

@keyframes lpPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.92);
        opacity: 0.72;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .lp-footer {
        padding: 3.5rem 0 1.25rem;
    }

    .lp-footer-link:hover {
        transform: none;
    }
}