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

html {
    scroll-behavior: smooth;
}

body.varnexoChileSoftCardio_body_main_wrap {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #050607;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* NEON THEME VARIABLES */
:root {
    --neon-cyan: #5AF3FF;
    --obsidian: #050607;
    --obsidian-alt: #0d0f12;
    --neon-glow: 0 0 10px rgba(90, 243, 255, 0.5);
    --neon-glow-strong: 0 0 20px rgba(90, 243, 255, 0.8);
}

/* HEADER & NAV */
.varnexoChileSoftCardio_header_sticky_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 6, 7, 0.9);
    border-bottom: 2px solid var(--neon-cyan);
    backdrop-filter: blur(10px);
}

.varnexoChileSoftCardio_header_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.varnexoChileSoftCardio_header_logo_text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--neon-glow);
}

.varnexoChileSoftCardio_nav_list_items {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.varnexoChileSoftCardio_nav_link_item {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.varnexoChileSoftCardio_nav_link_item:hover {
    color: var(--neon-cyan);
    text-shadow: var(--neon-glow);
}

/* BURGER MENU (No JS) */
.varnexoChileSoftCardio_burger_checkbox {
    display: none;
}

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

.varnexoChileSoftCardio_burger_label span {
    width: 25px;
    height: 3px;
    background-color: var(--neon-cyan);
    transition: 0.3s;
}

/* HERO SECTION */
.varnexoChileSoftCardio_hero_block_full {
    padding: 120px 2rem 60px;
    background: radial-gradient(circle at top right, rgba(90, 243, 255, 0.05), transparent);
    position: relative;
}

.varnexoChileSoftCardio_hero_block_full::after {
    content: "";
    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: 50px 50px;
    z-index: -1;
}

.varnexoChileSoftCardio_hero_container_grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.varnexoChileSoftCardio_hero_gallery_side {
    flex: 1;
}

.varnexoChileSoftCardio_hero_text_side {
    flex: 1;
}

.varnexoChileSoftCardio_hero_img_main {
    width: 100%;
    height: auto;
    border: 2px solid var(--neon-cyan);
    box-shadow: var(--neon-glow);
    border-radius: 8px;
    object-fit: cover;
}

.varnexoChileSoftCardio_hero_mini_gallery {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.varnexoChileSoftCardio_hero_img_thumb {
    width: calc(33.333% - 7px);
    border: 1px solid rgba(90, 243, 255, 0.3);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.varnexoChileSoftCardio_hero_img_thumb:hover {
    transform: scale(1.05);
    border-color: var(--neon-cyan);
}

.varnexoChileSoftCardio_hero_main_title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
}

.varnexoChileSoftCardio_hero_main_title::before {
    content: "||";
    color: var(--neon-cyan);
    margin-right: 15px;
    text-shadow: var(--neon-glow);
}

.varnexoChileSoftCardio_hero_subtitle {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    font-weight: 300;
}

.varnexoChileSoftCardio_hero_description_p {
    margin-bottom: 1.2rem;
    color: #cccccc;
    font-size: 1.1rem;
}

/* BUTTONS */
.varnexoChileSoftCardio_btn_primary_neon {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--neon-cyan);
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.varnexoChileSoftCardio_btn_primary_neon:hover {
    box-shadow: var(--neon-glow-strong);
    background-color: #ffffff;
    filter: blur(0.2px);
}

.varnexoChileSoftCardio_btn_secondary_outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid var(--neon-cyan);
    border-radius: 4px;
    transition: 0.3s;
    text-align: center;
}

.varnexoChileSoftCardio_btn_secondary_outline:hover {
    background-color: rgba(90, 243, 255, 0.1);
    box-shadow: var(--neon-glow);
}

/* SECTION TITLES */
.varnexoChileSoftCardio_section_title_neon {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 15px;
}

.varnexoChileSoftCardio_section_title_neon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--neon-cyan);
    box-shadow: var(--neon-glow);
}

/* REVIEWS SLIDER (No JS) */
.varnexoChileSoftCardio_reviews_section_wrap {
    padding: 100px 2rem;
    background-color: var(--obsidian-alt);
}

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

.varnexoChileSoftCardio_slide_radio {
    display: none;
}

.varnexoChileSoftCardio_slides_wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.varnexoChileSoftCardio_individual_slide {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(90, 243, 255, 0.1);
    border-radius: 12px;
}

.varnexoChileSoftCardio_review_text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
}

.varnexoChileSoftCardio_review_author {
    color: var(--neon-cyan);
    font-weight: 700;
}

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

