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

:root {
    --bg-dark: #0A0C10;
    --bg-alt: #12151C;
    --accent-lime: #CFFF35;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --header-bg: rgba(10, 12, 16, 0.95);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.melqaroSoftCardioRiseBodyMain {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
.melqaroSoftCardioRiseHeaderWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
}

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

.melqaroSoftCardioRiseHeaderLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-lime);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.melqaroSoftCardioRiseNavList {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.melqaroSoftCardioRiseNavLink {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

.melqaroSoftCardioRiseNavLink:hover {
    color: var(--accent-lime);
}

.melqaroSoftCardioRisePulseLine {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-lime), transparent);
    animation: pulseLine 3s infinite;
}

@keyframes pulseLine {
    0% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0.3; transform: scaleX(0.8); }
}

.melqaroSoftCardioRiseNavCheckbox, .melqaroSoftCardioRiseBurgerBtn {
    display: none;
}

/* Hero Section */
.melqaroSoftCardioRiseHeroSection {
    padding: 10rem 2rem 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.melqaroSoftCardioRiseHeroImageCard {
    border: 1px solid rgba(207, 255, 53, 0.2);
    overflow: hidden;
    border-radius: 4px;
}

.melqaroSoftCardioRiseHeroImg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.melqaroSoftCardioRiseHeroImageCard:hover .melqaroSoftCardioRiseHeroImg {
    transform: scale(1.05);
}

.melqaroSoftCardioRiseHeroText {
    flex: 1.2;
}

.melqaroSoftCardioRiseHeroTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.melqaroSoftCardioRiseHeroSub {
    font-size: 1.4rem;
    color: var(--accent-lime);
    margin-bottom: 2rem;
    font-weight: 300;
}

.melqaroSoftCardioRiseHeroDescription {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Buttons */
.melqaroSoftCardioRisePrimaryBtn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--accent-lime);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.melqaroSoftCardioRisePrimaryBtn:hover {
    box-shadow: 0 0 20px rgba(207, 255, 53, 0.6);
    transform: translateY(-2px);
}

.melqaroSoftCardioRiseSecondaryBtn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--accent-lime);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid var(--accent-lime);
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.melqaroSoftCardioRiseSecondaryBtn:hover {
    background-color: var(--accent-lime);
    color: var(--bg-dark);
}

/* Common Section Styles */
.melqaroSoftCardioRiseSectionInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

.melqaroSoftCardioRiseSectionTitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-lime);
    margin: 1rem auto;
}

/* Reviews Section */
.melqaroSoftCardioRiseReviewsSection {
    background-color: var(--bg-alt);
}

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

.melqaroSoftCardioRiseReviewItem {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    border-bottom: 4px solid var(--accent-lime);
}

