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

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

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

/* Header */
.vmf_HeaderWrapper {
    background: rgba(2, 6, 23, 0.95);
    border-bottom: 1px solid #38bdf833;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.vmf_HeaderInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vmf_LogoText {
    font-size: 24px;
    font-weight: 800;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.vmf_NavigationMenu {
    display: flex;
    gap: 25px;
}

.vmf_NavLink {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s;
}

.vmf_NavLink:hover {
    color: #38bdf8;
}

.vmf_MenuCheckbox {
    display: none;
}

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

.vmf_BurgerButton span {
    width: 25px;
    height: 3px;
    background: #38bdf8;
    border-radius: 2px;
}

/* Pattern Bar */
.vmf_PatternBarSeparator {
    height: 10px;
    background: repeating-linear-gradient(45deg, #22c55e, #22c55e 2px, transparent 2px, transparent 10px);
    opacity: 0.3;
}

/* Disclaimer */
.vmf_DisclaimerTop {
    background: #0f172a;
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
    padding: 8px 20px;
    border-bottom: 1px solid #1e293b;
}

/* Hero Section */
.vmf_HeroSection {
    padding: 80px 0 40px;
    background: radial-gradient(circle at 70% 30%, #1e293b 0%, #020617 70%);
}

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

.vmf_HeroImageCol, .vmf_HeroTextCol {
    flex: 1;
}

.vmf_MainHeroImg {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #38bdf844;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

.vmf_MainHeading {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #f8fafc;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.vmf_SubHeading {
    font-size: 20px;
    color: #38bdf8;
    margin-bottom: 25px;
    font-weight: 300;
}

.vmf_HeroParagraph {
    margin-bottom: 20px;
    color: #94a3b8;
}

.vmf_HeroBtnWrapper {
    margin-top: 35px;
}

.vmf_CyanGlowBtn {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid #38bdf8;
    color: #38bdf8;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.4s;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
    text-align: center;
}

.vmf_CyanGlowBtn:hover {
    background: #38bdf8;
    color: #020617;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
}

.vmf_PartnerLogosBand {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #1e293b;
    flex-wrap: wrap;
    gap: 20px;
}

.vmf_PartnerItem {
    color: #475569;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Section */
.vmf_SectionPadding {
    padding: 100px 0;
}

.vmf_BgAlt {
    background: #050a1b;
}

.vmf_BgDarker {
    background: #010410;
}

.vmf_SectionHeaderCenter {
    text-align: center;
    margin-bottom: 60px;
}

.vmf_SectionTitle {
    font-size: 36px;
    color: #f8fafc;
    margin-bottom: 15px;
}

.vmf_SectionSubtitle {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

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

.vmf_PriceCard {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.vmf_PriceCard:hover {
    transform: translateY(-10px);
    border-color: #38bdf866;
}

.vmf_FeaturedCard {
    border: 2px solid #38bdf8;
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.1);
}

.vmf_CardTitle {
    font-size: 24px;
    color: #38bdf8;
    margin-bottom: 10px;
}

.vmf_CardUsage {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 25px;
    height: 40px;
}

.vmf_PriceValue {
    font-size: 32px;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 30px;
}

.vmf_CardFeatures {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.vmf_CardFeatures li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #cbd5e1;
}

.vmf_CardFeatures li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #22c55e;
}

.vmf_CardBtn {
    padding: 12px;
    text-align: center;
    border: 1px solid #38bdf8;
    color: #38bdf8;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

/* Target Grid */
.vmf_TextCenter { text-align: center; }

.vmf_TargetGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.vmf_TargetItem {
    flex: 1 1 300px;
    background: #0f172a;
    padding: 30px;
    border-radius: 8px;
    border-bottom: 3px solid #38bdf8;
}

.vmf_TargetIcon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #38bdf8);
}

.vmf_TargetItem h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #38bdf8;
}

.vmf_TargetItem p {
    font-size: 14px;
    color: #94a3b8;
}

.vmf_TargetListAdditional {
    margin-top: 60px;
    background: rgba(56, 189, 248, 0.05);
    padding: 40px;
    border-radius: 12px;
}

.vmf_CheckList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
}

.vmf_CheckList li {
    position: relative;
    padding-left: 30px;
    color: #e2e8f0;
}

.vmf_CheckList li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Regular Practice Section */
.vmf_RegularFlex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.vmf_RegularTextCol, .vmf_RegularImageCol {
    flex: 1;
}

.vmf_NormalText {
    margin-bottom: 20px;
    color: #94a3b8;
}

.vmf_BenefitsGridHorizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.vmf_BenefitSmall {
    background: #1e293b;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    border: 1px solid #334155;
}

.vmf_BenefitIcon {
    font-size: 20px;
}

.vmf_ContentImgShadow {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.1);
}

/* Expert Section */
.vmf_ExpertContainer {
    text-align: center;
    max-width: 800px;
}

.vmf_ExpertPhoto {
    margin-bottom: 30px;
}

.vmf_ExpertAvatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #22c55e;
    padding: 5px;
}

.vmf_ExpertQuote {
    font-size: 24px;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 30px;
    position: relative;
}

.vmf_ExpertQuote::before {
    content: "“";
    font-size: 80px;
    position: absolute;
    top: -40px;
    left: -20px;
    color: #22c55e;
    opacity: 0.2;
}

.vmf_ExpertSignature {
    color: #64748b;
}

.vmf_ExpertSignature strong {
    color: #22c55e;
    font-size: 18px;
}

/* Text Columns */
.vmf_TwoColumnText {
    display: flex;
    gap: 40px;
}

.vmf_TextCol {
    flex: 1;
}

.vmf_TextCol p {
    margin-bottom: 15px;
    color: #94a3b8;
}

/* FAQ */
.vmf_FaqList {
    max-width: 900px;
    margin: 40px auto 0;
}

.vmf_FaqItem {
    background: #0f172a;
    border: 1px solid #1e293b;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.vmf_FaqQuestion {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #38bdf8;
    outline: none;
    list-style: none;
    display: flex;
    align-items: center;
}

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

.vmf_FaqQuestion::before {
    content: "?";
    width: 30px;
    height: 30px;
    background: #38bdf822;
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
}

.vmf_FaqAnswer {
    padding: 0 20px 20px 65px;
    color: #94a3b8;
    font-size: 15px;
}

/* Form */
.vmf_FormWrapper {
    background: #0f172a;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #1e293b;
    max-width: 800px;
    margin: 0 auto;
}

.vmf_FormTitle {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #f8fafc;
}

.vmf_FormSubtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
}

