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

html {
    scroll-behavior: smooth;
}

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

.xb_container_w_03 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.xb_header_top_02 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 6, 7, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #5AF3FF;
    box-shadow: 0 4px 20px rgba(90, 243, 255, 0.2);
}

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

.xb_logo_text_05 {
    font-size: 28px;
    font-weight: 900;
    color: #5AF3FF;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.5);
}

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

.xb_link_nav_13 {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
    font-size: 14px;
    text-transform: uppercase;
}

.xb_link_nav_13:hover {
    color: #5AF3FF;
    text-shadow: 0 0 8px rgba(90, 243, 255, 0.8);
}

/* BURGER */
.xb_hide_input_07 {
    display: none;
}

.xb_burger_btn_08 {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.xb_burger_line_09 {
    width: 30px;
    height: 3px;
    background-color: #5AF3FF;
    box-shadow: 0 0 5px #5AF3FF;
    transition: 0.3s;
}

/* HERO SECTION */
.xb_hero_sect_16 {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

.xb_hero_text_18 {
    flex: 1;
}

.xb_hero_img_wrap_26 {
    flex: 1;
    position: relative;
    z-index: 2;
}

.xb_hero_h1_title_19 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
}

.xb_neon_span_20 {
    color: #5AF3FF;
    text-shadow: 0 0 15px rgba(90, 243, 255, 0.6);
}

.xb_hero_icon_21 {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-left: 10px;
}

.xb_hero_sub_22 {
    font-size: 20px;
    color: #5AF3FF;
    margin-bottom: 20px;
    font-weight: 600;
}

.xb_hero_p_23 {
    margin-bottom: 15px;
    color: #b0b0b0;
    font-size: 17px;
}

.xb_hero_cta_24 {
    margin-top: 35px;
}

.xb_hero_image_27 {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.15);
    border: 1px solid rgba(90, 243, 255, 0.3);
    object-fit: cover;
}

.xb_cyber_grid_28 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(90, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

/* BUTTONS */
.xb_btn_primary_25 {
    display: inline-block;
    padding: 16px 35px;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.4);
}

.xb_btn_primary_25:hover {
    background-color: #ffffff;
    box-shadow: 0 0 25px rgba(90, 243, 255, 0.7);
    transform: translateY(-2px);
    filter: blur(0.2px);
}

.xb_btn_secondary_69 {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: #5AF3FF;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #5AF3FF;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
}

.xb_btn_secondary_69:hover {
    background-color: rgba(90, 243, 255, 0.1);
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.3);
}

