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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    color: #38bdf8;
    font-weight: 700;
}

h1.ViwebuyezHub_Hero_Main_Title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

h2.ViwebuyezHub_Section_Heading_Center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #6F8CFF;
}

h2.ViwebuyezHub_Section_Title_Neon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #6F8CFF;
    padding-left: 15px;
}

/* Header */
header.ViwebuyezHub_Header_Fixed_Container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 7, 24, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(111, 140, 255, 0.2);
}

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

.ViwebuyezHub_Header_Logo_Text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #6F8CFF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.ViwebuyezHub_Header_Link_Item:hover {
    color: #6F8CFF;
    text-shadow: 0 0 8px rgba(111, 140, 255, 0.8);
}

.ViwebuyezHub_Header_Progress_Indicator {
    height: 3px;
    background: linear-gradient(90deg, #6F8CFF, #38bdf8);
    width: 0%;
    animation: ViwebuyezHub_Scroll_Progress linear;
    animation-timeline: scroll();
}

@keyframes ViwebuyezHub_Scroll_Progress {
    to { width: 100%; }
}

/* Mobile Menu */
.ViwebuyezHub_Mobile_Menu_Checkbox, .ViwebuyezHub_Mobile_Menu_Btn {
    display: none;
}

/* Hero Section */
.ViwebuyezHub_Hero_Section_Block {
    padding: 140px 0 80px;
}

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

.ViwebuyezHub_Hero_Image_Col, .ViwebuyezHub_Hero_Text_Col {
    flex: 1;
}

.ViwebuyezHub_Hero_Main_Image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(111, 140, 255, 0.2);
    object-fit: cover;
}

.ViwebuyezHub_Hero_Sub_Title {
    font-size: 1.4rem;
    color: #38bdf8;
    margin-bottom: 1.5rem;
}

.ViwebuyezHub_Hero_Paragraph_One, .ViwebuyezHub_Hero_Paragraph_Two {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #94a3b8;
}

.ViwebuyezHub_Hero_CTA_Button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #6F8CFF;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 15px rgba(111, 140, 255, 0.4);
    margin-bottom: 30px;
}

.ViwebuyezHub_Hero_CTA_Button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(111, 140, 255, 0.7);
    background-color: #5a76e6;
}

.ViwebuyezHub_Hero_Expert_Profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.ViwebuyezHub_Hero_Expert_Avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #6F8CFF;
}

.ViwebuyezHub_Hero_Expert_Info {
    display: flex;
    flex-direction: column;
}

.ViwebuyezHub_Hero_Expert_Name {
    font-weight: 700;
    color: #e2e8f0;
}

.ViwebuyezHub_Hero_Expert_Role {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Audience Section */
.ViwebuyezHub_Audience_Section_Block {
    padding: 80px 0;
    background: rgba(111, 140, 255, 0.02);
}

.ViwebuyezHub_Section_Intro_Text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #94a3b8;
}

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

.ViwebuyezHub_Accordion_Item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(111, 140, 255, 0.1);
}

.ViwebuyezHub_Accordion_Input {
    display: none;
}

.ViwebuyezHub_Accordion_Label {
    display: block;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #e2e8f0;
    transition: background 0.3s;
    position: relative;
}

.ViwebuyezHub_Accordion_Label::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: #6F8CFF;
}

.ViwebuyezHub_Accordion_Input:checked + .ViwebuyezHub_Accordion_Label::after {
    content: '-';
}

.ViwebuyezHub_Accordion_Label:hover {
    background: rgba(111, 140, 255, 0.05);
}

.ViwebuyezHub_Accordion_Content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.ViwebuyezHub_Accordion_Input:checked ~ .ViwebuyezHub_Accordion_Content {
    max-height: 300px;
    padding: 0 20px 20px;
}

/* FAQ Section */
.ViwebuyezHub_FAQ_Section_Block {
    padding: 80px 0;
}

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