.vmf_FormGroup {
    margin-bottom: 20px;
}

.vmf_FormGroup label {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 14px;
}

.vmf_FormGroup input, .vmf_FormGroup textarea {
    width: 100%;
    padding: 12px 15px;
    background: #020617;
    border: 1px solid #1e293b;
    color: #f8fafc;
    border-radius: 4px;
    outline: none;
}

.vmf_FormGroup input:focus, .vmf_FormGroup textarea:focus {
    border-color: #38bdf8;
}

.vmf_FormCheckbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #94a3b8;
}

.vmf_FormCheckbox a {
    color: #38bdf8;
    text-decoration: none;
}

.vmf_SubmitBtn {
    width: 100%;
    padding: 16px;
    background: #38bdf8;
    color: #020617;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}

.vmf_SubmitBtn:hover {
    background: #22d3ee;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

/* Footer */
.vmf_FooterWrapper {
    background: #010410;
    padding: 60px 0 40px;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.vmf_FooterMain {
    font-weight: 700;
    margin-bottom: 10px;
}

.vmf_FooterContact {
    color: #94a3b8;
    margin-bottom: 25px;
}

.vmf_FooterContact a {
    color: #38bdf8;
    text-decoration: none;
}

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

.vmf_FooterLinks a {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: color 0.3s;
}

.vmf_FooterLinks a:hover {
    color: #38bdf8;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .vmf_HeroFlex, .vmf_RegularFlex, .vmf_TwoColumnText {
        flex-direction: column;
    }
    
    .vmf_PricingGrid {
        flex-direction: column;
        align-items: center;
    }
    
    .vmf_CheckList {
        grid-template-columns: 1fr;
    }
    
    .vmf_MainHeading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .vmf_NavigationMenu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #020617;
        flex-direction: column;
        padding: 40px;
        border-bottom: 1px solid #1e293b;
        text-align: center;
    }

    .vmf_MenuCheckbox:checked ~ .vmf_NavigationMenu {
        display: flex;
    }

    .vmf_BurgerButton {
        display: flex;
    }

    .vmf_FormWrapper {
        padding: 30px;
    }
}