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

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0A0D10;
    color: #E6FBFF;
}

body.vq_body_root_9308 {
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* HEADER */
.vq_header_wrap_9308 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 13, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(230, 251, 255, 0.2);
}

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

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

.vq_nav_list_9308 {
    display: flex;
    list-style: none;
    gap: 30px;
}

.vq_nav_link_9308:hover {
    color: #00ffe0;
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.5);
}

/* BURGER MENU */
.vq_nav_checkbox_9308 {
    display: none;
}

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

.vq_burger_line_9308 {
    width: 25px;
    height: 2px;
    background-color: #E6FBFF;
}

/* HERO SECTION */
.vq_hero_section_9308 {
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.vq_hero_image_box_9308 {
    flex: 1;
}

.vq_hero_img_9308 {
    border-radius: 4px;
    border: 1px solid rgba(230, 251, 255, 0.3);
    box-shadow: 0 0 30px rgba(230, 251, 255, 0.1);
}

.vq_hero_text_box_9308 {
    flex: 1.2;
}

.vq_hero_title_9308 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.vq_accent_ice_9308 {
    color: #00ffe0;
    text-shadow: 0 0 15px rgba(0, 255, 224, 0.3);
}

.vq_hero_subtitle_9308 {
    font-size: 1.2rem;
    color: rgba(230, 251, 255, 0.8);
    margin-bottom: 40px;
}

.vq_hero_info_blocks_9308 {
    margin-bottom: 40px;
}

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

.vq_info_item_title_9308 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #E6FBFF;
}

.vq_info_item_desc_9308 {
    font-size: 0.95rem;
    color: rgba(230, 251, 255, 0.7);
}

.vq_btn_primary_9308 {
    display: inline-block;
    padding: 15px 40px;
    background-color: #E6FBFF;
    color: #0A0D10;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.vq_btn_primary_9308:hover {
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.6);
    transform: translateY(-2px);
}

/* REVIEWS SLIDER */
.vq_reviews_section_9308 {
    padding: 100px 0;
    background-color: #0F1419;
}

.vq_section_title_9308 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

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

.vq_slider_radio_9308 {
    display: none;
}

.vq_slides_container_9308 {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vq_review_card_9308 {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    background: rgba(230, 251, 255, 0.05);
    border: 1px solid rgba(230, 251, 255, 0.1);
}

.vq_review_text_9308 {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 25px;
}

.vq_review_author_9308 {
    display: block;
    color: #00ffe0;
    font-weight: 600;
}

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

.vq_slider_dot_9308 {
    width: 12px;
    height: 12px;
    border: 1px solid #E6FBFF;
    cursor: pointer;
}

#vq_slide_1_9308:checked ~ .vq_slides_container_9308 { transform: translateX(0%); }
#vq_slide_2_9308:checked ~ .vq_slides_container_9308 { transform: translateX(-100%); }
#vq_slide_3_9308:checked ~ .vq_slides_container_9308 { transform: translateX(-200%); }

#vq_slide_1_9308:checked ~ .vq_slider_nav_9308 label:nth-child(1),
#vq_slide_2_9308:checked ~ .vq_slider_nav_9308 label:nth-child(2),
#vq_slide_3_9308:checked ~ .vq_slider_nav_9308 label:nth-child(3) {
    background-color: #E6FBFF;
}

/* PRICE SECTION */
.vq_prices_section_9308 {
    padding: 100px 0;
}

