/* Reset & Basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* Header & Nav */
.ZenFitWaveHeader_9830_Container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 10, 24, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(106, 169, 255, 0.15);
    border-bottom: 1px solid rgba(106, 169, 255, 0.2);
}

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

.ZenFitWaveHeader_9830_NavList {
    display: flex;
    list-style: none;
    gap: 25px;
}

.ZenFitWaveHeader_9830_NavLink {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.ZenFitWaveHeader_9830_NavLink:hover {
    color: #6AA9FF;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.8);
}

/* Burger Menu (No JS) */
.ZenFitWaveHeader_9830_ToggleInput {
    display: none;
}

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

.ZenFitWaveHeader_9830_Burger span {
    width: 30px;
    height: 3px;
    background-color: #6AA9FF;
    transition: 0.3s;
}

/* Hero Section */
.ZenFitWaveHero_9830_Section {
    padding: 80px 5%;
    background: radial-gradient(circle at top right, rgba(106, 169, 255, 0.05), transparent);
}

.ZenFitWaveHero_9830_Container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.ZenFitWaveHero_9830_ImageCol {
    flex: 1;
}

.ZenFitWaveHero_9830_MainImg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(106, 169, 255, 0.2);
    object-fit: cover;
}

.ZenFitWaveHero_9830_TextCol {
    flex: 1.2;
}

.ZenFitWaveHero_9830_Title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.ZenFitWaveHero_9830_Subtitle {
    font-size: 22px;
    color: #6AA9FF;
    margin-bottom: 25px;
    font-weight: 600;
}

.ZenFitWaveHero_9830_Para {
    margin-bottom: 20px;
    font-size: 17px;
    color: #ccd6f6;
}

.ZenFitWaveHero_9830_BtnMain {
    display: inline-block;
    padding: 16px 40px;
    background-color: #6AA9FF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: 2px solid transparent;
}

.ZenFitWaveHero_9830_BtnMain:hover {
    background-color: transparent;
    border-color: #6AA9FF;
    box-shadow: 0 0 15px rgba(106, 169, 255, 0.6);
}

/* Hero Feature Grid */
.ZenFitWaveHero_9830_FeatureGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.ZenFitWaveHero_9830_FeatureItem {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(106, 169, 255, 0.1);
    transition: transform 0.3s;
}

.ZenFitWaveHero_9830_FeatureItem:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF;
}