.varnexoChileSoftCardio_control_dot {
    width: 15px;
    height: 15px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

#varnexo_slide_1:checked ~ .varnexoChileSoftCardio_slides_wrapper { transform: translateX(0); }
#varnexo_slide_2:checked ~ .varnexoChileSoftCardio_slides_wrapper { transform: translateX(-100%); }
#varnexo_slide_3:checked ~ .varnexoChileSoftCardio_slides_wrapper { transform: translateX(-200%); }

#varnexo_slide_1:checked ~ .varnexoChileSoftCardio_slider_controls label[for="varnexo_slide_1"],
#varnexo_slide_2:checked ~ .varnexoChileSoftCardio_slider_controls label[for="varnexo_slide_2"],
#varnexo_slide_3:checked ~ .varnexoChileSoftCardio_slider_controls label[for="varnexo_slide_3"] {
    background-color: var(--neon-cyan);
    box-shadow: var(--neon-glow);
}

/* PRICING */
.varnexoChileSoftCardio_pricing_section_block {
    padding: 100px 2rem;
}

.varnexoChileSoftCardio_pricing_grid_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.varnexoChileSoftCardio_price_card_item {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #0d0f12;
    padding: 3rem 2rem;
    border: 1px solid rgba(90, 243, 255, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.varnexoChileSoftCardio_price_card_item:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(90, 243, 255, 0.1);
}

.varnexoChileSoftCardio_price_card_item.featured {
    border: 2px solid var(--neon-cyan);
    box-shadow: var(--neon-glow);
    background: rgba(90, 243, 255, 0.02);
}

.varnexoChileSoftCardio_price_title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.varnexoChileSoftCardio_price_value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.varnexoChileSoftCardio_price_value span {
    font-size: 1rem;
    font-weight: 400;
    color: #aaa;
}

.varnexoChileSoftCardio_price_features_list {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.varnexoChileSoftCardio_price_features_list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.varnexoChileSoftCardio_price_features_list li::before {
    content: "✓";
    color: var(--neon-cyan);
    margin-right: 10px;
}

.varnexoChileSoftCardio_price_quick_links {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.varnexoChileSoftCardio_price_quick_links a {
    color: #888;
    text-decoration: none;
}

.varnexoChileSoftCardio_price_quick_links a:hover {
    color: var(--neon-cyan);
}

/* EXPERT QUOTE */
.varnexoChileSoftCardio_expert_quote_section {
    padding: 100px 2rem;
    background: linear-gradient(to right, #050607, #0d0f12, #050607);
}

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

.varnexoChileSoftCardio_main_quote_text {
    font-size: 2rem;
    line-height: 1.4;
    color: #eee;
    margin-bottom: 3rem;
    position: relative;
}

.varnexoChileSoftCardio_main_quote_text::before {
    content: '"';
    font-size: 5rem;
    color: var(--neon-cyan);
    position: absolute;
    top: -40px;
    left: -20px;
    opacity: 0.3;
}

.varnexoChileSoftCardio_quote_author_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.varnexoChileSoftCardio_quote_avatar {
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
}

.varnexoChileSoftCardio_quote_author_info {
    text-align: left;
}

.varnexoChileSoftCardio_quote_author_info strong {
    display: block;
    font-size: 1.2rem;
    color: var(--neon-cyan);
}

/* AUDIENCE SECTION */
.varnexoChileSoftCardio_audience_section_full {
    padding: 100px 2rem;
}

.varnexoChileSoftCardio_audience_grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.varnexoChileSoftCardio_audience_text_box {
    flex: 1.2;
}

.varnexoChileSoftCardio_audience_image_box {
    flex: 0.8;
    position: relative;
}

.varnexoChileSoftCardio_audience_photo {
    width: 100%;
    border-radius: 12px;
    border-left: 4px solid var(--neon-cyan);
}

.varnexoChileSoftCardio_audience_service_card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--neon-cyan);
    color: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
    max-width: 250px;
}

.varnexoChileSoftCardio_audience_list_styled {
    list-style: none;
    margin-top: 2rem;
}

.varnexoChileSoftCardio_audience_list_styled li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(90, 243, 255, 0.1);
}

.varnexoChileSoftCardio_audience_list_styled li::before {
    content: ">>";
    color: var(--neon-cyan);
    margin-right: 15px;
    font-weight: bold;
}

/* BENEFITS MIRROR */
.varnexoChileSoftCardio_benefits_mirror_section {
    padding: 100px 2rem;
    background-color: var(--obsidian-alt);
}

.varnexoChileSoftCardio_benefits_container_flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-direction: row-reverse;
    align-items: center;
}

.varnexoChileSoftCardio_benefits_image_part {
    flex: 1;
}

.varnexoChileSoftCardio_benefits_text_part {
    flex: 1;
}

