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

html {
    scroll-behavior: smooth;
}

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

.melonavirBaseStrengthAnchor_Container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.melonavirBaseStrengthAnchor_HeaderInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.melonavirBaseStrengthAnchor_Logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #42FFD5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.melonavirBaseStrengthAnchor_NavLink {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.melonavirBaseStrengthAnchor_NavLink:hover {
    color: #42FFD5;
}

.melonavirBaseStrengthAnchor_MenuCheckbox,
.melonavirBaseStrengthAnchor_Burger {
    display: none;
}

/* HERO SECTION */
.melonavirBaseStrengthAnchor_Hero {
    padding: 100px 0;
}

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

.melonavirBaseStrengthAnchor_HeroImageWrapper {
    flex: 1;
    min-width: 300px;
}

.melonavirBaseStrengthAnchor_HeroImg {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(66, 255, 213, 0.2);
}

.melonavirBaseStrengthAnchor_HeroContent {
    flex: 1.2;
    min-width: 300px;
}

.melonavirBaseStrengthAnchor_HeroTitle {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #42FFD5;
}

.melonavirBaseStrengthAnchor_HeroSubtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #CCCCCC;
}

.melonavirBaseStrengthAnchor_HeroTextBlocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.melonavirBaseStrengthAnchor_HeroSubheading {
    color: #42FFD5;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.melonavirBaseStrengthAnchor_HeroDesc {
    font-size: 1rem;
    color: #BBBBBB;
}

/* BUTTONS */
.melonavirBaseStrengthAnchor_BtnPrimary {
    display: inline-block;
    background-color: #42FFD5;
    color: #03070A;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #42FFD5;
    text-align: center;
}

.melonavirBaseStrengthAnchor_BtnPrimary:hover {
    box-shadow: 0 0 20px rgba(66, 255, 213, 0.6);
    background-color: #03070A;
    color: #42FFD5;
}

.melonavirBaseStrengthAnchor_BtnSecondary {
    display: inline-block;
    background-color: transparent;
    color: #42FFD5;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #42FFD5;
    text-align: center;
}

.melonavirBaseStrengthAnchor_BtnSecondary:hover {
    background-color: #42FFD5;
    color: #03070A;
}

/* PRICING */
.melonavirBaseStrengthAnchor_Pricing {
    padding: 80px 0;
    background-color: #060C11;
}

.melonavirBaseStrengthAnchor_SectionTitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #42FFD5;
}

