/* 
   Project: Femlorazik — Плавний баланс
   Style: Night Indigo (#050A18)
   Author: Full-stack Developer
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.femlorazikSoftPulseGarden_body_wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #050A18;
    color: #E0E6ED;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* Typography */
.femlorazikSoftPulseGarden_h1_main {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 800;
}

.femlorazikSoftPulseGarden_h2_title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 50px;
    color: #6AA9FF;
    position: relative;
    padding-bottom: 15px;
}

.femlorazikSoftPulseGarden_h2_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #6AA9FF;
    box-shadow: 0 0 10px #6AA9FF;
}

.femlorazikSoftPulseGarden_h3_small {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.femlorazikSoftPulseGarden_h3_big {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #6AA9FF;
}

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

.femlorazikSoftPulseGarden_p_large {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #D1D9E6;
}

/* Header & Nav */
.femlorazikSoftPulseGarden_header_main {
    background: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid rgba(106, 169, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(106, 169, 255, 0.1);
}

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

.femlorazikSoftPulseGarden_logo_text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #6AA9FF;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.5);
}

.femlorazikSoftPulseGarden_nav_list {
    display: flex;
    gap: 30px;
}

.femlorazikSoftPulseGarden_nav_link {
    color: #E0E6ED;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.femlorazikSoftPulseGarden_nav_link:hover {
    color: #6AA9FF;
}

/* Mobile Menu (Burger) */
.femlorazikSoftPulseGarden_toggle_input {
    display: none;
}

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

.femlorazikSoftPulseGarden_burger_label span {
    width: 30px;
    height: 3px;
    background-color: #6AA9FF;
    border-radius: 2px;
}

/* Hero Section */
.femlorazikSoftPulseGarden_section_hero {
    padding: 100px 0;
    border: 3px solid rgba(255, 50, 50, 0.3); /* Red outline variation requested */
    margin: 20px;
    background: radial-gradient(circle at top right, rgba(106, 169, 255, 0.05), transparent);
}

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

.femlorazikSoftPulseGarden_hero_col_left,
.femlorazikSoftPulseGarden_hero_col_right {
    flex: 1;
}

.femlorazikSoftPulseGarden_hero_image {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    object-fit: cover;
}

.femlorazikSoftPulseGarden_subtitle_hero {
    font-size: 1.4rem;
    color: #6AA9FF;
    margin-bottom: 25px;
    font-style: italic;
}

.femlorazikSoftPulseGarden_btn_primary {
    display: inline-block;
    background-color: #6AA9FF;
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #6AA9FF;
}

.femlorazikSoftPulseGarden_btn_primary:hover {
    background: transparent;
    box-shadow: 0 0 20px #6AA9FF;
    color: #6AA9FF;
}

.femlorazikSoftPulseGarden_btn_secondary {
    display: inline-block;
    background: transparent;
    color: #6AA9FF;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid #6AA9FF;
    text-align: center;
}

.femlorazikSoftPulseGarden_btn_secondary:hover {
    background: rgba(106, 169, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(106, 169, 255, 0.5);
}

/* Target Section */
.femlorazikSoftPulseGarden_section_target {
    padding: 100px 0;
    background-color: #070D1F;
}

.femlorazikSoftPulseGarden_intro_text {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 60px;
    font-size: 1.2rem;
}

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

.femlorazikSoftPulseGarden_target_item {
    background: #0A142D;
    padding: 40px;
    border-radius: 15px;
    border-bottom: 4px solid #6AA9FF;
    transition: transform 0.3s ease;
}

.femlorazikSoftPulseGarden_target_item:hover {
    transform: translateY(-10px);
}

.femlorazikSoftPulseGarden_icon_wrapper {
    font-size: 2.5rem;
    color: #6AA9FF;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(106, 169, 255, 0.6);
}

/* Pricing Section */
.femlorazikSoftPulseGarden_section_pricing {
    padding: 100px 0;
}

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

.femlorazikSoftPulseGarden_price_card {
    background: #0A142D;
    border: 1px solid rgba(106, 169, 255, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.femlorazikSoftPulseGarden_card_featured {
    border: 2px solid #6AA9FF;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(106, 169, 255, 0.2);
}

.femlorazikSoftPulseGarden_card_header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.femlorazikSoftPulseGarden_price_tag {
    font-size: 1.6rem;
    font-weight: 800;
    color: #6AA9FF;
    margin-bottom: 30px;
}

.femlorazikSoftPulseGarden_discount {
    background: #FF3232;
    color: #FFF;
    font-size: 0.9rem;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 10px;
}

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

.femlorazikSoftPulseGarden_price_list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.femlorazikSoftPulseGarden_price_list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

/* Reviews Slider (No JS) */
.femlorazikSoftPulseGarden_section_reviews {
    padding: 100px 0;
    background: #070D1F;
}

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

.femlorazikSoftPulseGarden_slide_input {
    display: none;
}

.femlorazikSoftPulseGarden_slides_wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 300%;
}

.femlorazikSoftPulseGarden_slide_item {
    width: 100%;
    padding: 20px;
}

.femlorazikSoftPulseGarden_review_card {
    background: #0A142D;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 1px dashed #6AA9FF;
}

.femlorazikSoftPulseGarden_review_text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.femlorazikSoftPulseGarden_review_author {
    color: #6AA9FF;
    font-weight: bold;
}

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

.femlorazikSoftPulseGarden_slider_dots label {
    width: 15px;
    height: 15px;
    background: rgba(106, 169, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

#femlorazik_slide_1:checked ~ .femlorazikSoftPulseGarden_slides_wrapper { transform: translateX(0); }
#femlorazik_slide_2:checked ~ .femlorazikSoftPulseGarden_slides_wrapper { transform: translateX(-33.333%); }
#femlorazik_slide_3:checked ~ .femlorazikSoftPulseGarden_slides_wrapper { transform: translateX(-66.666%); }

#femlorazik_slide_1:checked ~ .femlorazikSoftPulseGarden_slider_dots label:nth-child(1),
#femlorazik_slide_2:checked ~ .femlorazikSoftPulseGarden_slider_dots label:nth-child(2),
#femlorazik_slide_3:checked ~ .femlorazikSoftPulseGarden_slider_dots label:nth-child(3) {
    background: #6AA9FF;
    box-shadow: 0 0 10px #6AA9FF;
}

/* Benefits Section */
.femlorazikSoftPulseGarden_section_benefits {
    padding: 100px 0;
}

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

.femlorazikSoftPulseGarden_benefit_text,
.femlorazikSoftPulseGarden_benefit_img_box {
    flex: 1;
}

.femlorazikSoftPulseGarden_benefit_list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.femlorazikSoftPulseGarden_benefit_list li strong {
    color: #6AA9FF;
    display: block;
    font-size: 1.2rem;
}

.femlorazikSoftPulseGarden_round_img {
    border-radius: 50%;
    border: 5px solid #0A142D;
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.2);
}

/* Quote Section */
.femlorazikSoftPulseGarden_section_quote {
    padding: 80px 0;
    background: linear-gradient(90deg, #050A18, #0A142D, #050A18);
}

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

.femlorazikSoftPulseGarden_main_quote {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
}

.femlorazikSoftPulseGarden_main_quote::before {
    content: '"';
    font-size: 5rem;
    color: #6AA9FF;
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: -20px;
}

.femlorazikSoftPulseGarden_quote_author {
    display: block;
    font-size: 1.2rem;
    color: #6AA9FF;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* FAQ Section */
.femlorazikSoftPulseGarden_section_faq {
    padding: 100px 0;
    background: #070D1F;
}

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

.femlorazikSoftPulseGarden_faq_item {
    background: #0A142D;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(106, 169, 255, 0.1);
}

.femlorazikSoftPulseGarden_faq_item summary {
    padding: 20px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.femlorazikSoftPulseGarden_faq_item summary::-webkit-details-marker {
    display: none;
}

.femlorazikSoftPulseGarden_faq_item summary::after {
    content: '+';
    color: #6AA9FF;
    font-size: 1.5rem;
}

.femlorazikSoftPulseGarden_faq_item[open] summary::after {
    content: '-';
}

.femlorazikSoftPulseGarden_faq_answer {
    padding: 0 30px 25px;
    color: #B0C4DE;
}

/* Form Section */
.femlorazikSoftPulseGarden_section_form {
    padding: 100px 0;
}

.femlorazikSoftPulseGarden_form_box {
    max-width: 650px;
    margin: 0 auto;
    background: #0A142D;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

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

.femlorazikSoftPulseGarden_form_group {
    margin-bottom: 25px;
}

.femlorazikSoftPulseGarden_form_group label {
    display: block;
    margin-bottom: 10px;
    color: #6AA9FF;
}

.femlorazikSoftPulseGarden_form_group input,
.femlorazikSoftPulseGarden_form_group textarea {
    width: 100%;
    background: #050A18;
    border: 1px solid rgba(106, 169, 255, 0.3);
    padding: 15px;
    border-radius: 8px;
    color: #FFFFFF;
    font-family: inherit;
}

.femlorazikSoftPulseGarden_form_group input:focus,
.femlorazikSoftPulseGarden_form_group textarea:focus {
    outline: none;
    border-color: #6AA9FF;
    box-shadow: 0 0 10px rgba(106, 169, 255, 0.3);
}

.femlorazikSoftPulseGarden_form_checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.femlorazikSoftPulseGarden_form_checkbox a {
    color: #6AA9FF;
    text-decoration: underline;
}

/* Article Sections */
.femlorazikSoftPulseGarden_section_article {
    padding: 100px 0;
}

.femlorazik_alt_bg {
    background-color: #070D1F;
}

.femlorazikSoftPulseGarden_article_list {
    margin: 30px 0;
    padding-left: 20px;
}

.femlorazikSoftPulseGarden_article_list li {
    margin-bottom: 15px;
    list-style-type: disc;
    color: #6AA9FF;
}

.femlorazikSoftPulseGarden_feature_box {
    background: rgba(106, 169, 255, 0.05);
    padding: 40px;
    border-left: 5px solid #6AA9FF;
    margin-top: 50px;
    font-style: italic;
    font-size: 1.1rem;
}

/* Footer */
.femlorazikSoftPulseGarden_footer_main {
    background: #03060F;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
}

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

.femlorazikSoftPulseGarden_footer_brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #6AA9FF;
}

.femlorazikSoftPulseGarden_footer_contacts a {
    color: #E0E6ED;
}

.femlorazikSoftPulseGarden_footer_contacts a:hover {
    color: #6AA9FF;
}

.femlorazikSoftPulseGarden_footer_bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
}

.femlorazikSoftPulseGarden_copyright {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.6;
}

.femlorazikSoftPulseGarden_legal_nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.femlorazikSoftPulseGarden_legal_nav a {
    font-size: 0.85rem;
    color: #B0C4DE;
}

.femlorazikSoftPulseGarden_legal_nav a:hover {
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 992px) {
    .femlorazikSoftPulseGarden_hero_content_box,
    .femlorazikSoftPulseGarden_benefit_row {
        flex-direction: column;
        text-align: center;
    }

    .femlorazikSoftPulseGarden_hero_col_left,
    .femlorazikSoftPulseGarden_benefit_img_box {
        order: -1;
    }

    .femlorazikSoftPulseGarden_nav_menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #050A18;
        transition: 0.4s;
        z-index: 999;
    }

    .femlorazikSoftPulseGarden_nav_list {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }

    .femlorazikSoftPulseGarden_burger_label {
        display: flex;
    }

    #femlorazikSoftPulseGarden_menu_toggle:checked ~ .femlorazikSoftPulseGarden_nav_menu {
        left: 0;
    }
}

@media (max-width: 768px) {
    .femlorazikSoftPulseGarden_pricing_grid {
        grid-template-columns: 1fr;
    }
    
    .femlorazikSoftPulseGarden_card_featured {
        transform: scale(1);
    }

    .femlorazikSoftPulseGarden_form_box {
        padding: 30px;
    }
}