/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.morxiroxSoftCardioRiseBody {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #050607;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
.morxiroxSoftCardioRiseHeader {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 6, 7, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #5AF3FF;
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.3);
}

.morxiroxSoftCardioRiseHeaderContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.morxiroxSoftCardioRiseLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #5AF3FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.6);
}

.morxiroxSoftCardioRiseNavList {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.morxiroxSoftCardioRiseNavLink {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.morxiroxSoftCardioRiseNavLink:hover {
    color: #5AF3FF;
}

.morxiroxSoftCardioRiseNavCTA {
    background: #5AF3FF;
    color: #050607;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.morxiroxSoftCardioRiseNavCTA:hover {
    background: #fff;
    color: #050607;
    box-shadow: 0 0 20px #5AF3FF;
}

.morxiroxSoftCardioRiseMenuToggleInput {
    display: none;
}

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

.morxiroxSoftCardioRiseBurgerLine {
    width: 25px;
    height: 3px;
    background-color: #5AF3FF;
    border-radius: 2px;
}

/* Hero Section */
.morxiroxSoftCardioRiseHero {
    padding: 120px 2rem 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(90, 243, 255, 0.05) 0%, rgba(5, 6, 7, 1) 70%);
}

.morxiroxSoftCardioRiseHeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.morxiroxSoftCardioRiseHeroContent {
    flex: 1;
}

.morxiroxSoftCardioRiseHeroTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(90, 243, 255, 0.4);
}

.morxiroxSoftCardioRiseHeroSubtitle {
    font-size: 1.4rem;
    color: #5AF3FF;
    margin-bottom: 2rem;
    font-weight: 300;
}

.morxiroxSoftCardioRiseHeroText {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #ccc;
}

.morxiroxSoftCardioRiseBtnPrimary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.4);
}

.morxiroxSoftCardioRiseBtnPrimary:hover {
    box-shadow: 0 0 30px #5AF3FF;
    transform: translateY(-2px);
    background-color: #fff;
}

.morxiroxSoftCardioRiseHeroVisual {
    flex: 1;
    position: relative;
}

.morxiroxSoftCardioRiseHeroMainImg {
    width: 100%;
    height: auto;
    border: 1px solid rgba(90, 243, 255, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.2);
}