.ZenFitWaveHero_9830_FeatureImg {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.ZenFitWaveHero_9830_FeatureTitle {
    color: #6AA9FF;
    margin-bottom: 15px;
}

/* Target Section */
.ZenFitWaveTarget_9830_Section {
    padding: 100px 5%;
    background-color: #080F25;
}

.ZenFitWaveTarget_9830_Container {
    max-width: 1100px;
    margin: 0 auto;
}

.ZenFitWaveTarget_9830_Heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.ZenFitWaveTarget_9830_ContentBox {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.ZenFitWaveTarget_9830_List {
    flex: 1;
    list-style: none;
}

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

.ZenFitWaveTarget_9830_ListItem::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6AA9FF;
    font-weight: bold;
}

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

.ZenFitWaveTarget_9830_ProdImg {
    width: 100%;
    border-radius: 15px;
}

.ZenFitWaveTarget_9830_PriceTag {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #6AA9FF;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.ZenFitWaveTarget_9830_PriceValue {
    font-size: 24px;
    font-weight: 800;
}

.ZenFitWaveTarget_9830_PriceDesc {
    font-size: 12px;
}

/* Price Cards */
.ZenFitWavePrice_9830_Section {
    padding: 100px 5%;
}

.ZenFitWavePrice_9830_Heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.ZenFitWavePrice_9830_Grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.ZenFitWavePrice_9830_Card {
    background: #0D142B;
    border: 1px solid rgba(106, 169, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    width: 280px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.ZenFitWavePrice_9830_Card--Featured {
    border-color: #6AA9FF;
    transform: scale(1.05);
    background: #111A3A;
    box-shadow: 0 10px 30px rgba(106, 169, 255, 0.1);
}

.ZenFitWavePrice_9830_Badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6AA9FF;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.ZenFitWavePrice_9830_CardTitle {
    font-size: 24px;
    margin-bottom: 15px;
}

.ZenFitWavePrice_9830_CardPrice {
    font-size: 32px;
    font-weight: 800;
    color: #6AA9FF;
    margin-bottom: 25px;
}

.ZenFitWavePrice_9830_CardFeatures {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    font-size: 14px;
}

.ZenFitWavePrice_9830_CardFeatures li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 5px;
}

.ZenFitWavePrice_9830_Btn {
    display: block;
    padding: 12px;
    background: transparent;
    border: 2px solid #6AA9FF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.ZenFitWavePrice_9830_Btn:hover {
    background: #6AA9FF;
}

/* Reviews */
.ZenFitWaveReview_9830_Section {
    padding: 80px 5%;
    background: #050A18;
}

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

.ZenFitWaveReview_9830_Items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ZenFitWaveReview_9830_Card {
    background: rgba(106, 169, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #6AA9FF;
}

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

.ZenFitWaveReview_9830_Author {
    display: block;
    font-weight: bold;
    color: #6AA9FF;
}

/* Benefits Section */
.ZenFitWaveBenefits_9830_Section {
    padding: 100px 5%;
    background: #080F25;
}

.ZenFitWaveBenefits_9830_Container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.ZenFitWaveBenefits_9830_TextCol, .ZenFitWaveBenefits_9830_ImgCol {
    flex: 1;
}

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

.ZenFitWaveBenefits_9830_List {
    list-style: none;
}

.ZenFitWaveBenefits_9830_ListItem {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
}

.ZenFitWaveBenefits_9830_ListItem::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6AA9FF;
    font-size: 24px;
}

/* Expert Section */
.ZenFitWaveExpert_9830_Section {
    padding: 80px 5%;
}

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

.ZenFitWaveExpert_9830_Card {
    background: #0D142B;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(106, 169, 255, 0.1);
}

.ZenFitWaveExpert_9830_Avatar {
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #6AA9FF;
}

.ZenFitWaveExpert_9830_Quote {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ZenFitWaveExpert_9830_Name {
    font-weight: 800;
    font-size: 22px;
    color: #6AA9FF;
}

/* FAQ */
.ZenFitWaveFAQ_9830_Section {
    padding: 100px 5%;
    background: #050A18;
}

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

.ZenFitWaveFAQ_9830_Item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(106, 169, 255, 0.2);
}

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

.ZenFitWaveFAQ_9830_Summary::after {
    content: "+";
    color: #6AA9FF;
}

.ZenFitWaveFAQ_9830_Item[open] .ZenFitWaveFAQ_9830_Summary::after {
    content: "-";
}

.ZenFitWaveFAQ_9830_Answer {
    padding: 0 20px 20px;
    color: #ccd6f6;
}

/* Form */
.ZenFitWaveForm_9830_Section {
    padding: 100px 5%;
    background: #080F25;
}

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

.ZenFitWaveForm_9830_Heading {
    text-align: center;
    margin-bottom: 15px;
}

.ZenFitWaveForm_9830_Sub {
    text-align: center;
    margin-bottom: 40px;
    color: #6AA9FF;
}

.ZenFitWaveForm_9830_FieldGroup {
    margin-bottom: 20px;
}

.ZenFitWaveForm_9830_Label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.ZenFitWaveForm_9830_Input, .ZenFitWaveForm_9830_Textarea {
    width: 100%;
    padding: 15px;
    background: #0D142B;
    border: 1px solid rgba(106, 169, 255, 0.3);
    color: #ffffff;
    border-radius: 8px;
}

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

.ZenFitWaveForm_9830_Submit {
    width: 100%;
    padding: 18px;
    background: #6AA9FF;
    border: none;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.ZenFitWaveForm_9830_Submit:hover {
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.5);
    background: #5091e6;
}

/* Extra Text Sections */
.ZenFitWaveExtra_9830_Section {
    padding: 60px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.ZenFitWaveExtra_9830_Title {
    font-size: 32px;
    margin-bottom: 25px;
}

.ZenFitWaveExtra_9830_Text {
    margin-bottom: 20px;
    font-size: 16px;
    color: #a8b2d1;
}

.ZenFitWaveExtra_9830_Subtitle {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #6AA9FF;
}

.ZenFitWaveExtra_9830_List {
    margin-left: 20px;
    margin-bottom: 30px;
}

.ZenFitWaveExtra_9830_List li {
    margin-bottom: 10px;
}

/* Footer */
.ZenFitWaveFooter_9830_Main {
    padding: 60px 5%;
    background: #030712;
    border-top: 1px solid #6AA9FF;
}

.ZenFitWaveFooter_9830_Container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.ZenFitWaveFooter_9830_Copy {
    margin-bottom: 10px;
}

.ZenFitWaveFooter_9830_Link {
    color: #6AA9FF;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.ZenFitWaveFooter_9830_Link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .ZenFitWaveHero_9830_Container, .ZenFitWaveBenefits_9830_Container {
        flex-direction: column;
    }
    .ZenFitWaveHero_9830_Title {
        font-size: 36px;
    }
    .ZenFitWaveTarget_9830_ContentBox {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .ZenFitWaveHeader_9830_Burger {
        display: flex;
    }
    .ZenFitWaveHeader_9830_Nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050A18;
        display: none;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #6AA9FF;
    }
    .ZenFitWaveHeader_9830_ToggleInput:checked ~ .ZenFitWaveHeader_9830_Nav {
        display: flex;
    }
    .ZenFitWaveHeader_9830_NavList {
        flex-direction: column;
        align-items: center;
    }
    .ZenFitWaveHero_9830_Title {
        font-size: 28px;
    }
    .ZenFitWavePrice_9830_Card--Featured {
        transform: none;
    }
}