/* 
   THEME: NIGHT INDIGO
   BACKGROUND: #050A18
   PRIMARY: #6AA9FF
*/

:root {
    --vbf-bg: #050A18;
    --vbf-bg-alt: #0a1126;
    --vbf-primary: #6AA9FF;
    --vbf-text: #f8fafc;
    --vbf-text-dim: #94a3b8;
    --vbf-border: #1e293b;
    --vbf-neon: #00f2ff;
    --vbf-accent: #38bdf8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.vbf_BodyStyle_Xy {
    background-color: var(--vbf-bg);
    color: var(--vbf-text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
.vbf_HeaderWrap_Az {
    background: rgba(5, 10, 24, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.vbf_LogoText_Qr {
    font-size: 24px;
    font-weight: 800;
    color: var(--vbf-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.vbf_NavLink_Cd {
    color: var(--vbf-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
}

.vbf_NavLink_Cd:hover {
    color: var(--vbf-primary);
}

.vbf_DoubleLineTop_Qr {
    height: 1px;
    background: #1e293b;
    width: 100%;
}

.vbf_DoubleLineBot_St {
    height: 2px;
    background: #38bdf8;
    width: 100%;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* Mobile Menu */
.vbf_NavToggle_St {
    display: none;
}

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

.vbf_BurgerBtn_Uv span {
    width: 25px;
    height: 3px;
    background: var(--vbf-primary);
    border-radius: 2px;
}

/* Hero Section */
.vbf_HeroSection_Uv {
    padding: 80px 0 40px;
}

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

.vbf_HeroImageSide_Yz {
    flex: 1;
}

.vbf_HeroTextSide_Cd {
    flex: 1;
}

.vbf_ImgResponsive_Ab {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.vbf_MainTitle_Ef {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #fff, var(--vbf-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vbf_SubTitle_Gh {
    font-size: 20px;
    color: var(--vbf-accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.vbf_HeroDescr_Ij {
    margin-bottom: 15px;
    color: var(--vbf-text-dim);
}

.vbf_BtnPrimary_Mn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--vbf-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 2px solid transparent;
}

.vbf_BtnPrimary_Mn:hover {
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.6);
    transform: translateY(-2px);
    border: 2px solid var(--vbf-neon);
}

.vbf_PartnerBar_Op {
    margin-top: 60px;
    border-top: 1px solid var(--vbf-border);
    padding-top: 30px;
}

.vbf_PartnerFlex_Qr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
}

/* Practice Section */
.vbf_PracticeSection_Uv {
    padding: 100px 0;
    background-color: var(--vbf-bg-alt);
}

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

.vbf_PracticeText_Yz {
    flex: 1;
}

.vbf_PracticeImg_Ij {
    flex: 1;
}

.vbf_SecTitle_Ab {
    font-size: 36px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.vbf_SecTitle_Ab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--vbf-primary);
}

.vbf_CheckList_Ef {
    list-style: none;
    margin-top: 30px;
}

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

.vbf_CheckItem_Gh::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vbf-accent);
    font-weight: bold;
}

.vbf_GlowImg_Kl {
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.2);
}

/* Info Sections */
.vbf_InfoSection_Mn {
    padding: 80px 0;
}

.vbf_ArticleBox_Op {
    margin-bottom: 60px;
}

.vbf_Text_Qr {
    margin-bottom: 20px;
    color: var(--vbf-text-dim);
}

.vbf_SimpleList_St {
    margin: 20px 0 20px 20px;
    color: var(--vbf-text);
}

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

/* Pricing */
.vbf_PriceSection_Uv {
    padding: 100px 0;
    background-color: var(--vbf-bg-alt);
}

.vbf_TableScroll_Yz {
    overflow-x: auto;
    margin-top: 40px;
}

.vbf_PriceTable_Cd {
    width: 100%;
    border-collapse: collapse;
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
}

.vbf_PriceTable_Cd th, 
.vbf_PriceTable_Cd td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--vbf-border);
}

.vbf_PriceTable_Cd th {
    background: #1e293b;
    color: var(--vbf-primary);
}

.vbf_PriceRow_Ef {
    font-weight: bold;
    color: var(--vbf-accent);
    font-size: 18px;
}

.vbf_Disclaimer_Ij {
    font-size: 12px;
    color: var(--vbf-text-dim);
    margin-top: 20px;
}

/* Who Section */
.vbf_WhoSection_Mn {
    padding: 100px 0;
}

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

.vbf_WhoCard_St {
    background: #0f172a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--vbf-border);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.vbf_WhoCard_St:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--vbf-primary);
}

.vbf_WhoCard_St::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(106, 169, 255, 0.1), transparent);
}