.morxiroxSoftCardioRiseHeroGallery {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.morxiroxSoftCardioRiseGalleryImg {
    flex: 1;
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(90, 243, 255, 0.2);
}

/* Price Section */
.morxiroxSoftCardioRisePrice {
    padding: 100px 2rem;
    background-color: #08090b;
}

.morxiroxSoftCardioRisePriceTitle {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #fff;
}

.morxiroxSoftCardioRisePriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.morxiroxSoftCardioRisePriceCard {
    background: #0d0f12;
    border: 1px solid #1a1e24;
    padding: 2.5rem;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    border-radius: 12px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.morxiroxSoftCardioRisePriceCard:hover {
    border-color: #5AF3FF;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(90, 243, 255, 0.1);
}

.morxiroxSoftCardioRisePriceCardFeatured {
    border: 2px solid #5AF3FF;
    position: relative;
    transform: scale(1.05);
}

.morxiroxSoftCardioRiseCardHeader {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.morxiroxSoftCardioRiseCardAmount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #5AF3FF;
    margin-bottom: 1.5rem;
}

.morxiroxSoftCardioRiseCardList {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.morxiroxSoftCardioRiseCardListItem {
    padding: 0.5rem 0;
    border-bottom: 1px solid #1a1e24;
    font-size: 0.9rem;
    color: #aaa;
}

.morxiroxSoftCardioRiseCardBtn {
    display: block;
    text-align: center;
    padding: 0.8rem;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.morxiroxSoftCardioRiseCardBtn:hover {
    background: #5AF3FF;
    color: #050607;
}

.morxiroxSoftCardioRiseCardBtnFeatured {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: #5AF3FF;
    color: #050607;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.morxiroxSoftCardioRiseCardBtnFeatured:hover {
    background: #fff;
    box-shadow: 0 0 20px #5AF3FF;
}

/* Target Section */
.morxiroxSoftCardioRiseTarget {
    padding: 100px 2rem;
}

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

.morxiroxSoftCardioRiseTargetBanner {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 4rem;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.1);
}

.morxiroxSoftCardioRiseTargetTitle {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    border-left: 5px solid #5AF3FF;
    padding-left: 1.5rem;
}

.morxiroxSoftCardioRiseTargetList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    list-style: none;
}

.morxiroxSoftCardioRiseTargetItem {
    background: #0d0f12;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #1a1e24;
    transition: background 0.3s;
}

.morxiroxSoftCardioRiseTargetItem:hover {
    background: #161a1f;
}

.morxiroxSoftCardioRiseTargetItem::before {
    content: "→";
    color: #5AF3FF;
    margin-right: 10px;
    font-weight: bold;
}

/* Benefits Section */
.morxiroxSoftCardioRiseBenefits {
    padding: 100px 2rem;
    background-color: #08090b;
}

.morxiroxSoftCardioRiseBenefitsInner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.morxiroxSoftCardioRiseBenefitsImg {
    width: 100%;
    border-radius: 50%;
    border: 2px solid #5AF3FF;
    padding: 10px;
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.2);
}

.morxiroxSoftCardioRiseBenefitsTitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.morxiroxSoftCardioRiseBenefitsList {
    list-style: none;
}

.morxiroxSoftCardioRiseBenefitsListItem {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.morxiroxSoftCardioRiseBenefitsListItem::after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
    border-radius: 50%;
}

/* Expert Section */
.morxiroxSoftCardioRiseExpert {
    padding: 100px 2rem;
    text-align: center;
}

.morxiroxSoftCardioRiseExpertTitle {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

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

.morxiroxSoftCardioRiseSlides {
    display: flex;
    transition: transform 0.5s ease;
}

.morxiroxSoftCardioRiseSlideItem {
    min-width: 100%;
    padding: 2rem;
}

.morxiroxSoftCardioRiseQuote {
    font-size: 1.5rem;
    font-style: italic;
    color: #ccc;
    margin-bottom: 2rem;
}

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

.morxiroxSoftCardioRiseExpertName {
    color: #5AF3FF;
    font-weight: bold;
    font-size: 1.2rem;
}

.morxiroxSoftCardioRiseSliderRadio {
    display: none;
}

#slide1:checked ~ .morxiroxSoftCardioRiseSlides { transform: translateX(0); }
#slide2:checked ~ .morxiroxSoftCardioRiseSlides { transform: translateX(-100%); }
#slide3:checked ~ .morxiroxSoftCardioRiseSlides { transform: translateX(-200%); }

.morxiroxSoftCardioRiseSliderControls {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.morxiroxSoftCardioRiseSliderLabel {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
}

#slide1:checked ~ .morxiroxSoftCardioRiseSliderControls label:nth-child(1),
#slide2:checked ~ .morxiroxSoftCardioRiseSliderControls label:nth-child(2),
#slide3:checked ~ .morxiroxSoftCardioRiseSliderControls label:nth-child(3) {
    background: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

/* FAQ */
.morxiroxSoftCardioRiseFAQ {
    padding: 100px 2rem;
    background: #050607;
}

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

.morxiroxSoftCardioRiseFAQTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.morxiroxSoftCardioRiseFAQItem {
    margin-bottom: 1rem;
    border-bottom: 1px solid #1a1e24;
}

.morxiroxSoftCardioRiseFAQSummary {
    padding: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: #5AF3FF;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

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

.morxiroxSoftCardioRiseFAQContent {
    padding: 0 1.5rem 1.5rem;
    color: #aaa;
}

/* Text Sections */
.morxiroxSoftCardioRiseTextSection {
    padding: 80px 2rem;
}

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

.morxiroxSoftCardioRiseBgAlt {
    background: #08090b;
}

.morxiroxSoftCardioRiseTextTitle {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #5AF3FF;
}

.morxiroxSoftCardioRiseTextParagraph {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #ccc;
}

.morxiroxSoftCardioRiseTextSublist {
    margin: 0 0 2rem 2rem;
}

.morxiroxSoftCardioRiseTextSublist li {
    margin-bottom: 0.5rem;
    color: #5AF3FF;
}

/* Form Section */
.morxiroxSoftCardioRiseFormSection {
    padding: 100px 2rem;
    background: linear-gradient(to bottom, #050607, #0d0f12);
}

.morxiroxSoftCardioRiseFormContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.morxiroxSoftCardioRiseFormContent {
    flex: 1;
}

.morxiroxSoftCardioRiseFormTitle {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.morxiroxSoftCardioRiseFormSubtitle {
    margin-bottom: 3rem;
    color: #aaa;
}

.morxiroxSoftCardioRiseForm {
    background: #08090b;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(90, 243, 255, 0.2);
}

.morxiroxSoftCardioRiseFormGroup {
    margin-bottom: 1.5rem;
}

.morxiroxSoftCardioRiseFormLabel {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.morxiroxSoftCardioRiseFormInput,
.morxiroxSoftCardioRiseFormTextarea {
    width: 100%;
    padding: 1rem;
    background: #050607;
    border: 1px solid #1a1e24;
    color: #fff;
    border-radius: 4px;
}

.morxiroxSoftCardioRiseFormInput:focus,
.morxiroxSoftCardioRiseFormTextarea:focus {
    outline: none;
    border-color: #5AF3FF;
}

.morxiroxSoftCardioRiseFormTextarea {
    height: 120px;
    resize: none;
}

.morxiroxSoftCardioRiseFormCheckbox {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.morxiroxSoftCardioRiseFormCheckLabel {
    font-size: 0.85rem;
    color: #aaa;
}

.morxiroxSoftCardioRiseFormCheckLabel a {
    color: #5AF3FF;
}

.morxiroxSoftCardioRiseFormBtn {
    width: 100%;
    padding: 1.2rem;
    background: #5AF3FF;
    border: none;
    color: #050607;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.morxiroxSoftCardioRiseFormBtn:hover {
    box-shadow: 0 0 20px #5AF3FF;
    background: #fff;
}

.morxiroxSoftCardioRiseFormImg {
    width: 100%;
    border-radius: 20px;
}

/* Footer */
.morxiroxSoftCardioRiseFooter {
    padding: 60px 2rem;
    border-top: 1px solid #1a1e24;
}

.morxiroxSoftCardioRiseFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.morxiroxSoftCardioRiseFooterMain {
    text-align: center;
}

.morxiroxSoftCardioRiseFooterBrand {
    font-size: 1.5rem;
    color: #5AF3FF;
    margin-bottom: 1rem;
}

.morxiroxSoftCardioRiseFooterLinks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.morxiroxSoftCardioRiseFooterLink {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.morxiroxSoftCardioRiseFooterLink:hover {
    color: #5AF3FF;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .morxiroxSoftCardioRiseHeroContainer,
    .morxiroxSoftCardioRiseBenefitsInner,
    .morxiroxSoftCardioRiseFormContainer {
        flex-direction: column;
        text-align: center;
    }
    .morxiroxSoftCardioRiseHeroTitle {
        font-size: 2.8rem;
    }
    .morxiroxSoftCardioRiseBenefitsImgBox {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .morxiroxSoftCardioRiseBurger {
        display: flex;
    }
    .morxiroxSoftCardioRiseNav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050607;
        padding: 2rem;
        border-bottom: 2px solid #5AF3FF;
    }
    .morxiroxSoftCardioRiseNavList {
        flex-direction: column;
        gap: 1rem;
    }
    #morxiroxSoftCardioRiseMenuToggle:checked ~ .morxiroxSoftCardioRiseNav {
        display: block;
    }
    .morxiroxSoftCardioRisePriceCardFeatured {
        transform: scale(1);
    }
}