/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.LxBodyStyleWr {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0B0020;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER STYLE */
header.LxHeaderMainW {
    background-color: rgba(11, 0, 32, 0.95);
    border-bottom: 2px solid #B98CFF;
    box-shadow: 0 0 20px rgba(185, 140, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.LxHeaderContnr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.LxLogoTextSty {
    font-size: 28px;
    font-weight: 800;
    color: #B98CFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(185, 140, 255, 0.5);
}

.LxNavMainListW {
    display: block;
}

.LxUlNavContSty {
    list-style: none;
    display: flex;
    gap: 25px;
}

.LxNavLinkItemSt {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.LxNavLinkItemSt:hover {
    color: #B98CFF;
    text-shadow: 0 0 8px #B98CFF;
}

/* BURGER MENU */
.LxMenuCheckInp {
    display: none;
}

.LxBurgerBtnSty {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.LxBurgerBtnSty span {
    width: 30px;
    height: 3px;
    background-color: #B98CFF;
    border-radius: 2px;
}

/* HERO SECTION */
.LxHeroSectionW {
    padding: 80px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.LxHeroContnrWp {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.LxHeroGridWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.LxHeroImgSideW {
    flex: 1;
    min-width: 300px;
}

.LxHeroMainImgSt {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 1px solid #B98CFF;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.2);
}

.LxHeroMinGaller {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.LxHeroGalImgSty {
    width: calc(33.333% - 10px);
    border-radius: 10px;
    border: 1px solid rgba(185, 140, 255, 0.5);
}

.LxHeroTextSide {
    flex: 1.2;
    min-width: 300px;
}

.LxHeroMainTtlSt {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.LxHeroSubTtlSty {
    font-size: 20px;
    color: #B98CFF;
    margin-bottom: 25px;
    font-weight: 600;
}

.LxHeroDescrTxtS {
    margin-bottom: 20px;
    color: #E0E0E0;
    font-size: 16px;
}

.LxHeroBtnBlockW {
    margin-top: 30px;
}

.LxHeroCtaBtnSty {
    display: inline-block;
    padding: 18px 40px;
    background-color: #B98CFF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.4);
}

.LxHeroCtaBtnSty:hover {
    background-color: #FFFFFF;
    color: #0B0020;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

/* TITLES */
.LxSectTtlCentr {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 15px;
}

.LxSectTtlCentr::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #B98CFF;
}

/* REVIEWS */
.LxReviewsSectWp {
    padding: 80px 20px;
    background-color: rgba(185, 140, 255, 0.05);
}

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

.LxReviewGridSty {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.LxReviewCardItm {
    flex: 1;
    min-width: 280px;
    background-color: #1a0b36;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #B98CFF;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.LxReviewTxtMain {
    font-style: italic;
    margin-bottom: 20px;
    color: #F0F0F0;
}

.LxReviewAuthorS {
    font-weight: 700;
    color: #B98CFF;
}

/* QUOTE SECTION */
.LxQuoteSectionWp {
    padding: 80px 20px;
}

.LxQuoteContnrSty {
    max-width: 900px;
    margin: 0 auto;
}

.LxMainBlockQuot {
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
    border: none;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.LxQuoteFootSty {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #B98CFF;
    font-weight: 600;
}

.LxDetailsAccSty {
    background-color: #1a0b36;
    border: 1px solid rgba(185, 140, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.LxSummeryTtlSty {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    color: #B98CFF;
    outline: none;
    list-style: none;
}

.LxSummeryTtlSty::-webkit-details-marker {
    display: none;
}

.LxDetailsInBody {
    padding: 20px;
    border-top: 1px solid rgba(185, 140, 255, 0.1);
}

.LxDetailsListSty {
    margin-top: 15px;
    padding-left: 20px;
}

/* WHO FITS */
.LxWhoFitsSectWp {
    padding: 80px 20px;
}

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

.LxWhoFitsImgWp {
    margin-bottom: 50px;
}

.LxWhoFitsImgSty {
    width: 100%;
    border-radius: 15px;
    border: 1px solid #B98CFF;
}

.LxWhoFitsIntroT {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.LxWhoFitsUlSty {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.LxWhoFitsLiItem {
    background-color: #1a0b36;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    padding-left: 50px;
}

.LxWhoFitsLiItem::before {
    content: '▶';
    position: absolute;
    left: 20px;
    color: #B98CFF;
    font-size: 14px;
}

/* BENEFITS */
.LxBenefitsSectWp {
    padding: 80px 20px;
    background-color: rgba(185, 140, 255, 0.05);
}

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

.LxBenefGridWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.LxBenefTextSide {
    flex: 1;
    min-width: 300px;
}

.LxBenefTtlSty {
    font-size: 32px;
    margin-bottom: 30px;
}

.LxBenefListSty {
    list-style: none;
}

.LxBenefLiItem {
    margin-bottom: 25px;
}

.LxBenefLiItem strong {
    display: block;
    color: #B98CFF;
    font-size: 18px;
    margin-bottom: 5px;
}

.LxBenefImgSide {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.LxBenefImgSty {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    border: 3px solid #B98CFF;
    box-shadow: 0 0 40px rgba(185, 140, 255, 0.3);
}

/* PRICE SECTION */
.LxPriceSectionWp {
    padding: 80px 20px;
}

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

.LxPriceGridSty {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.LxPriceCardItm {
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    background-color: #1a0b36;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(185, 140, 255, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.LxPriceCardItm:hover {
    transform: translateY(-10px);
    border-color: #B98CFF;
}

.LxPriceCardHigh {
    border: 2px solid #B98CFF;
    transform: scale(1.05);
}

.LxPriceCardTtl {
    font-size: 24px;
    margin-bottom: 15px;
}

.LxPriceValSty {
    font-size: 32px;
    font-weight: 800;
    color: #B98CFF;
    margin-bottom: 30px;
}

.LxPriceFeatLst {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.LxPriceFeatLst li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.LxPriceBtnSty {
    display: block;
    padding: 15px;
    background-color: transparent;
    border: 2px solid #B98CFF;
    color: #B98CFF;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.LxPriceBtnSty:hover {
    background-color: #B98CFF;
    color: #FFFFFF;
}

/* EXTRA TEXT SECTIONS */
.LxExtraTextSectW {
    padding: 60px 20px;
}

.LxExtraContnrSty {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #0B0020;
    border: 1px dashed rgba(185, 140, 255, 0.3);
    padding: 40px;
    border-radius: 10px;
}

.LxExtraMainTtlS {
    font-size: 30px;
    margin-bottom: 25px;
    color: #B98CFF;
}

.LxExtraTxtParaSt {
    margin-bottom: 20px;
    color: #CCCCCC;
}

.LxExtraSubTtlSty {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.LxExtraUlSty {
    margin-bottom: 20px;
    padding-left: 20px;
}

.LxExtraUlSty li {
    margin-bottom: 10px;
}

/* FAQ SECTION */
.LxFaqSectionWp {
    padding: 80px 20px;
}

.LxFaqContnrSty {
    max-width: 800px;
    margin: 0 auto;
}

.LxFaqListWrapS {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.LxFaqDetailsSty {
    background-color: #1a0b36;
    border-radius: 8px;
}

.LxFaqSummerySty {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #FFFFFF;
    list-style: none;
    position: relative;
}

.LxFaqSummerySty::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #B98CFF;
    font-size: 24px;
}

.LxFaqDetailsSty[open] .LxFaqSummerySty::after {
    content: '-';
}

.LxFaqBodyTxtS {
    padding: 0 20px 20px;
    color: #B0B0B0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* FORM SECTION */
.LxFormSectionWp {
    padding: 80px 20px;
    background-color: #0B0020;
}

.LxFormContnrSty {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1a0b36;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.1);
}

.LxFormMainTtlS {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.LxFormSubTtlSty {
    text-align: center;
    color: #B0B0B0;
    margin-bottom: 40px;
}

.LxMainFormStyWr {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.LxInpGroupWrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.LxLabelStyleS {
    font-size: 14px;
    color: #B98CFF;
    font-weight: 600;
}

.LxInpFieldSty, .LxTextareaSty {
    width: 100%;
    padding: 15px;
    background-color: #0B0020;
    border: 1px solid rgba(185, 140, 255, 0.3);
    color: #FFFFFF;
    border-radius: 5px;
    outline: none;
}

.LxInpFieldSty:focus, .LxTextareaSty:focus {
    border-color: #B98CFF;
}

.LxCheckGroupWp {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #B0B0B0;
}

.LxCheckGroupWp a {
    color: #B98CFF;
}

.LxFormSubmitBtn {
    margin-top: 10px;
    padding: 18px;
    background-color: #B98CFF;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.LxFormSubmitBtn:hover {
    background-color: #A066FF;
}

/* FOOTER */
.LxFooterMainWp {
    background-color: #060014;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(185, 140, 255, 0.2);
}

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

.LxFootTopRowS {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.LxFootLogoSty {
    font-size: 22px;
    font-weight: 800;
    color: #B98CFF;
}

.LxFootContactS p {
    margin-bottom: 5px;
}

.LxFootContactS a {
    color: #FFFFFF;
    text-decoration: none;
}

.LxFootMidRowS {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
}

.LxFootLinkLstS {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.LxFootLinkLstS a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 13px;
}

.LxFootLinkLstS a:hover {
    color: #B98CFF;
}

.LxFootBottRowS {
    text-align: center;
    font-size: 13px;
    color: #666666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .LxHeroGridWrap, .LxBenefGridWrap {
        flex-direction: column;
    }
    .LxHeroTextSide, .LxHeroImgSideW {
        width: 100%;
    }
    .LxHeroMainTtlSt {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .LxBurgerBtnSty {
        display: flex;
    }
    .LxNavMainListW {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #0B0020;
        border-bottom: 2px solid #B98CFF;
        padding: 20px;
    }
    .LxMenuCheckInp:checked ~ .LxNavMainListW {
        display: block;
    }
    .LxUlNavContSty {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .LxWhoFitsUlSty {
        grid-template-columns: 1fr;
    }
    .LxPriceCardHigh {
        transform: scale(1);
    }
    .LxFormContnrSty {
        padding: 30px 20px;
    }
}