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

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

.lqrStr_Container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.lqrStr_HeaderWrap {
    background-color: #050010;
    border-bottom: 2px solid #B98CFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.3);
}

.lqrStr_HeaderFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.lqrStr_LogoText {
    font-size: 28px;
    font-weight: 800;
    color: #B98CFF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lqrStr_NavList {
    display: flex;
    list-style: none;
    gap: 30px;
}

.lqrStr_NavLink {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* BURGER MENU (No JS) */
.lqrStr_MenuCheck {
    display: none;
}

.lqrStr_MenuBtn {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.lqrStr_MenuBtn span, .lqrStr_MenuBtn span::before, .lqrStr_MenuBtn span::after {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #B98CFF;
    transition: 0.3s;
}

.lqrStr_MenuBtn span::before { content: ""; top: -8px; }
.lqrStr_MenuBtn span::after { content: ""; bottom: -8px; }

/* HERO SECTION */
.lqrStr_HeroSection {
    padding: 80px 0;
}

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

.lqrStr_HeroImageCol, .lqrStr_HeroTextCol {
    flex: 1;
}

.lqrStr_MainHeroImg {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #B98CFF;
    box-shadow: 0 0 20px rgba(185, 140, 255, 0.2);
}

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

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

.lqrStr_MainTitle {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #B98CFF;
}

.lqrStr_SubTitle {
    font-size: 22px;
    margin-bottom: 20px;
    font-style: italic;
    color: #D1BFFF;
}

.lqrStr_HeroDescr {
    margin-bottom: 15px;
    font-size: 17px;
    color: #E0E0E0;
}

.lqrStr_CtaButton {
    display: inline-block;
    padding: 15px 40px;
    background-color: #B98CFF;
    color: #0B0020;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lqrStr_CtaButton:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 20px #B98CFF;
    transform: translateY(-2px);
}

/* REVIEWS */
.lqrStr_ReviewsSection {
    padding: 80px 0;
    background-color: #0F002A;
}

.lqrStr_SecTitleCenter {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #B98CFF;
}

.lqrStr_ReviewsGrid {
    display: flex;
    gap: 30px;
}

.lqrStr_ReviewCard {
    flex: 1;
    background: #1A0040;
    padding: 30px;
    border-left: 4px solid #B98CFF;
    border-radius: 5px;
}

.lqrStr_ReviewText {
    font-style: italic;
    margin-bottom: 20px;
}

.lqrStr_ReviewAuthor {
    font-weight: bold;
    color: #B98CFF;
}

/* PRICING */
.lqrStr_PricingSection {
    padding: 80px 0;
}

.lqrStr_PriceFlex {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.lqrStr_PriceCard {
    flex: 1;
    background: #140035;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #2D0060;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s;
}

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

.lqrStr_PriceCardFeatured {
    border: 2px solid #B98CFF;
    background: #1C0048;
}

.lqrStr_PriceName {
    font-size: 24px;
    margin-bottom: 20px;
    color: #B98CFF;
}

.lqrStr_PriceVal {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.lqrStr_PriceVal span {
    font-size: 20px;
}

.lqrStr_PriceList {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.lqrStr_PriceList li {
    padding: 8px 0;
    border-bottom: 1px solid #2D0060;
}

.lqrStr_PriceList li::before {
    content: "✓ ";
    color: #B98CFF;
}

.lqrStr_QuickLinks {
    margin-bottom: 20px;
}

.lqrStr_SmallLink {
    color: #D1BFFF;
    font-size: 14px;
}

.lqrStr_PriceBtn {
    padding: 12px;
    background: transparent;
    border: 2px solid #B98CFF;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.lqrStr_PriceBtn:hover {
    background: #B98CFF;
    color: #0B0020;
}

/* TARGET SECTION */
.lqrStr_TargetSection {
    padding: 80px 0;
}

.lqrStr_TargetBanner {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 10px;
}

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

.lqrStr_TargetList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.lqrStr_TargetItem {
    width: calc(50% - 10px);
    background: #140035;
    padding: 20px;
    border-radius: 5px;
}

/* BENEFITS */
.lqrStr_BenefitsSection {
    padding: 80px 0;
    background-color: #0F002A;
}

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

.lqrStr_BenefitsText, .lqrStr_BenefitsImg {
    flex: 1;
}

.lqrStr_BenefitsUl {
    list-style: none;
}

.lqrStr_BenefitsUl li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.lqrStr_BenefitsUl li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 2px;
    background: #B98CFF;
}

.lqrStr_RoundImg {
    width: 100%;
    border-radius: 50%;
    border: 2px solid #B98CFF;
    padding: 10px;
}

/* EXPERT */
.lqrStr_ExpertSection {
    padding: 80px 0;
}

.lqrStr_ExpertBox {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lqrStr_ExpertQuote {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #E0E0E0;
    font-style: italic;
}

.lqrStr_ExpertName {
    font-size: 20px;
    font-weight: bold;
    color: #B98CFF;
}

.lqrStr_ExpertPost {
    color: #D1BFFF;
}

/* FAQ */
.lqrStr_FaqSection {
    padding: 80px 0;
}

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

.lqrStr_FaqItem {
    background: #140035;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.lqrStr_FaqSum {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #B98CFF;
    list-style: none;
}

.lqrStr_FaqContent {
    padding: 0 20px 20px;
    color: #E0E0E0;
}

/* LONG TEXT SECTION */
.lqrStr_LongTextSection {
    padding: 80px 0;
}

.lqrStr_LongTextSection p {
    margin-bottom: 20px;
    font-size: 18px;
}

.lqrStr_TextDivider {
    height: 2px;
    background: linear-gradient(to right, #B98CFF, transparent);
    margin: 60px 0;
}

/* FORM */
.lqrStr_FormSection {
    padding: 100px 0;
    background: #050010;
}

.lqrStr_FormWrap {
    max-width: 600px;
    margin: 0 auto;
    background: #0B0020;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #B98CFF;
}

.lqrStr_FormSub {
    text-align: center;
    margin-bottom: 30px;
}

.lqrStr_FormGroup {
    margin-bottom: 20px;
}

.lqrStr_FormGroup label {
    display: block;
    margin-bottom: 8px;
    color: #B98CFF;
}

.lqrStr_FormGroup input, .lqrStr_FormGroup textarea {
    width: 100%;
    padding: 12px;
    background: #1A0040;
    border: 1px solid #2D0060;
    color: #FFF;
    border-radius: 5px;
}

.lqrStr_CheckGroup {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.lqrStr_SubmitBtn {
    width: 100%;
    padding: 15px;
    background: #B98CFF;
    border: none;
    color: #0B0020;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.lqrStr_SubmitBtn:hover {
    background: #FFF;
    box-shadow: 0 0 20px #B98CFF;
}

/* FOOTER */
.lqrStr_FooterWrap {
    padding: 60px 0;
    border-top: 1px solid #2D0060;
    background: #050010;
    text-align: center;
}

.lqrStr_FooterLinks {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lqrStr_FooterLinks a {
    color: #D1BFFF;
    text-decoration: none;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .lqrStr_HeroFlex, .lqrStr_BenefitsFlex, .lqrStr_ReviewsGrid, .lqrStr_PriceFlex {
        flex-direction: column;
    }
    .lqrStr_TargetItem {
        width: 100%;
    }
    .lqrStr_NavMenu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0B0020;
        padding: 40px 0;
    }
    .lqrStr_NavList {
        flex-direction: column;
        align-items: center;
    }
    .lqrStr_MenuBtn {
        display: block;
    }
    .lqrStr_MenuCheck:checked ~ .lqrStr_NavMenu {
        display: block;
    }
}