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

html {
    scroll-behavior: smooth;
}

body.moranelixZenYogaRibbon_BodyBase {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #03070A;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

.moranelixZenYogaRibbon_Container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* --- HEADER --- */
.moranelixZenYogaRibbon_HeaderMain {
    background-color: rgba(3, 7, 10, 0.95);
    border-bottom: 1px solid #42FFD5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.moranelixZenYogaRibbon_LogoText {
    font-size: 28px;
    font-weight: 800;
    color: #42FFD5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.moranelixZenYogaRibbon_NavLink {
    font-weight: 500;
    font-size: 16px;
    color: #E0E0E0;
}

.moranelixZenYogaRibbon_NavLink:hover {
    color: #42FFD5;
    text-shadow: 0 0 8px rgba(66, 255, 213, 0.5);
}

/* --- BURGER MENU --- */
.moranelixZenYogaRibbon_NavToggle {
    display: none;
}

.moranelixZenYogaRibbon_Burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.moranelixZenYogaRibbon_Burger span {
    width: 30px;
    height: 3px;
    background-color: #42FFD5;
    border-radius: 2px;
}

/* --- HERO SECTION --- */
.moranelixZenYogaRibbon_HeroSection {
    padding: 100px 0;
    overflow: hidden;
}

.moranelixZenYogaRibbon_HeroFlex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse; /* Photo left, Text right */
}

.moranelixZenYogaRibbon_HeroImageWrapper {
    flex: 1;
}

.moranelixZenYogaRibbon_HeroImg {
    border-radius: 20px;
    border: 1px solid rgba(66, 255, 213, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.moranelixZenYogaRibbon_HeroContent {
    flex: 1;
}

.moranelixZenYogaRibbon_H1 {
    font-size: 48px;
    color: #42FFD5;
    margin-bottom: 20px;
    line-height: 1.1;
}

.moranelixZenYogaRibbon_SubH1 {
    font-size: 20px;
    color: #B0B0B0;
    margin-bottom: 40px;
}

.moranelixZenYogaRibbon_HeroTextBlocks {
    margin-bottom: 40px;
}

.moranelixZenYogaRibbon_HeroTextItem {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 2px solid #42FFD5;
}

.moranelixZenYogaRibbon_HeroSmallTitle {
    font-size: 18px;
    color: #42FFD5;
    margin-bottom: 8px;
}

/* --- BUTTONS --- */
.moranelixZenYogaRibbon_BtnPrimary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #42FFD5;
    color: #03070A;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    text-align: center;
    border: 2px solid #42FFD5;
}

.moranelixZenYogaRibbon_BtnPrimary:hover {
    background-color: transparent;
    color: #42FFD5;
    box-shadow: 0 0 20px rgba(66, 255, 213, 0.4);
}

.moranelixZenYogaRibbon_BtnSecondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #42FFD5;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #42FFD5;
    transition: 0.3s;
    text-align: center;
}

.moranelixZenYogaRibbon_BtnSecondary:hover {
    background-color: rgba(66, 255, 213, 0.1);
    box-shadow: 0 0 15px rgba(66, 255, 213, 0.2);
}

/* --- REVIEWS SLIDER --- */
.moranelixZenYogaRibbon_ReviewsSection {
    padding: 80px 0;
    background-color: rgba(66, 255, 213, 0.02);
}

.moranelixZenYogaRibbon_H2 {
    font-size: 36px;
    color: #42FFD5;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.moranelixZenYogaRibbon_SliderInput {
    display: none;
}

.moranelixZenYogaRibbon_Slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.moranelixZenYogaRibbon_Slide {
    min-width: 100%;
}

.moranelixZenYogaRibbon_ReviewCard {
    background: #0A0F14;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(66, 255, 213, 0.2);
    margin: 10px;
}

.moranelixZenYogaRibbon_ReviewText {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 25px;
}

.moranelixZenYogaRibbon_ReviewAuthor {
    color: #42FFD5;
    font-weight: 700;
}

.moranelixZenYogaRibbon_SliderControls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.moranelixZenYogaRibbon_Dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(66, 255, 213, 0.3);
    cursor: pointer;
}

#rev1:checked ~ .moranelixZenYogaRibbon_Slides { transform: translateX(0%); }
#rev2:checked ~ .moranelixZenYogaRibbon_Slides { transform: translateX(-100%); }
#rev3:checked ~ .moranelixZenYogaRibbon_Slides { transform: translateX(-200%); }

