/* VARIABLES & RESET */
:root {
    --vscb-bg-dark: #0B0020;
    --vscb-bg-alt: #150035;
    --vscb-primary: #B98CFF;
    --vscb-primary-glow: #d4b8ff;
    --vscb-text: #F0F0F0;
    --vscb-text-muted: #B0A0C0;
    --vscb-accent: #6E00FF;
    --vscb-uv-line: #9D50FF;
    --vscb-transition: all 0.3s ease;
    --vscb-container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.velanomerSoftCardioBloom_body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--vscb-bg-dark);
    color: var(--vscb-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.velanomerSoftCardioBloom_container {
    max-width: var(--vscb-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
.velanomerSoftCardioBloom_h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 20px rgba(185, 140, 255, 0.4);
}

.velanomerSoftCardioBloom_h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.velanomerSoftCardioBloom_h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--vscb-primary);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--vscb-primary);
}

.velanomerSoftCardioBloom_h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--vscb-primary);
}

.velanomerSoftCardioBloom_subtitle {
    font-size: 1.4rem;
    color: var(--vscb-text-muted);
    margin-bottom: 25px;
}

.velanomerSoftCardioBloom_p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* HEADER & NAV */
.velanomerSoftCardioBloom_header {
    background: rgba(11, 0, 32, 0.95);
    border-bottom: 1px solid var(--vscb-uv-line);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(157, 80, 255, 0.2);
}

.velanomerSoftCardioBloom_flex_between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.velanomerSoftCardioBloom_logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--vscb-primary);
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--vscb-primary);
}

.velanomerSoftCardioBloom_nav_list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.velanomerSoftCardioBloom_nav_link {
    color: var(--vscb-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--vscb-transition);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.velanomerSoftCardioBloom_nav_link:hover {
    color: var(--vscb-primary);
    text-shadow: 0 0 8px var(--vscb-primary);
}

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

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

.velanomerSoftCardioBloom_burger span {
    width: 25px;
    height: 3px;
    background: var(--vscb-primary);
    border-radius: 2px;
    transition: var(--vscb-transition);
}

/* HERO SECTION */
.velanomerSoftCardioBloom_hero {
    padding: 100px 0 80px;
    position: relative;
}

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

.velanomerSoftCardioBloom_quick_links a {
    background: rgba(185, 140, 255, 0.1);
    color: var(--vscb-primary);
    padding: 8px 16px;
    border: 1px solid var(--vscb-primary);
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--vscb-transition);
}

.velanomerSoftCardioBloom_quick_links a:hover {
    background: var(--vscb-primary);
    color: #000;
    box-shadow: 0 0 15px var(--vscb-primary);
}

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

.velanomerSoftCardioBloom_hero_img, .velanomerSoftCardioBloom_hero_content {
    flex: 1 1 450px;
}

.velanomerSoftCardioBloom_img_responsive {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(185, 140, 255, 0.2);
    object-fit: cover;
}

/* BUTTONS */
.velanomerSoftCardioBloom_btn_primary {
    display: inline-block;
    padding: 16px 35px;
    background: var(--vscb-primary);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--vscb-transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.velanomerSoftCardioBloom_btn_primary:hover {
    background: #fff;
    box-shadow: 0 0 25px var(--vscb-primary);
    transform: translateY(-2px);
}

.velanomerSoftCardioBloom_btn_outline {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: var(--vscb-primary);
    border: 2px solid var(--vscb-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--vscb-transition);
    text-align: center;
}

.velanomerSoftCardioBloom_btn_outline:hover {
    background: var(--vscb-primary);
    color: #000;
    box-shadow: 0 0 15px var(--vscb-primary);
}

/* REVIEWS */
.velanomerSoftCardioBloom_reviews {
    padding: 80px 0;
    background: var(--vscb-bg-alt);
}

.velanomerSoftCardioBloom_review_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.velanomerSoftCardioBloom_review_card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--vscb-primary);
    transition: var(--vscb-transition);
}

.velanomerSoftCardioBloom_review_card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.velanomerSoftCardioBloom_review_text {
    font-style: italic;
    margin-bottom: 20px;
    color: #ddd;
}

.velanomerSoftCardioBloom_review_author {
    font-weight: bold;
    color: var(--vscb-primary);
}

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

.velanomerSoftCardioBloom_price_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.velanomerSoftCardioBloom_price_card {
    background: #1a0040;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(185, 140, 255, 0.2);
    transition: var(--vscb-transition);
}

.velanomerSoftCardioBloom_price_card:hover {
    border-color: var(--vscb-primary);
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.1);
}

.velanomerSoftCardioBloom_featured {
    transform: scale(1.05);
    border: 2px solid var(--vscb-primary);
    background: #250055;
}

.velanomerSoftCardioBloom_discount {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff007f;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.velanomerSoftCardioBloom_amount {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 20px 0;
    color: #fff;
}

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

.velanomerSoftCardioBloom_price_list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--vscb-text-muted);
    font-size: 0.95rem;
}

.velanomerSoftCardioBloom_price_list li::before {
    content: '✦';
    color: var(--vscb-primary);
    margin-right: 10px;
}

/* AUDIENCE LINES */
.velanomerSoftCardioBloom_audience {
    padding: 80px 0;
    background: var(--vscb-bg-alt);
}

