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

html {
    scroll-behavior: smooth;
}

body.BodyClassMainZenvia {
    background-color: #120014;
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    color: #FF4FD8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.SectionTitleH2Center {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 60px;
    margin-bottom: 40px;
}

.SectionIntroParaCenter {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* HEADER */
.HeaderWrapperXy {
    background: rgba(18, 0, 20, 0.95);
    border-bottom: 2px solid #FF4FD8;
    box-shadow: 0 0 15px rgba(255, 79, 216, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.LogoTextBexnoralit {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF4FD8;
    text-shadow: 2px 2px 10px rgba(255, 79, 216, 0.6);
}

.NavigationMenuBlock {
    display: flex;
}

.NavListItemsList {
    list-style: none;
    display: flex;
    gap: 20px;
}

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

.NavLinkAnchorItem:hover {
    color: #FF4FD8;
}

.BurgerCheckboxInput, .BurgerMenuButton {
    display: none;
}

/* HERO SECTION */
.HeroSectionLavaBlock {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.HeroContainerFlexBox {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

.HeroImagesGridThree {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.HeroImageItemSingle {
    width: 100%;
    height: auto;
    border: 2px solid #FF4FD8;
    border-radius: 8px;
    object-fit: cover;
}

.HeroImageItemSingle:nth-child(3) {
    grid-column: span 2;
    height: 300px;
}

.HeroTextContentSide {
    flex: 1;
}

.HeroMainTitleH1 {
    font-size: 3rem;
    line-height: 1.1;
}

.HeroDescriptionPara {
    margin-bottom: 20px;
    color: #d1d1d1;
}

.HeroCtaButtonMain {
    display: inline-block;
    padding: 15px 35px;
    background-color: #FF4FD8;
    color: #120014;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 79, 216, 0.5);
    transition: all 0.3s ease;
}

.HeroCtaButtonMain:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 79, 216, 0.8);
    background-color: #ff80e3;
}

/* REVIEWS SLIDER */
.ReviewsSectionBlockLava {
    padding: 80px 20px;
    background: rgba(40, 0, 45, 0.3);
}

.CssSliderWrapperOnly {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.SliderRadioInput {
    display: none;
}

.SliderSlidesContainer {
    display: flex;
    transition: transform 0.6s ease;
    height: 100%;
}

.SliderSingleSlideItem {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.ReviewCardInnerBox {
    background: #1e0022;
    border: 1px solid #FF4FD8;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(255, 79, 216, 0.1);
}

.ReviewTextPara {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
}

.ReviewAuthorName {
    color: #FF4FD8;
    font-weight: bold;
}

#SlideOne:checked ~ .SliderSlidesContainer { transform: translateX(0); }
#SlideTwo:checked ~ .SliderSlidesContainer { transform: translateX(-100%); }
#SlideThree:checked ~ .SliderSlidesContainer { transform: translateX(-200%); }

.SliderControlsLabels {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.SliderControlDot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
}

#SlideOne:checked ~ .SliderControlsLabels label[for="SlideOne"],
#SlideTwo:checked ~ .SliderControlsLabels label[for="SlideTwo"],
#SlideThree:checked ~ .SliderControlsLabels label[for="SlideThree"] {
    background: #FF4FD8;
}

/* TARGET AUDIENCE */
.TargetAudienceSection {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.AudienceGridContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.AudienceCardItem {
    background: #1a001d;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.LavaBorderEffect {
    border-left: 4px solid #FF4FD8;
}

.AudienceCardItem:hover {
    transform: translateY(-10px);
    background: #2a0030;
}

.DecorativeLavaLines {
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF4FD8, transparent);
    margin-top: 50px;
}

/* PRICING */
.PricingSectionMain {
    padding: 80px 20px;
    background: #0d000f;
}

.PricingCardsFlexContainer {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.PriceCardSingle {
    background: #1e0022;
    border: 1px solid #444;
    padding: 40px 30px;
    border-radius: 20px;
    width: 350px;
    text-align: center;
    transition: all 0.3s ease;
}

.RecommendedCard {
    border-color: #FF4FD8;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 79, 216, 0.2);
}

.PriceValueBox {
    margin: 20px 0;
}

.OldPriceValue {
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
    display: block;
}

.CurrentPriceValue {
    color: #FF4FD8;
    font-size: 2.5rem;
    font-weight: bold;
}

.PriceFeaturesList {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.PriceFeatureItem {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.PriceFeatureItem::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF4FD8;
}

.PriceActionButton {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid #FF4FD8;
    color: #FF4FD8;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.PriceActionButton:hover {
    background: #FF4FD8;
    color: #120014;
}

.QuickLinksPrice {
    margin-top: 15px;
}

.QuickLinkItem {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: underline;
}

/* BENEFITS */
.BenefitsSectionLava {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.BenefitsImageSide {
    flex: 1;
}

.BenefitsMainImage {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 #FF4FD8;
}

.BenefitsTextSide {
    flex: 1;
}

.BenefitListItemElem {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* PRACTITIONER */
.PractitionerQuoteSection {
    background: linear-gradient(135deg, #120014 0%, #300035 100%);
    padding: 100px 20px;
}

.PractitionerContainerLava {
    max-width: 900px;
    margin: 0 auto;
    border-left: 8px solid #FF4FD8;
    padding-left: 40px;
}

.QuoteTextContent {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 30px;
}

.QuoteAuthorSignature {
    font-size: 1.2rem;
    color: #FF4FD8;
    display: block;
}

/* FAQ */
.FaqSectionWrapper {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.FaqDetailItem {
    background: #1e0022;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.FaqSummaryTitle {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    border: 1px solid #333;
}

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

.FaqDetailItem[open] .FaqSummaryTitle {
    background: #FF4FD8;
    color: #120014;
}

.FaqContentBody {
    padding: 20px;
    border: 1px solid #333;
    border-top: none;
}

/* EXTRA TEXT BLOCKS */
.ExtraContentSectionBlock {
    padding: 60px 20px;
}

.AltBgLava {
    background-color: #0a000c;
}

.ExtraContainerInner {
    max-width: 1000px;
    margin: 0 auto;
}

.ExtraTitleH2 {
    margin-bottom: 30px;
}

.ExtraParaText {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.1rem;
}

.ExtraBulletList {
    margin: 20px 0 20px 20px;
}

/* CONTACT FORM */
.ContactFormSectionLava {
    padding: 80px 20px;
    background: #120014;
    border-top: 2px solid #FF4FD8;
}

.FormContainerInner {
    max-width: 600px;
    margin: 0 auto;
}

.MainLavaForm {
    background: #1e0022;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.FormRowInput {
    margin-bottom: 20px;
}

.FormLabelText {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.FormInputField, .FormTextAreaField {
    width: 100%;
    padding: 12px;
    background: #0d000f;
    border: 1px solid #444;
    color: white;
    border-radius: 5px;
}

.FormInputField:focus, .FormTextAreaField:focus {
    border-color: #FF4FD8;
    outline: none;
}

.FormCheckboxRow {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.FormSubmitButtonLava {
    width: 100%;
    padding: 15px;
    background: #FF4FD8;
    border: none;
    color: #120014;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.FormSubmitButtonLava:hover {
    box-shadow: 0 0 20px #FF4FD8;
}

/* FOOTER */
.FooterMainBlock {
    background: #050006;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

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

.FooterCopyrightText {
    font-weight: bold;
    margin-bottom: 10px;
}

.FooterEmailText, .FooterAddressText {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.FooterMailLink {
    color: #FF4FD8;
}

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

.FooterBottomLink {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
}

.FooterBottomLink:hover {
    color: #FF4FD8;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .HeroContainerFlexBox { flex-direction: column; }
    .AudienceGridContainer { grid-template-columns: repeat(2, 1fr); }
    .BenefitsFlexGrid { flex-direction: column; }
}

@media (max-width: 768px) {
    .NavigationMenuBlock {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #120014;
        padding: 20px;
        border-bottom: 2px solid #FF4FD8;
    }
    
    .NavListItemsList { flex-direction: column; text-align: center; }
    
    .BurgerMenuButton {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    
    .BurgerMenuButton span {
        width: 30px;
        height: 3px;
        background: #FF4FD8;
    }
    
    #BurgerMenuToggle:checked ~ .NavigationMenuBlock {
        display: block;
    }
    
    .AudienceGridContainer { grid-template-columns: 1fr; }
    
    .HeroMainTitleH1 { font-size: 2rem; }
}