.ViwebuyezHub_FAQ_Detail_Item {
    background: rgba(15, 23, 42, 0.6);
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

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

.ViwebuyezHub_FAQ_Icon_Toggle::before {
    content: '↓';
    color: #38bdf8;
    font-weight: bold;
}

details[open] .ViwebuyezHub_FAQ_Icon_Toggle::before {
    content: '↑';
}

.ViwebuyezHub_FAQ_Answer_Body {
    padding: 0 20px 20px;
    color: #94a3b8;
}

/* Text Sections */
.ViwebuyezHub_Text_Section_Block {
    padding: 60px 0;
}

.ViwebuyezHub_Text_With_Dividers p {
    margin: 20px 0;
    font-size: 1.1rem;
}

.ViwebuyezHub_Horizontal_Line {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(111, 140, 255, 0.3), transparent);
}

.ViwebuyezHub_Styled_List {
    margin-top: 20px;
    list-style: none;
}

.ViwebuyezHub_Styled_List li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.ViwebuyezHub_Styled_List li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6F8CFF;
}

/* Services */
.ViwebuyezHub_Services_Section_Block {
    padding: 80px 0;
    background: rgba(5, 7, 24, 0.95);
}

.ViwebuyezHub_Price_Switcher_Wrapper {
    text-align: center;
}

.ViwebuyezHub_Price_Radio {
    display: none;
}

.ViwebuyezHub_Price_Label {
    display: inline-block;
    padding: 10px 30px;
    background: #1e293b;
    margin: 0 5px 40px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

#ViwebuyezHub_Price_Base:checked ~ label[for="ViwebuyezHub_Price_Base"],
#ViwebuyezHub_Price_Full:checked ~ label[for="ViwebuyezHub_Price_Full"] {
    background: #6F8CFF;
    color: #fff;
    box-shadow: 0 0 10px rgba(111, 140, 255, 0.5);
}

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

.ViwebuyezHub_Price_Card_Item {
    background: #0f172a;
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    border: 1px solid rgba(111, 140, 255, 0.1);
    transition: transform 0.3s;
}

.ViwebuyezHub_Price_Card_Featured {
    border-color: #6F8CFF;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(111, 140, 255, 0.15);
}

.ViwebuyezHub_Price_Card_Title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.ViwebuyezHub_Price_Value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.ViwebuyezHub_Price_Show_Full { display: none; }

#ViwebuyezHub_Price_Full:checked ~ .ViwebuyezHub_Price_Cards_Grid .ViwebuyezHub_Price_Show_Full {
    display: inline;
}

#ViwebuyezHub_Price_Full:checked ~ .ViwebuyezHub_Price_Cards_Grid .ViwebuyezHub_Price_Show_Base {
    display: none;
}