.velanomerSoftCardioBloom_audience_lines {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.velanomerSoftCardioBloom_line_item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0,0,0,0.2);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid rgba(110, 0, 255, 0.3);
}

.velanomerSoftCardioBloom_line_dec {
    width: 40px;
    height: 2px;
    background: var(--vscb-primary);
    position: relative;
}

.velanomerSoftCardioBloom_line_dec::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    background: var(--vscb-primary);
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--vscb-primary);
}

/* EXPERT WORD */
.velanomerSoftCardioBloom_expert {
    padding: 100px 0;
}

.velanomerSoftCardioBloom_quote_box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.velanomerSoftCardioBloom_blockquote {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
}

.velanomerSoftCardioBloom_blockquote::before {
    content: '“';
    font-size: 5rem;
    color: var(--vscb-primary);
    position: absolute;
    left: -10px;
    top: -20px;
    opacity: 0.5;
}

.velanomerSoftCardioBloom_expert_name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--vscb-primary);
    margin-bottom: 40px;
}

/* DETAILS & SUMMARY */
.velanomerSoftCardioBloom_details {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--vscb-uv-line);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.velanomerSoftCardioBloom_summary {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--vscb-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.velanomerSoftCardioBloom_summary::after {
    content: '+';
    font-size: 1.5rem;
}

.velanomerSoftCardioBloom_details[open] .velanomerSoftCardioBloom_summary::after {
    content: '−';
}

.velanomerSoftCardioBloom_ul, .velanomerSoftCardioBloom_ol {
    padding: 20px 40px;
    color: #ccc;
}

.velanomerSoftCardioBloom_faq_answer {
    padding: 20px 25px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* BENEFITS SECTION */
.velanomerSoftCardioBloom_benefits {
    padding: 100px 0;
}

.velanomerSoftCardioBloom_check_list {
    list-style: none;
    margin-top: 30px;
}

.velanomerSoftCardioBloom_check_list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.velanomerSoftCardioBloom_check_list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffaa;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.velanomerSoftCardioBloom_alt_bg {
    background: #0f002d;
}

/* FORM SECTION */
.velanomerSoftCardioBloom_form_sec {
    padding: 100px 0;
    background: var(--vscb-bg-alt);
}

.velanomerSoftCardioBloom_form_wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #1a0040;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--vscb-uv-line);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.velanomerSoftCardioBloom_form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.velanomerSoftCardioBloom_input_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.velanomerSoftCardioBloom_input_group label {
    font-size: 0.9rem;
    color: var(--vscb-text-muted);
}

.velanomerSoftCardioBloom_input_group input, 
.velanomerSoftCardioBloom_input_group textarea {
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(185, 140, 255, 0.3);
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
    transition: var(--vscb-transition);
}

.velanomerSoftCardioBloom_input_group input:focus, 
.velanomerSoftCardioBloom_input_group textarea:focus {
    outline: none;
    border-color: var(--vscb-primary);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.2);
}

.velanomerSoftCardioBloom_checkbox_group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--vscb-text-muted);
}

.velanomerSoftCardioBloom_checkbox_group a {
    color: var(--vscb-primary);
}

/* FOOTER */
.velanomerSoftCardioBloom_footer {
    padding: 60px 0 30px;
    background: #050010;
    border-top: 1px solid rgba(157, 80, 255, 0.2);
}

.velanomerSoftCardioBloom_footer_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.velanomerSoftCardioBloom_footer_contact p {
    margin-bottom: 5px;
    color: var(--vscb-text-muted);
}

.velanomerSoftCardioBloom_footer_contact a {
    color: var(--vscb-primary);
    text-decoration: none;
}

.velanomerSoftCardioBloom_footer_bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

.velanomerSoftCardioBloom_footer_links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.velanomerSoftCardioBloom_footer_links a {
    color: #888;
    text-decoration: none;
    transition: var(--vscb-transition);
}

.velanomerSoftCardioBloom_footer_links a:hover {
    color: var(--vscb-primary);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .velanomerSoftCardioBloom_h1 { font-size: 2.8rem; }
    .velanomerSoftCardioBloom_grid_2 { flex-direction: column; text-align: center; }
    .velanomerSoftCardioBloom_hero_img, .velanomerSoftCardioBloom_hero_content { flex: 1 1 100%; }
    .velanomerSoftCardioBloom_price_card.velanomerSoftCardioBloom_featured { transform: scale(1); }
    .velanomerSoftCardioBloom_check_list li { text-align: left; }
}

@media (max-width: 768px) {
    .velanomerSoftCardioBloom_burger { display: flex; }
    .velanomerSoftCardioBloom_nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--vscb-bg-dark);
        display: none;
        padding: 20px;
        border-bottom: 2px solid var(--vscb-primary);
    }
    .velanomerSoftCardioBloom_nav_list { flex-direction: column; align-items: center; }
    #vscb_menu_toggle:checked ~ .velanomerSoftCardioBloom_nav { display: block; }
    
    .velanomerSoftCardioBloom_form_wrapper { padding: 30px 20px; }
    .velanomerSoftCardioBloom_footer_top { flex-direction: column; text-align: center; align-items: center; }
}