.melonavirBaseStrengthAnchor_PricingGrid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.melonavirBaseStrengthAnchor_PriceCard {
    background-color: #03070A;
    border: 1px solid #1A2E33;
    padding: 40px 30px;
    border-radius: 15px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.melonavirBaseStrengthAnchor_PriceCard:hover {
    transform: translateY(-10px);
    border-color: #42FFD5;
}

.melonavirBaseStrengthAnchor_PriceCardFeatured {
    border: 2px solid #42FFD5;
    transform: scale(1.05);
}

.melonavirBaseStrengthAnchor_PriceCardFeatured:hover {
    transform: scale(1.05) translateY(-10px);
}

.melonavirBaseStrengthAnchor_PriceName {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.melonavirBaseStrengthAnchor_PriceValue {
    font-size: 2rem;
    font-weight: 800;
    color: #42FFD5;
    text-align: center;
    margin-bottom: 30px;
}

.melonavirBaseStrengthAnchor_PriceList {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.melonavirBaseStrengthAnchor_PriceList li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: #CCCCCC;
}

.melonavirBaseStrengthAnchor_PriceList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #42FFD5;
}

/* EXPERT / TESTIMONIALS (Slider No JS) */
.melonavirBaseStrengthAnchor_Expert {
    padding: 80px 0;
}

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

.melonavirBaseStrengthAnchor_RadioToggle {
    display: none;
}

.melonavirBaseStrengthAnchor_Slides {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

.melonavirBaseStrengthAnchor_SlideItem {
    width: 33.333%;
    padding: 20px;
}

.melonavirBaseStrengthAnchor_Quote {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: #EEEEEE;
}

.melonavirBaseStrengthAnchor_QuoteAuthor {
    display: block;
    margin-top: 20px;
    font-style: normal;
    color: #42FFD5;
    font-weight: 700;
}

#melonavirBaseStrengthAnchor_Slide1:checked ~ .melonavirBaseStrengthAnchor_Slides { transform: translateX(0); }
#melonavirBaseStrengthAnchor_Slide2:checked ~ .melonavirBaseStrengthAnchor_Slides { transform: translateX(-33.333%); }
#melonavirBaseStrengthAnchor_Slide3:checked ~ .melonavirBaseStrengthAnchor_Slides { transform: translateX(-66.666%); }

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

.melonavirBaseStrengthAnchor_ControlDot {
    width: 15px;
    height: 15px;
    background-color: #1A2E33;
    border-radius: 50%;
    cursor: pointer;
}

#melonavirBaseStrengthAnchor_Slide1:checked ~ .melonavirBaseStrengthAnchor_SliderControls label:nth-child(1),
#melonavirBaseStrengthAnchor_Slide2:checked ~ .melonavirBaseStrengthAnchor_SliderControls label:nth-child(2),
#melonavirBaseStrengthAnchor_Slide3:checked ~ .melonavirBaseStrengthAnchor_SliderControls label:nth-child(3) {
    background-color: #42FFD5;
    box-shadow: 0 0 10px #42FFD5;
}

/* BENEFITS */
.melonavirBaseStrengthAnchor_Benefits {
    padding: 80px 0;
    background-color: #060C11;
}

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

.melonavirBaseStrengthAnchor_BenefitsContent {
    flex: 1;
    min-width: 300px;
}

.melonavirBaseStrengthAnchor_BenefitsImageWrapper {
    flex: 1;
    min-width: 300px;
}

.melonavirBaseStrengthAnchor_SideImg {
    border-radius: 10px;
    border-right: 5px solid #42FFD5;
}

.melonavirBaseStrengthAnchor_TextIntro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #42FFD5;
}

.melonavirBaseStrengthAnchor_ListCustom {
    list-style: none;
}

.melonavirBaseStrengthAnchor_ListItem {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.melonavirBaseStrengthAnchor_ListItem::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 2px;
    background-color: #42FFD5;
}

/* AUDIENCE */
.melonavirBaseStrengthAnchor_Audience {
    padding: 80px 0;
}

.melonavirBaseStrengthAnchor_SectionLead {
    text-align: center;
    max-width: 700px;
    margin: -40px auto 60px;
    font-size: 1.1rem;
    color: #BBBBBB;
}

.melonavirBaseStrengthAnchor_AudienceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.melonavirBaseStrengthAnchor_AudienceItem {
    background-color: #060C11;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-bottom: 3px solid #1A2E33;
    transition: border-color 0.3s ease;
}

.melonavirBaseStrengthAnchor_AudienceItem:hover {
    border-color: #42FFD5;
}

.melonavirBaseStrengthAnchor_AudienceIcon {
    margin: 0 auto 20px;
    border-radius: 50%;
}

.melonavirBaseStrengthAnchor_AudienceItem h4 {
    color: #42FFD5;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.melonavirBaseStrengthAnchor_DeepDescription {
    background-color: #03070A;
    border-left: 5px solid #42FFD5;
    padding: 40px;
}

.melonavirBaseStrengthAnchor_Paragraph {
    font-size: 1.1rem;
    color: #CCCCCC;
}

/* TEXT SECTIONS */
.melonavirBaseStrengthAnchor_TextSection {
    padding: 100px 0;
}

.melonavirBaseStrengthAnchor_SectionAlt {
    background-color: #060C11;
}

.melonavirBaseStrengthAnchor_TextLayout p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #BBBBBB;
}

.melonavirBaseStrengthAnchor_SimpleList {
    margin: 30px 0;
    list-style: none;
}