.vq_price_grid_9308 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.vq_price_card_9308 {
    padding: 40px 30px;
    border: 1px solid rgba(230, 251, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

.vq_price_card_9308:hover {
    border-color: #00ffe0;
    box-shadow: inset 0 0 15px rgba(0, 255, 224, 0.1);
}

.vq_price_name_9308 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.vq_price_val_9308 {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffe0;
    margin-bottom: 30px;
}

.vq_price_features_9308 {
    list-style: none;
    width: 100%;
}

.vq_price_features_9308 li {
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(230, 251, 255, 0.1);
}

/* BENEFITS SECTION */
.vq_benefits_section_9308 {
    padding: 100px 0;
    background-color: #0F1419;
}

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

.vq_benefits_text_box_9308 {
    flex: 1.2;
}

.vq_benefits_image_box_9308 {
    flex: 1;
}

.vq_section_title_left_9308 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.vq_benefits_list_9308 {
    list-style: none;
}

.vq_benefits_list_9308 li {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.vq_benefits_list_9308 li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00ffe0;
}

.vq_benefits_img_9308 {
    border: 1px solid rgba(230, 251, 255, 0.2);
}

/* TARGET SECTION */
.vq_target_section_9308 {
    padding: 100px 0;
}

.vq_target_grid_9308 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.vq_target_item_9308 {
    text-align: center;
}

.vq_target_img_9308 {
    width: 100%;
    margin-bottom: 20px;
    filter: grayscale(1);
    transition: 0.5s;
}

.vq_target_item_9308:hover .vq_target_img_9308 {
    filter: grayscale(0);
}

.vq_target_label_9308 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.vq_target_desc_9308 {
    font-size: 0.9rem;
    color: rgba(230, 251, 255, 0.7);
}

.vq_detailed_list_box_9308 {
    background: rgba(230, 251, 255, 0.03);
    padding: 50px;
    border: 1px dashed rgba(230, 251, 255, 0.2);
}

.vq_list_intro_9308 {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.vq_check_list_9308 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
    list-style: none;
}

.vq_check_list_9308 li::before {
    content: "✓";
    margin-right: 10px;
    color: #00ffe0;
}

/* QUOTE SECTION */
.vq_practitioner_section_9308 {
    padding: 120px 0;
    background: linear-gradient(180deg, #0A0D10 0%, #0F1419 100%);
}

.vq_quote_card_9308 {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vq_main_quote_9308 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 300;
}

.vq_quote_cite_9308 {
    display: block;
    font-size: 1.1rem;
    color: #00ffe0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* TEXT CONTENT BLOCKS */
.vq_text_content_block_9308 {
    padding: 80px 0;
}

.vq_content_title_9308 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00ffe0;
}

.vq_content_text_9308 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(230, 251, 255, 0.8);
    max-width: 900px;
}

.vq_content_list_9308 {
    margin: 20px 0 30px 40px;
}

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

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

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

.vq_faq_item_9308 {
    border-bottom: 1px solid rgba(230, 251, 255, 0.1);
}

.vq_faq_summary_9308 {
    padding: 25px 0;
    font-size: 1.2rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.vq_faq_summary_9308::after {
    content: "+";
}

.vq_faq_item_9308[open] .vq_faq_summary_9308::after {
    content: "-";
}

.vq_faq_answer_9308 {
    padding: 0 0 25px 0;
    color: rgba(230, 251, 255, 0.7);
}

/* FORM SECTION */
.vq_form_section_9308 {
    padding: 100px 0;
    background-color: #0F1419;
}

.vq_form_wrapper_9308 {
    max-width: 600px;
    margin: 0 auto;
    background: #0A0D10;
    padding: 60px;
    border: 1px solid #E6FBFF;
}

.vq_form_title_9308 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.vq_form_subtitle_9308 {
    text-align: center;
    margin-bottom: 40px;
    color: rgba(230, 251, 255, 0.6);
}

.vq_form_group_9308 {
    margin-bottom: 25px;
}

.vq_field_label_9308 {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.vq_form_input_9308, .vq_form_textarea_9308 {
    width: 100%;
    padding: 15px;
    background: #1a1f24;
    border: 1px solid rgba(230, 251, 255, 0.2);
    color: #E6FBFF;
    border-radius: 0;
}

.vq_form_textarea_9308 {
    height: 120px;
    resize: none;
}

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

.vq_checkbox_label_9308 {
    font-size: 0.85rem;
    color: rgba(230, 251, 255, 0.6);
}

.vq_checkbox_label_9308 a {
    text-decoration: underline;
}

.vq_btn_submit_9308 {
    width: 100%;
    padding: 20px;
    background-color: #E6FBFF;
    color: #0A0D10;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

/* FOOTER */
.vq_footer_root_9308 {
    padding: 60px 0;
    border-top: 1px solid rgba(230, 251, 255, 0.1);
}

.vq_footer_top_9308 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

.vq_footer_link_9308 {
    font-size: 0.8rem;
    color: rgba(230, 251, 255, 0.5);
}

.vq_footer_link_9308:hover {
    color: #E6FBFF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .vq_hero_grid_9308, .vq_benefits_grid_9308 {
        flex-direction: column;
    }
    
    .vq_hero_title_9308 {
        font-size: 2.8rem;
    }
    
    .vq_target_grid_9308 {
        grid-template-columns: 1fr;
    }
    
    .vq_check_list_9308 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vq_nav_menu_9308 {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0A0D10;
        transition: 0.4s;
        padding: 50px 20px;
    }
    
    .vq_nav_list_9308 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .vq_burger_btn_9308 {
        display: flex;
    }
    
    .vq_nav_checkbox_9308:checked ~ .vq_nav_menu_9308 {
        left: 0;
    }
    
    .vq_footer_top_9308 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    
    .vq_form_wrapper_9308 {
        padding: 30px;
    }
}