.ViwebuyezHub_Price_Features_List {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.ViwebuyezHub_Price_Features_List li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.ViwebuyezHub_Price_CTA {
    display: block;
    padding: 12px;
    border: 1px solid #6F8CFF;
    text-decoration: none;
    color: #6F8CFF;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.ViwebuyezHub_Price_CTA:hover {
    background: #6F8CFF;
    color: #fff;
}

/* Practice Section */
.ViwebuyezHub_Practice_Section_Block {
    padding: 80px 0;
}

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

.ViwebuyezHub_Practice_Text_Col { flex: 1.2; }
.ViwebuyezHub_Practice_Image_Col { flex: 0.8; }

.ViwebuyezHub_Practice_Title {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.ViwebuyezHub_Practice_Cards_Row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.ViwebuyezHub_Practice_Mini_Card {
    background: rgba(111, 140, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-right: 3px solid #6F8CFF;
}

.ViwebuyezHub_Practice_Card_Small_Title {
    margin-bottom: 10px;
    color: #e2e8f0;
}

.ViwebuyezHub_Practice_Description {
    color: #94a3b8;
}

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

/* Expert Quote */
.ViwebuyezHub_Expert_Quote_Block {
    padding: 80px 0;
}

.ViwebuyezHub_Quote_Card {
    background: linear-gradient(135deg, rgba(111, 140, 255, 0.1), rgba(56, 189, 248, 0.1));
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ViwebuyezHub_Quote_Icon {
    font-size: 5rem;
    color: #6F8CFF;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.5;
}

.ViwebuyezHub_Quote_Text {
    font-size: 1.6rem;
    font-style: italic;
    color: #f1f5f9;
    margin-bottom: 30px;
}

.ViwebuyezHub_Quote_Author {
    display: flex;
    flex-direction: column;
}

.ViwebuyezHub_Quote_Author strong {
    font-size: 1.2rem;
    color: #6F8CFF;
}

/* Form Section */
.ViwebuyezHub_Form_Section_Block {
    padding: 100px 0;
    background: #020617;
}

.ViwebuyezHub_Form_Grid_Wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.ViwebuyezHub_Form_Info_Text, .ViwebuyezHub_Form_Container {
    flex: 1;
}

.ViwebuyezHub_Form_Title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ViwebuyezHub_Form_Subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.ViwebuyezHub_Contact_Details p {
    margin-bottom: 10px;
}

.ViwebuyezHub_Contact_Form {
    background: #0f172a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ViwebuyezHub_Form_Group {
    margin-bottom: 20px;
}

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

.ViwebuyezHub_Form_Input, .ViwebuyezHub_Form_Textarea {
    width: 100%;
    padding: 12px 15px;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    outline: none;
}

.ViwebuyezHub_Form_Input:focus, .ViwebuyezHub_Form_Textarea:focus {
    border-color: #6F8CFF;
}

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

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

.ViwebuyezHub_Form_Checkbox_Label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.ViwebuyezHub_Form_Checkbox_Label a {
    color: #38bdf8;
}

.ViwebuyezHub_Form_Submit_Btn {
    width: 100%;
    padding: 15px;
    background: #6F8CFF;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(111, 140, 255, 0.3);
}

.ViwebuyezHub_Form_Submit_Btn:hover {
    background: #5a76e6;
    box-shadow: 0 4px 20px rgba(111, 140, 255, 0.5);
}

/* Footer */
.ViwebuyezHub_Footer_Section_Block {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #050718;
}

.ViwebuyezHub_Footer_Main_Content {
    text-align: center;
    margin-bottom: 40px;
}

.ViwebuyezHub_Footer_Logo {
    font-size: 2rem;
    font-weight: 900;
    color: #6F8CFF;
    margin-bottom: 15px;
}

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

.ViwebuyezHub_Footer_Link {
    text-decoration: none;
    color: #64748b;
    font-size: 0.9rem;
    transition: 0.3s;
}

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

/* Responsive */
@media (max-width: 992px) {
    .ViwebuyezHub_Hero_Section_Grid, 
    .ViwebuyezHub_Practice_Grid, 
    .ViwebuyezHub_Form_Grid_Wrapper {
        flex-direction: column;
    }
    
    .ViwebuyezHub_Hero_Image_Col, .ViwebuyezHub_Practice_Image_Col {
        order: -1;
    }

    h1.ViwebuyezHub_Hero_Main_Title {
        font-size: 2.2rem;
    }
    
    .ViwebuyezHub_Price_Card_Featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .ViwebuyezHub_Mobile_Menu_Btn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .ViwebuyezHub_Mobile_Menu_Btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: #6F8CFF;
        position: absolute;
        transition: 0.3s;
    }

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

    .ViwebuyezHub_Header_Navigation_Links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #0f172a;
        flex-direction: column;
        padding: 80px 30px;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .ViwebuyezHub_Mobile_Menu_Checkbox:checked ~ .ViwebuyezHub_Header_Navigation_Links {
        right: 0;
    }

    .ViwebuyezHub_Mobile_Menu_Checkbox:checked ~ .ViwebuyezHub_Mobile_Menu_Btn span:nth-child(1) { transform: rotate(45deg); top: 9px; }
    .ViwebuyezHub_Mobile_Menu_Checkbox:checked ~ .ViwebuyezHub_Mobile_Menu_Btn span:nth-child(2) { opacity: 0; }
    .ViwebuyezHub_Mobile_Menu_Checkbox:checked ~ .ViwebuyezHub_Mobile_Menu_Btn span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

    .ViwebuyezHub_Practice_Cards_Row {
        grid-template-columns: 1fr;
    }

    .ViwebuyezHub_Quote_Card {
        padding: 30px;
    }

    .ViwebuyezHub_Quote_Text {
        font-size: 1.2rem;
    }
}