/* SECTIONS COMMON */
.xb_section_h2_30 {
    font-size: 38px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.xb_marker_31 {
    display: inline-block;
    width: 12px;
    height: 40px;
    background-color: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

/* FAQ */
.xb_faq_sect_29 {
    padding: 100px 0;
    background-color: #0a0c0e;
}

.xb_faq_list_32 {
    display: grid;
    gap: 15px;
}

.xb_faq_item_33 {
    background: #050607;
    border: 1px solid rgba(90, 243, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.xb_faq_summ_34 {
    padding: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.xb_faq_summ_34:hover {
    background: rgba(90, 243, 255, 0.05);
}

.xb_faq_icon_35 {
    width: 20px;
    height: 20px;
    border-right: 2px solid #5AF3FF;
    border-bottom: 2px solid #5AF3FF;
    transform: rotate(45deg);
    transition: 0.3s;
    margin-top: -5px;
}

details[open] .xb_faq_icon_35 {
    transform: rotate(-135deg);
    margin-top: 5px;
}

.xb_faq_body_36 {
    padding: 0 25px 25px 25px;
    color: #b0b0b0;
}

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

.xb_audience_intro_38 {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
}

.xb_cloud_tags_39 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.xb_badge_tag_40 {
    padding: 12px 25px;
    background: rgba(90, 243, 255, 0.05);
    border: 1px solid #5AF3FF;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #5AF3FF;
    transition: 0.3s;
}

.xb_badge_tag_40:hover {
    background: #5AF3FF;
    color: #050607;
    box-shadow: 0 0 15px #5AF3FF;
}

/* BENEFITS */
.xb_benefits_sect_41 {
    padding: 100px 0;
    background: #0a0c0e;
}

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

.xb_benefits_text_side_43 {
    flex: 1.2;
}

.xb_benefits_img_side_49 {
    flex: 0.8;
}

.xb_benefits_desc_44 {
    margin-bottom: 40px;
    font-size: 18px;
    color: #b0b0b0;
}

.xb_benefits_items_grid_45 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.xb_benefit_card_46 {
    padding: 25px;
    background: #050607;
    border-left: 4px solid #5AF3FF;
    border-radius: 4px;
}

.xb_benefit_h3_47 {
    color: #5AF3FF;
    margin-bottom: 10px;
    font-size: 20px;
}

.xb_benefit_p_48 {
    font-size: 14px;
    color: #909090;
}

.xb_benefits_image_50 {
    width: 100%;
    border-radius: 15px;
    filter: grayscale(0.5) contrast(1.1);
}

/* EXPERT */
.xb_expert_sect_51 {
    padding: 120px 0;
    text-align: center;
}

.xb_speech_bubble_wrap_52 {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.xb_speech_bubble_53 {
    background: rgba(90, 243, 255, 0.07);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    position: relative;
    margin-bottom: 30px;
}

.xb_speech_bubble_53::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid rgba(90, 243, 255, 0.15);
}

.xb_speech_bubble_53 p {
    font-size: 26px;
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
}

.xb_expert_name_55 {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #5AF3FF;
}

.xb_expert_role_56 {
    color: #b0b0b0;
    font-size: 14px;
}

/* PRICING */
.xb_pricing_sect_57 {
    padding: 100px 0;
    background: #0a0c0e;
}

.xb_price_switcher_58 {
    margin-top: 50px;
}

.xb_switch_labels_61 {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.xb_switch_btn_62 {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #5AF3FF;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
    color: #5AF3FF;
}

#xb_mode_base_59:checked ~ .xb_switch_labels_61 label[for="xb_mode_base_59"],
#xb_mode_ext_60:checked ~ .xb_switch_labels_61 label[for="xb_mode_ext_60"] {
    background: #5AF3FF;
    color: #050607;
    box-shadow: 0 0 15px #5AF3FF;
}

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

.xb_price_card_64 {
    background: #050607;
    padding: 50px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: 0.3s;
}

.xb_price_card_feat_70 {
    border: 1px solid #5AF3FF;
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(90, 243, 255, 0.05) 0%, #050607 100%);
    box-shadow: 0 10px 40px rgba(90, 243, 255, 0.1);
}

.xb_price_title_65 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.xb_price_val_base_66, .xb_price_val_ext_67 {
    font-size: 42px;
    font-weight: 900;
    color: #5AF3FF;
    margin-bottom: 30px;
}

#xb_mode_base_59:checked ~ .xb_pricing_grid_63 .xb_price_val_ext_67 { display: none; }
#xb_mode_ext_60:checked ~ .xb_pricing_grid_63 .xb_price_val_base_66 { display: none; }

.xb_price_list_68 {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.xb_price_list_68 li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #b0b0b0;
    font-size: 15px;
}

.xb_price_list_68 li::before {
    content: '✓ ';
    color: #5AF3FF;
}

/* TEXT BLOCKS */
.xb_text_block_sect_71 {
    padding: 100px 0;
}

.xb_bg_alt_76 {
    background: #0a0c0e;
}

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

.xb_text_content_72 p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #ccc;
}

.xb_key_thoughts_73 {
    background: #050607;
    border: 1px dashed #5AF3FF;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.xb_key_h4_74 {
    color: #5AF3FF;
    margin-bottom: 15px;
    font-size: 20px;
    text-transform: uppercase;
}

.xb_key_list_75 {
    list-style: none;
}

.xb_key_list_75 li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    color: #fff;
}

.xb_key_list_75 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

/* FORM */
.xb_form_sect_77 {
    padding: 120px 0;
}

.xb_form_container_78 {
    max-width: 600px;
    margin: 0 auto;
    background: #0a0c0e;
    padding: 60px;
    border-radius: 12px;
    border: 1px solid #5AF3FF;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.1);
}

.xb_form_h2_79 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
}

.xb_form_sub_80 {
    text-align: center;
    color: #909090;
    margin-bottom: 40px;
}

.xb_input_group_82 {
    margin-bottom: 25px;
}

.xb_label_84 {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #5AF3FF;
}

.xb_input_field_85, .xb_text_area_88 {
    width: 100%;
    background: #050607;
    border: 1px solid rgba(90, 243, 255, 0.3);
    padding: 15px;
    color: #fff;
    border-radius: 4px;
    outline: none;
}

.xb_input_field_85:focus, .xb_text_area_88:focus {
    border-color: #5AF3FF;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.2);
}

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

.xb_check_label_92 {
    font-size: 13px;
    color: #909090;
}

.xb_inline_link_93 {
    color: #5AF3FF;
    text-decoration: none;
}

.xb_full_btn_95 {
    width: 100%;
}

/* FOOTER */
.xb_footer_base_96 {
    padding: 80px 0 40px;
    background: #050607;
    border-top: 1px solid rgba(90, 243, 255, 0.2);
}

.xb_footer_top_97 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.xb_footer_logo_98 {
    font-size: 24px;
    font-weight: 900;
    color: #5AF3FF;
}

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

.xb_disclaimer_102 {
    font-size: 12px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.xb_footer_links_103 {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.xb_f_link_104 {
    text-decoration: none;
    color: #909090;
    font-size: 13px;
    transition: 0.3s;
}

.xb_f_link_104:hover {
    color: #5AF3FF;
}

.xb_footer_bottom_105 {
    text-align: center;
    font-size: 13px;
    color: #555;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .xb_hero_grid_17, .xb_benefits_grid_main_42 {
        flex-direction: column;
    }
    .xb_pricing_grid_63 {
        grid-template-columns: 1fr;
    }
    .xb_price_card_feat_70 {
        transform: scale(1);
    }
    .xb_hero_h1_title_19 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .xb_burger_btn_08 {
        display: flex;
    }
    .xb_nav_links_10 {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #050607;
        transition: 0.4s;
    }
    .xb_nav_list_11 {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    #xb_menu_toggle_06:checked ~ .xb_nav_links_10 {
        left: 0;
    }
    .xb_footer_top_97 {
        flex-direction: column;
        text-align: center;
    }
    .xb_benefits_items_grid_45 {
        grid-template-columns: 1fr;
    }
}