.melonavirBaseStrengthAnchor_SimpleList li {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 2px solid #42FFD5;
    font-weight: 600;
}

/* FAQ */
.melonavirBaseStrengthAnchor_Faq {
    padding: 80px 0;
    background-color: #060C11;
}

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

.melonavirBaseStrengthAnchor_FaqItem {
    background-color: #03070A;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #1A2E33;
}

.melonavirBaseStrengthAnchor_FaqQuestion {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    color: #42FFD5;
    list-style: none;
    position: relative;
}

.melonavirBaseStrengthAnchor_FaqQuestion::after {
    content: '+';
    position: absolute;
    right: 20px;
}

.melonavirBaseStrengthAnchor_FaqItem[open] .melonavirBaseStrengthAnchor_FaqQuestion::after {
    content: '-';
}

.melonavirBaseStrengthAnchor_FaqAnswer {
    padding: 0 20px 20px;
    color: #BBBBBB;
}

/* FORM */
.melonavirBaseStrengthAnchor_FormSec {
    padding: 100px 0;
}

.melonavirBaseStrengthAnchor_FormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #060C11;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #42FFD5;
}

.melonavirBaseStrengthAnchor_FormSubtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #CCCCCC;
}

.melonavirBaseStrengthAnchor_FormGroup {
    margin-bottom: 20px;
}

.melonavirBaseStrengthAnchor_Input, 
.melonavirBaseStrengthAnchor_Textarea {
    width: 100%;
    padding: 15px;
    background-color: #03070A;
    border: 1px solid #1A2E33;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 1rem;
}

.melonavirBaseStrengthAnchor_Input:focus, 
.melonavirBaseStrengthAnchor_Textarea:focus {
    outline: none;
    border-color: #42FFD5;
}

.melonavirBaseStrengthAnchor_Textarea {
    height: 120px;
    resize: vertical;
}

.melonavirBaseStrengthAnchor_CheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.melonavirBaseStrengthAnchor_CheckboxLabel {
    font-size: 0.85rem;
    color: #BBBBBB;
}

.melonavirBaseStrengthAnchor_CheckboxLabel a {
    color: #42FFD5;
}

.melonavirBaseStrengthAnchor_BtnSubmit {
    width: 100%;
    cursor: pointer;
}

/* FOOTER */
.melonavirBaseStrengthAnchor_Footer {
    background-color: #03070A;
    padding: 60px 0 30px;
    border-top: 1px solid #1A2E33;
    text-align: center;
}

.melonavirBaseStrengthAnchor_FooterContent p {
    margin-bottom: 10px;
    color: #888888;
}

.melonavirBaseStrengthAnchor_Contact a {
    color: #42FFD5;
    text-decoration: none;
}

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

.melonavirBaseStrengthAnchor_FooterLink {
    color: #666666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.melonavirBaseStrengthAnchor_FooterLink:hover {
    color: #42FFD5;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .melonavirBaseStrengthAnchor_Nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #03070A;
        transition: 0.4s;
        z-index: 999;
    }

    .melonavirBaseStrengthAnchor_NavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }

    .melonavirBaseStrengthAnchor_Burger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .melonavirBaseStrengthAnchor_Burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #42FFD5;
        position: absolute;
        transition: 0.3s;
    }

    .melonavirBaseStrengthAnchor_Burger span:nth-child(2) { top: 9px; }
    .melonavirBaseStrengthAnchor_Burger span:nth-child(3) { top: 18px; }

    .melonavirBaseStrengthAnchor_MenuCheckbox:checked ~ .melonavirBaseStrengthAnchor_Nav {
        left: 0;
    }

    .melonavirBaseStrengthAnchor_HeroTitle { font-size: 2.2rem; }
    .melonavirBaseStrengthAnchor_SectionTitle { font-size: 2rem; }
    .melonavirBaseStrengthAnchor_PriceCardFeatured { transform: scale(1); }
    .melonavirBaseStrengthAnchor_FormWrapper { padding: 30px 20px; }
}