.varnexoChileSoftCardio_benefit_img_visual {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(0.5) contrast(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.varnexoChileSoftCardio_benefit_points_list {
    list-style: none;
    margin-top: 2rem;
}

.varnexoChileSoftCardio_benefit_points_list li {
    margin-bottom: 1.5rem;
}

.varnexoChileSoftCardio_benefit_points_list strong {
    color: var(--neon-cyan);
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* EXTRA CONTENT BLOCKS */
.varnexoChileSoftCardio_extra_text_block {
    padding: 80px 2rem;
}

.varnexoChileSoftCardio_extra_text_block_alt {
    padding: 80px 2rem;
    background: rgba(90, 243, 255, 0.02);
}

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

.varnexoChileSoftCardio_content_limiter h2 {
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.varnexoChileSoftCardio_content_limiter p {
    margin-bottom: 1.5rem;
    color: #bbbbbb;
    font-size: 1.1rem;
}

/* FAQ */
.varnexoChileSoftCardio_faq_section_wrap {
    padding: 100px 2rem;
}

.varnexoChileSoftCardio_faq_item {
    background: #0d0f12;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(90, 243, 255, 0.1);
}

.varnexoChileSoftCardio_faq_question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--neon-cyan);
    list-style: none;
    display: flex;
    justify-content: space-between;
}

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

.varnexoChileSoftCardio_faq_question::after {
    content: "+";
    font-size: 1.5rem;
}

.varnexoChileSoftCardio_faq_item[open] .varnexoChileSoftCardio_faq_question::after {
    content: "-";
}

.varnexoChileSoftCardio_faq_answer {
    padding: 0 1.5rem 1.5rem;
    color: #ccc;
}

/* CONTACT FORM */
.varnexoChileSoftCardio_contact_form_section {
    padding: 100px 2rem;
    background: radial-gradient(circle at bottom left, rgba(90, 243, 255, 0.05), transparent);
}

.varnexoChileSoftCardio_form_container_main {
    max-width: 700px;
    margin: 0 auto;
    background: #0d0f12;
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(90, 243, 255, 0.2);
}

.varnexoChileSoftCardio_form_group {
    margin-bottom: 1.5rem;
}

.varnexoChileSoftCardio_form_label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
    font-weight: 600;
}

.varnexoChileSoftCardio_form_input,
.varnexoChileSoftCardio_form_textarea {
    width: 100%;
    background: #050607;
    border: 1px solid #333;
    padding: 1rem;
    color: #fff;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.varnexoChileSoftCardio_form_input:focus,
.varnexoChileSoftCardio_form_textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 5px var(--neon-cyan);
}

.varnexoChileSoftCardio_form_checkbox_wrap {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.varnexoChileSoftCardio_check_label {
    font-size: 0.9rem;
}

.varnexoChileSoftCardio_check_label a {
    color: var(--neon-cyan);
}

.varnexoChileSoftCardio_btn_submit_neon {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--neon-cyan);
    color: #000;
    font-weight: 800;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
}

.varnexoChileSoftCardio_btn_submit_neon:hover {
    box-shadow: var(--neon-glow-strong);
    background-color: #ffffff;
}

/* FOOTER */
.varnexoChileSoftCardio_footer_main {
    padding: 60px 2rem;
    background: #050607;
    border-top: 1px solid rgba(90, 243, 255, 0.2);
}

.varnexoChileSoftCardio_footer_container {
    max-width: 1200px;
    margin: 0 auto;
}

.varnexoChileSoftCardio_footer_top_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.varnexoChileSoftCardio_footer_brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
}

.varnexoChileSoftCardio_footer_contact a {
    color: #fff;
    text-decoration: none;
}

.varnexoChileSoftCardio_footer_bottom_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.varnexoChileSoftCardio_footer_links_nav a {
    color: #777;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.varnexoChileSoftCardio_footer_links_nav a:hover {
    color: var(--neon-cyan);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .varnexoChileSoftCardio_hero_container_grid,
    .varnexoChileSoftCardio_audience_grid,
    .varnexoChileSoftCardio_benefits_container_flex {
        flex-direction: column;
        gap: 3rem;
    }
    
    .varnexoChileSoftCardio_hero_main_title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .varnexoChileSoftCardio_nav_menu_wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050607;
        padding: 2rem;
        border-bottom: 2px solid var(--neon-cyan);
    }

    .varnexoChileSoftCardio_nav_list_items {
        flex-direction: column;
        text-align: center;
    }

    .varnexoChileSoftCardio_burger_label {
        display: flex;
    }

    .varnexoChileSoftCardio_burger_checkbox:checked ~ .varnexoChileSoftCardio_nav_menu_wrapper {
        display: block;
    }

    .varnexoChileSoftCardio_pricing_grid_container {
        flex-direction: column;
        align-items: center;
    }
    
    .varnexoChileSoftCardio_form_container_main {
        padding: 2rem;
    }

    .varnexoChileSoftCardio_section_title_neon {
        font-size: 1.8rem;
    }
}