.vbf_CardTitle_Uv {
    margin-bottom: 15px;
    color: var(--vbf-primary);
}

/* FAQ */
.vbf_FaqSection_Op {
    padding: 100px 0;
    background-color: var(--vbf-bg-alt);
}

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

.vbf_FaqItem_St {
    margin-bottom: 15px;
    background: #0f172a;
    border: 1px solid var(--vbf-border);
    border-radius: 8px;
}

.vbf_FaqQuest_Uv {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    outline: none;
    list-style: none;
    position: relative;
}

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

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

details[open] .vbf_FaqQuest_Uv::after {
    content: '-';
}

.vbf_FaqAns_Wx {
    padding: 0 20px 20px;
    color: var(--vbf-text-dim);
}

/* Expert Section */
.vbf_ExpertSection_Yz {
    padding: 100px 0;
}

.vbf_ExpertBox_Ab {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vbf_ExpertPhoto_Cd {
    margin-bottom: 25px;
}

.vbf_ExpertImg_Ef {
    border-radius: 50%;
    border: 3px solid var(--vbf-primary);
    padding: 5px;
}

.vbf_ExpertQuote_Gh {
    font-style: italic;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--vbf-text);
}

.vbf_ExpertName_Ij {
    font-weight: bold;
    font-size: 20px;
    color: var(--vbf-primary);
}

.vbf_ExpertRole_Kl {
    color: var(--vbf-text-dim);
}

/* Form Section */
.vbf_FormSection_Mn {
    padding: 100px 0;
    background-color: var(--vbf-bg-alt);
}

.vbf_Narrow_Op {
    max-width: 600px;
}

.vbf_MainForm_St {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vbf_Label_Wx {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.vbf_Input_Yz, .vbf_Textarea_Ab {
    width: 100%;
    background: #1e293b;
    border: 1px solid var(--vbf-border);
    padding: 12px 15px;
    color: #fff;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s;
}

.vbf_Input_Yz:focus, .vbf_Textarea_Ab:focus {
    border-color: var(--vbf-primary);
}

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

.vbf_FlexCheck_Cd {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vbf_CheckLabel_Gh {
    font-size: 13px;
    color: var(--vbf-text-dim);
}

.vbf_CheckLabel_Gh a {
    color: var(--vbf-primary);
}

.vbf_BtnSubmit_Ij {
    background: var(--vbf-primary);
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.vbf_BtnSubmit_Ij:hover {
    background: #4a91f2;
    box-shadow: 0 0 15px rgba(106, 169, 255, 0.4);
}

/* Footer */
.vbf_Footer_Kl {
    padding: 60px 0;
    background: #020617;
    text-align: center;
    border-top: 1px solid var(--vbf-border);
}

.vbf_FooterLogo_Op {
    font-size: 20px;
    font-weight: 800;
    color: var(--vbf-primary);
    margin-bottom: 10px;
}

.vbf_FooterCopy_Qr, .vbf_FooterContact_St, .vbf_FooterAddress_Uv {
    font-size: 14px;
    color: var(--vbf-text-dim);
    margin-bottom: 5px;
}

.vbf_FooterContact_St a {
    color: var(--vbf-accent);
    text-decoration: none;
}

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

.vbf_FLink_Yz {
    color: var(--vbf-text-dim);
    font-size: 12px;
    text-decoration: none;
}

.vbf_FLink_Yz:hover {
    color: var(--vbf-primary);
}

.vbf_DisclaimerBottom_Ab {
    background: #000;
    padding: 15px 0;
    text-align: center;
    font-size: 10px;
    color: #475569;
    letter-spacing: 1px;
}

/* Utils */
.vbf_Center_Wx { text-align: center; }
.vbf_Mt_Gh { margin-top: 30px; }

/* Responsive */
@media (max-width: 992px) {
    .vbf_FlexHero_Wx, .vbf_FlexPractice_Wx {
        flex-direction: column;
        text-align: center;
    }
    .vbf_SecTitle_Ab::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .vbf_MainTitle_Ef {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .vbf_NavMenu_Wx {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--vbf-bg);
        flex-direction: column;
        padding: 20px;
    }
    .vbf_NavList_Yz {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .vbf_BurgerBtn_Uv {
        display: flex;
    }
    #vbf_MobileNavToggle:checked ~ .vbf_NavMenu_Wx {
        display: flex;
    }
    .vbf_PartnerFlex_Qr {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}