/* Variables and Reset */
:root {
    --bg-color: #120014;
    --accent-color: #FF4FD8;
    --text-main: #f0f0f0;
    --text-muted: #b0b0b0;
    --lava-glow: 0 0 20px rgba(255, 79, 216, 0.4);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body.smthqrva8112_body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
.smthqrva8112_header {
    background: rgba(18, 0, 20, 0.95);
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 79, 216, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.smthqrva8112_logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.smthqrva8112_nav_toggle {
    display: none;
}

.smthqrva8112_burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.smthqrva8112_burger span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    margin: 2px 0;
    transition: var(--transition);
}

.smthqrva8112_nav_list {
    display: flex;
    list-style: none;
}

.smthqrva8112_nav_link {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

.smthqrva8112_nav_link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

/* Hero Section */
.smthqrva8112_hero {
    padding: 80px 0;
}

.smthqrva8112_hero_grid {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.smthqrva8112_hero_img, .smthqrva8112_hero_content {
    flex: 1;
}

.smthqrva8112_img_main {
    width: 100%;
    border-radius: 15px;
    border: 3px solid var(--accent-color);
    box-shadow: var(--lava-glow);
    object-fit: cover;
}

.smthqrva8112_h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.smthqrva8112_subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.smthqrva8112_text {
    margin-bottom: 20px;
    font-size: 17px;
}

.smthqrva8112_btn_primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    box-shadow: 0 0 15px rgba(255, 79, 216, 0.5);
    margin-top: 10px;
}

.smthqrva8112_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--accent-color);
}

/* Feature Cards */
.smthqrva8112_hero_features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.smthqrva8112_feature_card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-bottom: 3px solid var(--accent-color);
    transition: var(--transition);
}

.smthqrva8112_feature_card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.smthqrva8112_feature_img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Expert Section */
.smthqrva8112_expert {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #200025 100%);
}

.smthqrva8112_expert_box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-left: 4px solid var(--accent-color);
    padding: 40px;
    background: rgba(255, 79, 216, 0.03);
}

.smthqrva8112_quote {
    font-style: italic;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.smthqrva8112_expert_name {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 18px;
}

/* Who Needs Section */
.smthqrva8112_who {
    padding: 80px 0;
}

.smthqrva8112_h2 {
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--accent-color);
}

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

.smthqrva8112_check_list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 60px;
}

.smthqrva8112_check_list li::before {
    content: '✔';
    color: var(--accent-color);
    margin-right: 15px;
    font-weight: bold;
}

/* Products Grid */
.smthqrva8112_products_grid {
    display: flex;
    gap: 40px;
}

.smthqrva8112_product_item {
    flex: 1;
    display: flex;
    background: #1a011d;
    border: 1px solid rgba(255, 79, 216, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.smthqrva8112_prod_img {
    width: 200px;
    object-fit: cover;
}

.smthqrva8112_prod_info {
    padding: 30px;
}

.smthqrva8112_price {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    margin-top: 15px;
}

/* Benefits Section */
.smthqrva8112_benefits {
    padding: 80px 0;
    background: #0d000f;
}

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

.smthqrva8112_benefits_text_side, .smthqrva8112_benefits_img_side {
    flex: 1;
}

.smthqrva8112_img_rounded {
    width: 100%;
    border-radius: 100px 10px 100px 10px;
    border: 4px solid var(--accent-color);
}

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

.smthqrva8112_simple_list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 79, 216, 0.1);
}

/* Pricing Cards */
.smthqrva8112_pricing_grid {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.smthqrva8112_price_card {
    flex: 1;
    min-width: 250px;
    background: #1a011d;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 79, 216, 0.2);
    text-align: center;
    transition: var(--transition);
}

.smthqrva8112_price_featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--lava-glow);
}

.smthqrva8112_package_title {
    font-size: 22px;
    margin-bottom: 20px;
}

.smthqrva8112_package_price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 30px;
}

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

.smthqrva8112_package_features li {
    margin-bottom: 12px;
    font-size: 14px;
}

.smthqrva8112_package_features li::before {
    content: '•';
    color: var(--accent-color);
    margin-right: 8px;
}

.smthqrva8112_btn_outline {
    display: block;
    padding: 12px 20px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
}

.smthqrva8112_btn_outline:hover {
    background: var(--accent-color);
    color: white;
}

/* Text Blocks */
.smthqrva8112_text_block {
    padding: 100px 0;
}

.smthqrva8112_bg_alt {
    background: rgba(255, 79, 216, 0.02);
}

.smthqrva8112_tips_box, .smthqrva8112_accent_area {
    margin-top: 40px;
    padding: 30px;
    background: #1a011d;
    border-radius: 10px;
    border: 1px dashed var(--accent-color);
}

/* FAQ Section */
.smthqrva8112_faq {
    padding: 80px 0;
}

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

.smthqrva8112_details {
    background: #1a011d;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border-left: 3px solid var(--accent-color);
}

.smthqrva8112_summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
}

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

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

/* Form Section */
.smthqrva8112_form_section {
    padding: 100px 0;
    background: linear-gradient(0deg, var(--bg-color) 0%, #1e0024 100%);
}

.smthqrva8112_form {
    max-width: 600px;
    margin: 40px auto 0;
    background: #1a011d;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.smthqrva8112_input_group {
    margin-bottom: 25px;
}

.smthqrva8112_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.smthqrva8112_input, .smthqrva8112_textarea {
    width: 100%;
    background: #0d000f;
    border: 1px solid rgba(255, 79, 216, 0.3);
    padding: 15px;
    color: white;
    border-radius: 8px;
}

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

.smthqrva8112_checkbox_group {
    margin-bottom: 30px;
    font-size: 14px;
}

.smthqrva8112_checkbox_group a {
    color: var(--accent-color);
}

.smthqrva8112_btn_submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.smthqrva8112_btn_submit:hover {
    box-shadow: 0 0 20px var(--accent-color);
}

/* Footer */
.smthqrva8112_footer {
    padding: 60px 0;
    background: #0a000b;
    border-top: 1px solid rgba(255, 79, 216, 0.2);
    text-align: center;
}

.smthqrva8112_footer_info p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.smthqrva8112_footer_info a {
    color: var(--accent-color);
    text-decoration: none;
}

.smthqrva8112_footer_links {
    margin-top: 30px;
}

.smthqrva8112_footer_links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
    font-size: 13px;
    transition: var(--transition);
}

.smthqrva8112_footer_links a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 992px) {
    .smthqrva8112_hero_grid, .smthqrva8112_benefits_grid {
        flex-direction: column;
    }
    .smthqrva8112_hero_img, .smthqrva8112_benefits_img_side {
        width: 100%;
    }
    .smthqrva8112_products_grid {
        flex-direction: column;
    }
    .smthqrva8112_hero_features {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .smthqrva8112_burger {
        display: flex;
    }
    .smthqrva8112_nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-color);
        transition: 0.4s;
        z-index: 999;
    }
    .smthqrva8112_nav_list {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .smthqrva8112_nav_link {
        margin: 15px 0;
        font-size: 20px;
    }
    .smthqrva8112_nav_toggle:checked ~ .smthqrva8112_nav {
        left: 0;
    }
    .smthqrva8112_h1 {
        font-size: 32px;
    }
    .smthqrva8112_check_list {
        grid-template-columns: 1fr;
    }
    .smthqrva8112_pricing_grid {
        justify-content: center;
    }
    .smthqrva8112_price_featured {
        transform: scale(1);
    }
    .smthqrva8112_prod_item {
        flex-direction: column;
    }
    .smthqrva8112_prod_img {
        width: 100%;
        height: 200px;
    }
}