.lp_header {
    width: 100%;
    border-bottom: 1px solid #000;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.lp_inner {
    max-width: 1660px;
    height: 82px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp_logoLink {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.lp_logoImageWrap {
    position: relative;
    width: 150px;
    height: 50px;
    flex-shrink: 0;
}

.lp_logoImage {
    object-fit: contain;
    width: 100%;
}


.lp_desktopNav {
    display: none;
    align-items: center;
    gap: 40px;
}

.lp_navLink {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.lp_navLink:hover {
    color: var(--brand);
}

.lp_ctaButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 9999px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-size: var(--normal-txt);
    border: none;
    font-weight: 700;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.lp_ctaButton:hover {
    opacity: 0.8;
}

.lp_menuButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 0;
    background: transparent;
    color: #000;
    border-radius: 6px;
    cursor: pointer;
}

.lp_menuIcon {
    width: 44px;
    height: 44px;
}

.lp_mobileMenu {
    border-top: 1px solid #000;
    background: #f4f4f4;
}

.lp_mobileNav {
    max-width: 1660px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.27);
}

.lp_mobileNavLink {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.lp_mobileCtaButton {
    margin-top: 20px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 9999px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .lp_inner {
        padding: 0 32px;
    }

    .lp_logoImageWrap {
        width: 150px;
        height: 52px;
    }

    .lp_logoTitle {
        font-size: 28px;
    }

    .lp_logoSubTitle {
        font-size: 13px;
    }
}

@media (min-width: 1024px) {
    .lp_inner {
        padding: 0 40px;
    }

    .lp_desktopNav {
        display: flex;
    }

    .lp_menuButton {
        display: none;
    }

    .lp_mobileMenu {
        display: none;
    }
}