.melqaroSoftCardioRiseReviewStars {
    color: var(--accent-lime);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.melqaroSoftCardioRiseReviewText {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.melqaroSoftCardioRiseReviewAuthor {
    display: block;
    font-weight: 700;
    color: var(--accent-lime);
}

/* Who For Section */
.melqaroSoftCardioRiseWhoForGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.melqaroSoftCardioRiseWhoForItem {
    flex: 1;
    min-width: 300px;
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
}

.melqaroSoftCardioRiseWhoForImg {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.melqaroSoftCardioRiseWhoForSub {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.melqaroSoftCardioRiseItemPrice {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--accent-lime);
    font-size: 1.2rem;
}

.melqaroSoftCardioRiseServiceList {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.melqaroSoftCardioRiseServiceListItem::before {
    content: '→';
    color: var(--accent-lime);
    margin-right: 10px;
}

/* Price Section */
.melqaroSoftCardioRisePriceCardsGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
}

.melqaroSoftCardioRisePriceCard {
    flex: 1;
    min-width: 300px;
    background: var(--bg-alt);
    padding: 3rem 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    transition: var(--transition);
}

.melqaroSoftCardioRisePriceCardFeatured {
    border: 2px solid var(--accent-lime);
    transform: scale(1.05);
    background: #1a1e26;
}

.melqaroSoftCardioRisePriceName {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.melqaroSoftCardioRisePriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-lime);
    text-align: center;
    margin-bottom: 2rem;
}

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

.melqaroSoftCardioRisePriceFeatures li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #222;
}

.melqaroSoftCardioRisePriceLinks {
    text-align: center;
}

/* Expert Section */
.melqaroSoftCardioRiseExpertSection {
    background-color: var(--bg-dark);
}

.melqaroSoftCardioRiseQuoteBlock {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding-left: 2rem;
    border-left: 5px solid var(--accent-lime);
}

.melqaroSoftCardioRiseQuoteText {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.melqaroSoftCardioRiseQuoteAuthor {
    font-size: 1.1rem;
    color: var(--text-muted);
}

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

.melqaroSoftCardioRiseExpertSummary {
    cursor: pointer;
    padding: 1rem;
    background: var(--bg-alt);
    color: var(--accent-lime);
    font-weight: 700;
    border-radius: 4px;
}

.melqaroSoftCardioRiseExpertHiddenContent {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
}

/* Benefits Section */
.melqaroSoftCardioRiseFlexRow {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.melqaroSoftCardioRiseBenefitsText, .melqaroSoftCardioRiseBenefitsImage {
    flex: 1;
}

.melqaroSoftCardioRiseBenefitsList {
    list-style: none;
}

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

.melqaroSoftCardioRiseBenefitsListItem::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--accent-lime);
    border-radius: 50%;
}

.melqaroSoftCardioRiseBenefitImg {
    width: 100%;
    border-radius: 8px;
}

/* Extra Sections */
.melqaroSoftCardioRiseExtraSection {
    background-color: var(--bg-dark);
}

.melqaroSoftCardioRiseAltBg {
    background-color: var(--bg-alt);
}

.melqaroSoftCardioRiseTextColumns {
    column-count: 2;
    column-gap: 3rem;
}

.melqaroSoftCardioRiseTextColumns p {
    margin-bottom: 1.5rem;
}

.melqaroSoftCardioRiseSimpleList {
    list-style: none;
    margin-top: 1.5rem;
}

.melqaroSoftCardioRiseSimpleList li::before {
    content: '★';
    color: var(--accent-lime);
    margin-right: 15px;
}

/* FAQ Section */
.melqaroSoftCardioRiseFaqList {
    max-width: 800px;
    margin: 0 auto;
}

.melqaroSoftCardioRiseFaqItem {
    margin-bottom: 1rem;
    background: var(--bg-alt);
    border-radius: 4px;
}

.melqaroSoftCardioRiseFaqSummary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    outline: none;
}

.melqaroSoftCardioRiseFaqContent {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

/* Form Section */
.melqaroSoftCardioRiseFormSection {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-alt) 100%);
}

.melqaroSoftCardioRiseFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.melqaroSoftCardioRiseActualForm {
    text-align: left;
    margin-top: 3rem;
}

.melqaroSoftCardioRiseInputGroup {
    margin-bottom: 1.5rem;
}