#rev1:checked ~ .moranelixZenYogaRibbon_SliderControls label:nth-child(1),
#rev2:checked ~ .moranelixZenYogaRibbon_SliderControls label:nth-child(2),
#rev3:checked ~ .moranelixZenYogaRibbon_SliderControls label:nth-child(3) {
    background-color: #42FFD5;
    box-shadow: 0 0 10px #42FFD5;
}

/* --- FOR WHOM (TARGET) --- */
.moranelixZenYogaRibbon_TargetSection {
    padding: 100px 0;
}

.moranelixZenYogaRibbon_SectionIntroText {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: -30px auto 60px;
}

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

.moranelixZenYogaRibbon_TargetItem {
    flex: 1 1 calc(25% - 30px);
    background: #0A0F14;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s;
}

.moranelixZenYogaRibbon_TargetItem:hover {
    transform: translateY(-10px);
}

.moranelixZenYogaRibbon_LineDecor {
    width: 40px;
    height: 4px;
    background-color: #42FFD5;
    margin-bottom: 20px;
}

/* --- EXPERT SECTION --- */
.moranelixZenYogaRibbon_ExpertSection {
    padding: 80px 0;
}

.moranelixZenYogaRibbon_ExpertBox {
    background: linear-gradient(135deg, #0A0F14 0%, #03070A 100%);
    border: 1px solid #42FFD5;
    padding: 60px;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.moranelixZenYogaRibbon_Quote {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-style: italic;
}

.moranelixZenYogaRibbon_ExpertInfo {
    display: flex;
    flex-direction: column;
}

.moranelixZenYogaRibbon_ExpertLine {
    width: 100px;
    height: 1px;
    background-color: #42FFD5;
    margin-bottom: 15px;
}

.moranelixZenYogaRibbon_ExpertName {
    font-size: 22px;
    font-weight: 700;
    color: #42FFD5;
}

.moranelixZenYogaRibbon_ExpertTitle {
    color: #B0B0B0;
}

/* --- BENEFITS --- */
.moranelixZenYogaRibbon_BenefitsSection {
    padding: 100px 0;
    background-color: #050A0E;
}

.moranelixZenYogaRibbon_BenefitsFlex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.moranelixZenYogaRibbon_BenefitsText {
    flex: 1;
}

.moranelixZenYogaRibbon_BenefitsImage {
    flex: 1;
}

.moranelixZenYogaRibbon_BenImg {
    border-radius: 15px;
    filter: grayscale(0.5);
}

.moranelixZenYogaRibbon_BenefitsList {
    list-style: none;
    margin-top: 30px;
}

.moranelixZenYogaRibbon_BenefitsList li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.moranelixZenYogaRibbon_BenefitsList li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #42FFD5;
    font-weight: 900;
}

/* --- PRICING --- */
.moranelixZenYogaRibbon_PricingSection {
    padding: 100px 0;
}

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

.moranelixZenYogaRibbon_PriceCard {
    flex: 1 1 calc(20% - 20px);
    background: #0A0F14;
    border: 1px solid rgba(66, 255, 213, 0.2);
    border-radius: 15px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
}

.moranelixZenYogaRibbon_PriceCard:hover {
    border-color: #42FFD5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.moranelixZenYogaRibbon_PriceFeatured {
    border-color: #42FFD5;
    transform: scale(1.05);
    background-color: rgba(66, 255, 213, 0.03);
}

.moranelixZenYogaRibbon_DiscountBadge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #42FFD5;
    color: #03070A;
    padding: 5px 15px;
    font-weight: 800;
    border-radius: 5px;
    font-size: 14px;
}

.moranelixZenYogaRibbon_PriceHeader h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.moranelixZenYogaRibbon_PriceVal {
    font-size: 32px;
    font-weight: 800;
    color: #42FFD5;
    margin-bottom: 25px;
}

.moranelixZenYogaRibbon_PriceList {
    list-style: none;
    margin-bottom: 30px;
}

.moranelixZenYogaRibbon_PriceList li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #B0B0B0;
}

/* --- LONG TEXT SECTIONS --- */
.moranelixZenYogaRibbon_ExtraSection {
    padding: 80px 0;
}

.moranelixZenYogaRibbon_AltBg {
    background-color: #0A0F14;
}

