/* ОБЩИЕ СТИЛИ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

ul {
    list-style: none;
}

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

/* HEADER & NAV */
.vexqorapelinMotionJointGlow_header_section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 0, 32, 0.95);
    border-bottom: 2px solid #B98CFF;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.3);
}

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

.vexqorapelinMotionJointGlow_logo_text {
    font-size: 28px;
    font-weight: 800;
    color: #B98CFF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.vexqorapelinMotionJointGlow_nav_link {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #e0e0e0;
}

.vexqorapelinMotionJointGlow_nav_link:hover {
    color: #B98CFF;
    text-shadow: 0 0 8px #B98CFF;
}

/* MOBILE MENU */
.vexqorapelinMotionJointGlow_mobile_toggle {
    display: none;
}

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

.vexqorapelinMotionJointGlow_burger_icon span {
    width: 30px;
    height: 3px;
    background-color: #B98CFF;
    transition: 0.3s;
}

/* HERO SECTION */
.vexqorapelinMotionJointGlow_hero_section {
    padding: 160px 0 100px;
    position: relative;
}

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

.vexqorapelinMotionJointGlow_hero_visual {
    flex: 1;
    position: relative;
}

.vexqorapelinMotionJointGlow_hero_main_img {
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(185, 140, 255, 0.2);
    border: 1px solid rgba(185, 140, 255, 0.3);
}

.vexqorapelinMotionJointGlow_mini_gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.vexqorapelinMotionJointGlow_gallery_item {
    border-radius: 10px;
    border: 1px solid #B98CFF;
    width: calc(33.33% - 10px);
    object-fit: cover;
}

.vexqorapelinMotionJointGlow_hero_text {
    flex: 1;
}

.vexqorapelinMotionJointGlow_h1_title {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(185, 140, 255, 0.5);
}

.vexqorapelinMotionJointGlow_hero_subtitle {
    font-size: 22px;
    color: #B98CFF;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.vexqorapelinMotionJointGlow_btn_primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #B98CFF;
    color: #000000;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(185, 140, 255, 0.4);
}

.vexqorapelinMotionJointGlow_btn_primary:hover {
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.8);
    transform: translateY(-2px);
}

/* EXPERT SLIDER */
.vexqorapelinMotionJointGlow_expert_section {
    padding: 100px 0;
    background-color: #0d0026;
}

.vexqorapelinMotionJointGlow_h2_centered {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #B98CFF;
}

.vexqorapelinMotionJointGlow_slider_container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
}

.vexqorapelinMotionJointGlow_slider_input {
    display: none;
}

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

.vexqorapelinMotionJointGlow_slide_item {
    width: 33.333%;
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(185, 140, 255, 0.2);
}

.vexqorapelinMotionJointGlow_blockquote {
    font-size: 24px;
    font-style: italic;
    color: #f0f0f0;
    margin-bottom: 25px;
}

.vexqorapelinMotionJointGlow_expert_name {
    font-weight: bold;
    color: #B98CFF;
}

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

.vexqorapelinMotionJointGlow_dot {
    width: 12px;
    height: 12px;
    background: #444;
    border-radius: 50%;
    cursor: pointer;
}

#vex_s1:checked ~ .vexqorapelinMotionJointGlow_slides_wrapper { transform: translateX(0%); }
#vex_s2:checked ~ .vexqorapelinMotionJointGlow_slides_wrapper { transform: translateX(-33.333%); }
#vex_s3:checked ~ .vexqorapelinMotionJointGlow_slides_wrapper { transform: translateX(-66.666%); }

#vex_s1:checked ~ .vexqorapelinMotionJointGlow_slider_controls label:nth-child(1),
#vex_s2:checked ~ .vexqorapelinMotionJointGlow_slider_controls label:nth-child(2),
#vex_s3:checked ~ .vexqorapelinMotionJointGlow_slider_controls label:nth-child(3) {
    background: #B98CFF;
    box-shadow: 0 0 10px #B98CFF;
}

/* PRICING */
.vexqorapelinMotionJointGlow_pricing_section {
    padding: 100px 0;
}

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

.vexqorapelinMotionJointGlow_price_card {
    background: rgba(20, 0, 40, 0.8);
    border: 1px solid #333;
    padding: 40px;
    border-radius: 20px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
}

.vexqorapelinMotionJointGlow_price_featured {
    border: 2px solid #B98CFF;
    transform: scale(1.05);
    background: rgba(40, 0, 80, 0.5);
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.15);
}

.vexqorapelinMotionJointGlow_price_title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #B98CFF;
}

.vexqorapelinMotionJointGlow_price_value {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
}

.vexqorapelinMotionJointGlow_price_features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.vexqorapelinMotionJointGlow_price_features li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    color: #bbb;
}

.vexqorapelinMotionJointGlow_btn_secondary {
    display: block;
    text-align: center;
    padding: 14px;
    border: 1px solid #B98CFF;
    color: #B98CFF;
    border-radius: 5px;
    font-weight: bold;
}

.vexqorapelinMotionJointGlow_btn_secondary:hover {
    background: #B98CFF;
    color: #000;
}

.vexqorapelinMotionJointGlow_quick_links {
    margin-top: 20px;
    text-align: center;
}

.vexqorapelinMotionJointGlow_quick_links a {
    font-size: 13px;
    color: #888;
    text-decoration: underline;
}

/* BENEFITS */
.vexqorapelinMotionJointGlow_benefits_section {
    padding: 100px 0;
    background: #080018;
}

.vexqorapelinMotionJointGlow_benefits_flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.vexqorapelinMotionJointGlow_benefits_content {
    flex: 1;
}