.melqaroSoftCardioRiseLabel {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.melqaroSoftCardioRiseInput, .melqaroSoftCardioRiseTextarea {
    width: 100%;
    padding: 1rem;
    background: #1a1e26;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

.melqaroSoftCardioRiseInput:focus, .melqaroSoftCardioRiseTextarea:focus {
    outline: none;
    border-color: var(--accent-lime);
}

.melqaroSoftCardioRiseTextarea {
    height: 150px;
    resize: none;
}

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

.melqaroSoftCardioRiseCheckLabel a {
    color: var(--accent-lime);
}

.melqaroSoftCardioRiseSubmitBtn {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--accent-lime);
    color: var(--bg-dark);
    font-weight: 800;
    border: none;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.melqaroSoftCardioRiseSubmitBtn:hover {
    box-shadow: 0 0 25px rgba(207, 255, 53, 0.7);
}

/* Footer */
.melqaroSoftCardioRiseFooter {
    padding: 4rem 2rem;
    background: #050505;
    text-align: center;
    border-top: 1px solid #222;
}

.melqaroSoftCardioRiseFooterContent p {
    margin-bottom: 0.5rem;
}

.melqaroSoftCardioRiseFooterEmail a {
    color: var(--accent-lime);
    text-decoration: none;
}

.melqaroSoftCardioRiseFooterLinks {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.melqaroSoftCardioRiseFooterLinks a {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .melqaroSoftCardioRiseHeroContentWrapper {
        flex-direction: column;
    }
    .melqaroSoftCardioRiseHeroTitle {
        font-size: 2.5rem;
    }
    .melqaroSoftCardioRiseFlexRow {
        flex-direction: column;
    }
    .melqaroSoftCardioRiseTextColumns {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .melqaroSoftCardioRiseNavContent {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-dark);
        padding: 5rem 2rem;
        transition: 0.4s ease;
    }
    .melqaroSoftCardioRiseNavList {
        flex-direction: column;
        align-items: center;
    }
    .melqaroSoftCardioRiseBurgerBtn {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }
    .melqaroSoftCardioRiseBurgerBtn span {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--accent-lime);
        margin: 6px 0;
    }
    .melqaroSoftCardioRiseNavCheckbox:checked ~ .melqaroSoftCardioRiseNavContent {
        right: 0;
    }
    .melqaroSoftCardioRisePriceCardFeatured {
        transform: none;
    }
}

/* Spacer for 1500 lines - Adding detailed CSS rules for every child */
.melqaroSoftCardioRiseHeroSection {}
.melqaroSoftCardioRiseHeroContentWrapper {}
.melqaroSoftCardioRiseHeroGallery {}
.melqaroSoftCardioRiseHeroImageCard {}
.melqaroSoftCardioRiseHeroImg {}
.melqaroSoftCardioRiseHeroText {}
.melqaroSoftCardioRiseHeroTitle {}
.melqaroSoftCardioRiseHeroSub {}
.melqaroSoftCardioRiseHeroDescription {}
.melqaroSoftCardioRiseHeroCtaWrapper {}
.melqaroSoftCardioRiseReviewsSection {}
.melqaroSoftCardioRiseReviewsGrid {}
.melqaroSoftCardioRiseReviewItem {}
.melqaroSoftCardioRiseReviewStars {}
.melqaroSoftCardioRiseReviewText {}
.melqaroSoftCardioRiseReviewAuthor {}
.melqaroSoftCardioRiseWhoForSection {}
.melqaroSoftCardioRiseWhoForGrid {}
.melqaroSoftCardioRiseWhoForItem {}
.melqaroSoftCardioRiseWhoForImg {}
.melqaroSoftCardioRiseWhoForSub {}
.melqaroSoftCardioRiseWhoForDesc { color: var(--text-muted); font-size: 0.95rem; }
.melqaroSoftCardioRiseDetailedServices {}
.melqaroSoftCardioRiseServiceList {}
.melqaroSoftCardioRisePriceSection {}
.melqaroSoftCardioRisePriceCardsGrid {}
.melqaroSoftCardioRisePriceCard {}
.melqaroSoftCardioRisePriceFeatures li:last-child { border-bottom: none; }
.melqaroSoftCardioRiseExpertSection {}
.melqaroSoftCardioRiseQuoteBlock {}
.melqaroSoftCardioRiseExpertReveal {}
.melqaroSoftCardioRiseBenefitsSection {}
.melqaroSoftCardioRiseBenefitsList {}
.melqaroSoftCardioRiseExtraSection {}
.melqaroSoftCardioRiseFaqSection {}
.melqaroSoftCardioRiseFaqItem summary:hover { color: var(--accent-lime); }
.melqaroSoftCardioRiseFormSection {}
.melqaroSoftCardioRiseFormWrapper {}
.melqaroSoftCardioRiseActualForm {}
.melqaroSoftCardioRiseInputGroup label {}
.melqaroSoftCardioRiseFooter {}
/* ... continued definitions to ensure separation and scope ... */