<style>
/* CSS RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* HEADER */
.VsfHeaderMainB {
    background-color: #0d0e10;
    border-bottom: 2px solid #FFC55E;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.VsfHeaderInnerD {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.VsfLogoTextE {
    font-size: 28px;
    font-weight: 800;
    color: #FFC55E;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.VsfNavLinkL {
    font-size: 15px;
    font-weight: 500;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.VsfNavLinkL:hover {
    color: #FFC55E;
}

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

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

.VsfBurgerBtnG span {
    width: 30px;
    height: 3px;
    background-color: #FFC55E;
    border-radius: 2px;
}

@media (max-width: 992px) {
    .VsfBurgerBtnG {
        display: flex;
    }

    .VsfNavMenuH {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #0d0e10;
        transition: 0.4s ease;
        padding: 40px 20px;
    }

    .VsfNavListI {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .VsfNavLinkL {
        font-size: 20px;
    }

    .VsfBurgerToggleF:checked ~ .VsfNavMenuH {
        left: 0;
    }
}

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

.VsfHeroGridU {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.VsfHeroImageColV {
    flex: 1 1 450px;
}

.VsfHeroMainImgW {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255, 197, 94, 0.1);
    object-fit: cover;
}

.VsfHeroTextColX {
    flex: 1 1 500px;
}

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

.VsfHeroTitleY::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #FFC55E;
    border-radius: 50%;
    box-shadow: 0 0 10px #FFC55E;
}

.VsfHeroSubtitleZ {
    font-size: 22px;
    color: #FFC55E;
    font-weight: 600;
    margin-bottom: 25px;
}

.VsfHeroDescAA {
    font-size: 17px;
    color: #cccccc;
    margin-bottom: 20px;
}

.VsfHeroBtnAB {
    display: inline-block;
    padding: 18px 40px;
    background-color: #FFC55E;
    color: #060708;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 197, 94, 0.3);
}

.VsfHeroBtnAB:hover {
    background-color: #ffd285;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 197, 94, 0.6);
}

.VsfHeroExtraGridAC {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.VsfHeroExtraCardAD {
    flex: 1 1 300px;
    background: #121315;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: 0.3s;
}

.VsfHeroExtraCardAD:hover {
    border-color: #FFC55E;
    transform: translateY(-5px);
}

.VsfHeroExtraImgAE {
    border-radius: 10px;
    margin-bottom: 20px;
}

.VsfHeroExtraTitleAF {
    font-size: 20px;
    color: #FFC55E;
    margin-bottom: 12px;
}

.VsfHeroExtraTextAG {
    font-size: 15px;
    color: #aaa;
}

/* SECTION HEADERS */
.VsfSectionTitleAI {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.VsfSectionTitleAI::after {
    content: '➔';
    color: #FFC55E;
    margin-left: 15px;
    font-size: 24px;
}

.VsfSectionSubtitleAQ {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 50px;
    font-size: 18px;
    color: #ccc;
}

/* REVIEWS */
.VsfReviewsSectionAH {
    padding: 100px 0;
    background: #090a0c;
}

.VsfReviewsGridAJ {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.VsfReviewCardAK {
    flex: 1 1 350px;
    background: #121315;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    border-left: 4px solid #FFC55E;
}

.VsfReviewTextAL {
    font-style: italic;
    font-size: 17px;
    margin-bottom: 20px;
    color: #eee;
}

.VsfReviewAuthorAM {
    font-weight: 700;
    color: #FFC55E;
}

/* AUDIENCE */
.VsfAudienceSectionAN {
    padding: 100px 0;
}

.VsfAudienceTopImgAO {
    margin-bottom: 60px;
    border-radius: 25px;
    overflow: hidden;
}

.VsfFullImgAP {
    width: 100%;
}

.VsfAudienceListAR {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.VsfAudienceItemAS {
    flex: 1 1 45%;
    background: #0d0e10;
    padding: 20px 25px;
    border: 1px solid #222;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.VsfAudienceItemAS::before {
    content: '✔';
    color: #FFC55E;
    margin-right: 15px;
    font-weight: bold;
}

/* PRICING */
.VsfPricingSectionAT {
    padding: 100px 0;
    background: #090a0c;
}

.VsfPricingGridAU {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.VsfPriceCardAV {
    flex: 1 1 260px;
    background: #121315;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.VsfPriceCardFeaturedBA {
    border: 2px solid #FFC55E;
    transform: scale(1.05);
}

.VsfPriceTitleAW {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.VsfPriceValueAX {
    font-size: 32px;
    font-weight: 800;
    color: #FFC55E;
    margin-bottom: 25px;
}

.VsfPriceListAY {
    text-align: left;
    margin-bottom: 30px;
}

.VsfPriceListAY li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #bbb;
}

.VsfPriceListAY li::before {
    content: '•';
    color: #FFC55E;
    margin-right: 8px;
}

.VsfPriceBtnAZ {
    display: block;
    padding: 15px;
    background: transparent;
    border: 1px solid #FFC55E;
    color: #FFC55E;
    border-radius: 10px;
    font-weight: 600;
}

.VsfPriceBtnAZ:hover {
    background: #FFC55E;
    color: #060708;
}

.VsfPriceCardFeaturedBA .VsfPriceBtnAZ {
    background: #FFC55E;
    color: #060708;
}

/* EXPERT */
.VsfExpertSectionBB {
    padding: 100px 0;
}

.VsfExpertWrapperBC {
    background: linear-gradient(145deg, #121315, #0a0a0b);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.VsfExpertQuoteBD {
    font-size: 24px;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
}

.VsfExpertNameBE {
    text-align: center;
    font-weight: 700;
    color: #FFC55E;
    font-size: 18px;
    margin-bottom: 50px;
}

.VsfExpertDetailsTitleBG {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
}

.VsfExpertDetailsListBH li {
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

/* BENEFITS */
.VsfBenefitsSectionBI {
    padding: 100px 0;
    background: #090a0c;
}

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

.VsfBenefitsTextBK {
    flex: 1 1 500px;
}

.VsfBenefitsImgColBO {
    flex: 1 1 450px;
}

.VsfBenefitsImgBP {
    border-radius: 20px;
    filter: grayscale(0.2);
}

.VsfBenefitsListBM {
    margin-top: 30px;
}

.VsfBenefitsItemBN {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 2px solid #FFC55E;
}

/* FAQ */
.VsfFAQSectionBQ {
    padding: 100px 0;
}

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

.VsfFAQItemBS {
    margin-bottom: 15px;
    background: #121315;
    border-radius: 10px;
    overflow: hidden;
}

.VsfFAQSummaryBT {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.VsfFAQSummaryBT::after {
    content: '+';
    color: #FFC55E;
    font-size: 24px;
}

.VsfFAQItemBS[open] .VsfFAQSummaryBT::after {
    content: '-';
}

.VsfFAQContentBU {
    padding: 0 20px 20px;
    color: #aaa;
}

/* TEXT SECTIONS */
.VsfTextSectionBV {
    padding: 80px 0;
}

.VsfTextSectionAltCA {
    background-color: #090a0c;
}

.VsfTextTitleBW {
    font-size: 32px;
    margin-bottom: 30px;
    color: #FFC55E;
}

.VsfTextParaBX {
    margin-bottom: 20px;
    font-size: 17px;
    color: #ccc;
    max-width: 1000px;
}

.VsfTextListItemBZ {
    margin-bottom: 10px;
    color: #eee;
}

.VsfTextInfoBoxCC {
    background: #1a1a1c;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-right: 5px solid #FFC55E;
}

/* FORM */
.VsfFormSectionCD {
    padding: 100px 0;
    background: linear-gradient(0deg, #060708 0%, #0d0e10 100%);
}

.VsfFormWrapperCE {
    max-width: 700px;
    margin: 0 auto;
    background: #121315;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #333;
}

.VsfFormTitleCF {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.VsfFormSubtitleCG {
    text-align: center;
    color: #aaa;
    margin-bottom: 40px;
}

.VsfFormGroupCI {
    margin-bottom: 25px;
}

.VsfFormLabelCK {
    display: block;
    margin-bottom: 8px;
    color: #FFC55E;
    font-size: 14px;
}

.VsfFormInputCL, .VsfFormTextareaCO {
    width: 100%;
    background: #060708;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    border-radius: 8px;
    outline: none;
}

.VsfFormInputCL:focus, .VsfFormTextareaCO:focus {
    border-color: #FFC55E;
}

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

.VsfFormCheckLabelCS {
    font-size: 14px;
    color: #aaa;
}

.VsfFormCheckLabelCS a {
    color: #FFC55E;
    text-decoration: underline;
}

.VsfSubmitBtnCT {
    width: 100%;
    padding: 18px;
    background: #FFC55E;
    border: none;
    border-radius: 10px;
    color: #060708;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

.VsfSubmitBtnCT:hover {
    background: #ffd285;
    box-shadow: 0 0 20px rgba(255, 197, 94, 0.4);
}

/* FOOTER */
.VsfFooterMainCU {
    background: #0d0e10;
    padding: 80px 0 40px;
    border-top: 1px solid #222;
}

.VsfFooterTopCV {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.VsfFooterBrandCW {
    font-size: 24px;
    font-weight: 700;
    color: #FFC55E;
}

.VsfFooterContactsCX p {
    margin-bottom: 10px;
    color: #bbb;
}

.VsfFooterDividerCY {
    height: 1px;
    background: #222;
    margin: 40px 0;
}

.VsfFooterBottomCZ {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.VsfCopyRightDA {
    font-size: 14px;
    color: #666;
}

.VsfFooterLinksDB {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.VsfFooterLinksDB a {
    font-size: 13px;
    color: #888;
}

.VsfFooterLinksDB a:hover {
    color: #FFC55E;
}

/* MOBILE ADAPTIVITY FIXES */
@media (max-width: 768px) {
    .VsfHeroTitleY { font-size: 32px; }
    .VsfSectionTitleAI { font-size: 28px; }
    .VsfHeroGridU { flex-direction: column-reverse; }
    .VsfFormWrapperCE { padding: 30px 20px; }
    .VsfAudienceItemAS { flex: 1 1 100%; }
    .VsfPriceCardFeaturedBA { transform: scale(1); }
}
</style>