.vexqorapelinMotionJointGlow_h2_left {
    font-size: 40px;
    margin-bottom: 30px;
    color: #B98CFF;
}

.vexqorapelinMotionJointGlow_p_text {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

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

.vexqorapelinMotionJointGlow_benefits_list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #B98CFF;
    font-size: 14px;
}

.vexqorapelinMotionJointGlow_benefits_image {
    flex: 1;
}

.vexqorapelinMotionJointGlow_responsive_img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(185, 140, 255, 0.1);
}

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

.vexqorapelinMotionJointGlow_subtitle_centered {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    color: #aaa;
}

.vexqorapelinMotionJointGlow_audience_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.vexqorapelinMotionJointGlow_audience_card {
    background: #110022;
    padding: 40px;
    border-left: 4px solid #B98CFF;
    position: relative;
    overflow: hidden;
}

.vexqorapelinMotionJointGlow_card_number {
    font-size: 60px;
    font-weight: 900;
    color: rgba(185, 140, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
}

.vexqorapelinMotionJointGlow_discount_tag {
    display: inline-block;
    margin-top: 15px;
    background: rgba(185, 140, 255, 0.2);
    color: #B98CFF;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid #B98CFF;
}

/* FAQ */
.vexqorapelinMotionJointGlow_faq_section {
    padding: 100px 0;
    background: #0d0026;
}

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

.vexqorapelinMotionJointGlow_faq_item {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 8px;
}

.vexqorapelinMotionJointGlow_faq_question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #B98CFF;
    list-style: none;
}

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

.vexqorapelinMotionJointGlow_faq_answer {
    padding: 0 20px 20px;
    color: #ccc;
}

/* EXTRA TEXT BLOCKS */
.vexqorapelinMotionJointGlow_extra_text_block {
    padding: 80px 0;
}

.vexqorapelin_bg_alt {
    background-color: #0f002d;
}

.vexqorapelinMotionJointGlow_p_columns {
    column-count: 1;
    gap: 40px;
    margin-top: 20px;
}

.vexqorapelinMotionJointGlow_inline_list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.vexqorapelinMotionJointGlow_inline_list li {
    background: rgba(185, 140, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px dashed #B98CFF;
}

/* FORM SECTION */
.vexqorapelinMotionJointGlow_form_section {
    padding: 100px 0;
}

.vexqorapelinMotionJointGlow_form_card {
    max-width: 700px;
    margin: 0 auto;
    background: #1a0033;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #B98CFF;
    box-shadow: 0 0 50px rgba(185, 140, 255, 0.1);
}

.vexqorapelinMotionJointGlow_form_group {
    margin-bottom: 25px;
}

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

.vexqorapelinMotionJointGlow_input,
.vexqorapelinMotionJointGlow_textarea {
    width: 100%;
    padding: 15px;
    background: #0B0020;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.vexqorapelinMotionJointGlow_input:focus,
.vexqorapelinMotionJointGlow_textarea:focus {
    border-color: #B98CFF;
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.3);
}

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

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

.vexqorapelinMotionJointGlow_checkbox_label a {
    color: #B98CFF;
    text-decoration: underline;
}

.vexqorapelinMotionJointGlow_btn_submit {
    width: 100%;
    padding: 18px;
    background: #B98CFF;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.vexqorapelinMotionJointGlow_btn_submit:hover {
    background: #fff;
    box-shadow: 0 0 30px #B98CFF;
}

/* FOOTER */
.vexqorapelinMotionJointGlow_footer_section {
    padding: 60px 0;
    background: #050010;
    text-align: center;
    border-top: 1px solid #222;
}

.vexqorapelinMotionJointGlow_footer_copy {
    margin-bottom: 10px;
    font-weight: bold;
    color: #B98CFF;
}

.vexqorapelinMotionJointGlow_footer_mail {
    margin-bottom: 30px;
}

.vexqorapelinMotionJointGlow_footer_links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.vexqorapelinMotionJointGlow_footer_links a {
    font-size: 12px;
    color: #666;
}

.vexqorapelinMotionJointGlow_footer_links a:hover {
    color: #B98CFF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .vexqorapelinMotionJointGlow_hero_grid {
        flex-direction: column;
    }
    .vexqorapelinMotionJointGlow_benefits_flex {
        flex-direction: column-reverse;
    }
    .vexqorapelinMotionJointGlow_h1_title {
        font-size: 38px;
    }
    .vexqorapelinMotionJointGlow_price_card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .vexqorapelinMotionJointGlow_navigation {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #0B0020;
        transition: 0.5s;
        border-bottom: 1px solid #B98CFF;
    }
    .vexqorapelinMotionJointGlow_nav_list {
        flex-direction: column;
        padding: 40px 20px;
        align-items: center;
    }
    .vexqorapelinMotionJointGlow_burger_icon {
        display: flex;
    }
    #vexqorapelinMotionJointGlow_mobile_toggle:checked ~ .vexqorapelinMotionJointGlow_navigation {
        left: 0;
    }
    .vexqorapelinMotionJointGlow_form_card {
        padding: 30px;
    }
}

/* ADDITIONAL CLASSES FOR VOLUME */
.vexqorapelinMotionJointGlow_spacer_small { height: 20px; }
.vexqorapelinMotionJointGlow_spacer_med { height: 50px; }
.vexqorapelinMotionJointGlow_spacer_large { height: 100px; }

.vexqorapelinMotionJointGlow_glitch_line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #B98CFF, transparent);
    margin: 40px 0;
    opacity: 0.3;
}