.moranelixZenYogaRibbon_LongText {
    max-width: 900px;
}

.moranelixZenYogaRibbon_LongText p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #D0D0D0;
}

.moranelixZenYogaRibbon_LongText h3 {
    font-size: 24px;
    color: #42FFD5;
    margin: 40px 0 20px;
}

.moranelixZenYogaRibbon_LongText ul {
    list-style: square;
    margin-left: 20px;
    color: #B0B0B0;
}

/* --- FAQ --- */
.moranelixZenYogaRibbon_FAQSection {
    padding: 100px 0;
}

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

.moranelixZenYogaRibbon_FAQItem {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(66, 255, 213, 0.2);
}

.moranelixZenYogaRibbon_FAQSummary {
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.moranelixZenYogaRibbon_FAQSummary::after {
    content: "+";
    color: #42FFD5;
    font-size: 24px;
}

.moranelixZenYogaRibbon_FAQItem[open] .moranelixZenYogaRibbon_FAQSummary::after {
    content: "-";
}

.moranelixZenYogaRibbon_FAQAnswer {
    padding: 0 20px 20px;
    color: #B0B0B0;
}

/* --- CONTACT FORM --- */
.moranelixZenYogaRibbon_ContactSection {
    padding: 100px 0;
    background-color: #050A0E;
}

.moranelixZenYogaRibbon_ContactSub {
    text-align: center;
    margin-bottom: 50px;
}

.moranelixZenYogaRibbon_FormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0A0F14;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(66, 255, 213, 0.1);
}

.moranelixZenYogaRibbon_FormGroup {
    margin-bottom: 20px;
}

.moranelixZenYogaRibbon_FormGroup label {
    display: block;
    margin-bottom: 8px;
    color: #42FFD5;
}

.moranelixZenYogaRibbon_FormGroup input,
.moranelixZenYogaRibbon_FormGroup textarea {
    width: 100%;
    padding: 15px;
    background: #03070A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
}

.moranelixZenYogaRibbon_FormCheck {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.moranelixZenYogaRibbon_FormCheck a {
    color: #42FFD5;
    text-decoration: underline;
}

.moranelixZenYogaRibbon_BtnSubmit {
    width: 100%;
    padding: 18px;
    background-color: #42FFD5;
    color: #03070A;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.moranelixZenYogaRibbon_BtnSubmit:hover {
    box-shadow: 0 0 20px rgba(66, 255, 213, 0.5);
    background-color: #38dec0;
}

/* --- FOOTER --- */
.moranelixZenYogaRibbon_FooterMain {
    padding: 60px 0 30px;
    background-color: #03070A;
    border-top: 1px solid rgba(66, 255, 213, 0.1);
}

.moranelixZenYogaRibbon_FooterTop {
    text-align: center;
    margin-bottom: 50px;
}

.moranelixZenYogaRibbon_FooterLogo {
    font-size: 32px;
    font-weight: 800;
    color: #42FFD5;
    margin-bottom: 15px;
}

.moranelixZenYogaRibbon_FooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.moranelixZenYogaRibbon_FooterNav a {
    font-size: 13px;
    color: #707070;
}

.moranelixZenYogaRibbon_FooterNav a:hover {
    color: #42FFD5;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .moranelixZenYogaRibbon_TargetItem {
        flex: 1 1 calc(50% - 30px);
    }
    .moranelixZenYogaRibbon_PriceCard {
        flex: 1 1 calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .moranelixZenYogaRibbon_HeroFlex, .moranelixZenYogaRibbon_BenefitsFlex {
        flex-direction: column;
    }
    
    .moranelixZenYogaRibbon_Burger {
        display: flex;
    }
    
    .moranelixZenYogaRibbon_Navigation {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: #03070A;
        transition: 0.4s;
    }
    
    .moranelixZenYogaRibbon_NavToggle:checked ~ .moranelixZenYogaRibbon_Navigation {
        left: 0;
    }
    
    .moranelixZenYogaRibbon_NavList {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    
    .moranelixZenYogaRibbon_H1 { font-size: 32px; }
    
    .moranelixZenYogaRibbon_PriceCard {
        flex: 1 1 100%;
        transform: none !important;
    }
    
    .moranelixZenYogaRibbon_TargetItem {
        flex: 1 1 100%;
    }
    
    .moranelixZenYogaRibbon_FooterBottom {
        flex-direction: column;
        text-align: center;
    }
}