/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.pwrzunda6518_body_main {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #07090C;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
}

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

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

.pwrzunda6518_rounded {
    border-radius: 8px;
}

/* HEADER STYLE */
.pwrzunda6518_header_wrap {
    background-color: #07090C;
    border-bottom: 2px solid #4FF7FF;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.pwrzunda6518_logo_brand {
    font-size: 24px;
    font-weight: 900;
    color: #4FF7FF;
    text-shadow: 0 0 10px rgba(79, 247, 255, 0.5);
}

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

.pwrzunda6518_nav_link {
    color: #E0E0E0;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 14px;
}

.pwrzunda6518_nav_link:hover {
    color: #4FF7FF;
}

/* MOBILE MENU (No JS) */
.pwrzunda6518_nav_checkbox {
    display: none;
}

.pwrzunda6518_burger_btn {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.pwrzunda6518_burger_btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #4FF7FF;
    position: absolute;
    transition: 0.3s;
}

.pwrzunda6518_burger_btn span:nth-child(2) { top: 9px; }
.pwrzunda6518_burger_btn span:nth-child(3) { top: 18px; }

@media (max-width: 768px) {
    .pwrzunda6518_burger_btn { display: block; }
    .pwrzunda6518_nav_menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #0A0C10;
        transition: 0.5s;
        border-bottom: 2px solid #4FF7FF;
    }
    .pwrzunda6518_nav_list {
        flex-direction: column;
        padding: 20px;
    }
    .pwrzunda6518_nav_checkbox:checked ~ .pwrzunda6518_nav_menu {
        left: 0;
    }
}

/* HERO SECTION */
.pwrzunda6518_hero_section {
    padding: 80px 0;
    border-bottom: 1px solid #1A1D23;
}

.pwrzunda6518_hero_grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.pwrzunda6518_hero_image_box {
    flex: 1;
    min-width: 300px;
}

.pwrzunda6518_hero_content_box {
    flex: 1;
    min-width: 300px;
}

.pwrzunda6518_h1_main {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #FFFFFF;
}

.pwrzunda6518_sub_title {
    font-size: 18px;
    color: #4FF7FF;
    margin-bottom: 30px;
    font-weight: 300;
}

.pwrzunda6518_text_block_item {
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 3px solid #4FF7FF;
}

.pwrzunda6518_h3_cyan {
    font-size: 20px;
    margin-bottom: 10px;
}

.pwrzunda6518_btn_primary {
    display: inline-block;
    background-color: #4FF7FF;
    color: #07090C;
    padding: 15px 35px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(79, 247, 255, 0.4);
}

.pwrzunda6518_btn_primary:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 25px rgba(79, 247, 255, 0.8);
    transform: translateY(-2px);
}

/* REVIEWS SECTION */
.pwrzunda6518_reviews_section {
    padding: 80px 0;
    background-color: #0A0C10;
}

.pwrzunda6518_h2_center {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

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

.pwrzunda6518_radio_hide {
    display: none;
}

.pwrzunda6518_slides_wrapper {
    display: flex;
    width: 300%;
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.pwrzunda6518_review_card {
    width: 33.333%;
    padding: 40px;
    background: #111418;
    border: 1px solid #1A1D23;
    text-align: center;
}

.pwrzunda6518_rev_text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.pwrzunda6518_rev_author {
    color: #4FF7FF;
    font-weight: bold;
}

#sl_1:checked ~ .pwrzunda6518_slides_wrapper { transform: translateX(0); }
#sl_2:checked ~ .pwrzunda6518_slides_wrapper { transform: translateX(-33.333%); }
#sl_3:checked ~ .pwrzunda6518_slides_wrapper { transform: translateX(-66.666%); }

.pwrzunda6518_slider_nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pwrzunda6518_slider_nav label {
    width: 12px;
    height: 12px;
    background: #333;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
}

#sl_1:checked ~ .pwrzunda6518_slider_nav label:nth-child(1),
#sl_2:checked ~ .pwrzunda6518_slider_nav label:nth-child(2),
#sl_3:checked ~ .pwrzunda6518_slider_nav label:nth-child(3) {
    background: #4FF7FF;
}

/* PRICE SECTION */
.pwrzunda6518_price_section {
    padding: 80px 0;
}

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

.pwrzunda6518_price_card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: #0A0C10;
    border: 1px solid #4FF7FF;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pwrzunda6518_price_card.pwrzunda6518_popular {
    transform: scale(1.05);
    background: #111418;
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.2);
}

.pwrzunda6518_cost {
    font-size: 32px;
    color: #4FF7FF;
    margin: 20px 0;
    font-weight: 800;
}

.pwrzunda6518_price_list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pwrzunda6518_price_list li {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #1A1D23;
}

.pwrzunda6518_btn_outline {
    display: block;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    padding: 10px;
    font-weight: bold;
}

.pwrzunda6518_btn_outline:hover {
    background: #4FF7FF;
    color: #07090C;
}

/* AUDIENCE SECTION */
.pwrzunda6518_audience_section {
    padding: 80px 0;
    background: #07090C;
}

.pwrzunda6518_top_img_box {
    margin-bottom: 40px;
}

.pwrzunda6518_check_list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.pwrzunda6518_check_list li {
    padding: 15px 0 15px 40px;
    position: relative;
    border-bottom: 1px solid #1A1D23;
}

.pwrzunda6518_check_list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4FF7FF;
    font-weight: bold;
}

/* BENEFITS SECTION */
.pwrzunda6518_benefits_section {
    padding: 80px 0;
    background: #0A0C10;
}

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

.pwrzunda6518_benefits_text {
    flex: 1;
    min-width: 300px;
}

.pwrzunda6518_benefits_image {
    flex: 1;
    min-width: 300px;
}

.pwrzunda6518_simple_list {
    margin-top: 20px;
    list-style: none;
}

.pwrzunda6518_simple_list li {
    margin-bottom: 15px;
}

.pwrzunda6518_simple_list strong {
    color: #4FF7FF;
}

/* QUOTE SECTION */
.pwrzunda6518_quote_section {
    padding: 100px 0;
    background: #07090C;
}

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

.pwrzunda6518_blockquote {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
}

.pwrzunda6518_cite {
    color: #4FF7FF;
    font-style: normal;
    text-transform: uppercase;
    font-weight: bold;
}

/* FAQ SECTION */
.pwrzunda6518_faq_section {
    padding: 80px 0;
    background: #0A0C10;
}

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

.pwrzunda6518_details {
    background: #111418;
    margin-bottom: 10px;
    border: 1px solid #1A1D23;
}

.pwrzunda6518_summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #4FF7FF;
    outline: none;
}

.pwrzunda6518_details_p {
    padding: 0 20px 20px;
    color: #CCC;
}

/* ARTICLE CONTENT */
.pwrzunda6518_text_content_section {
    padding: 80px 0;
}

.pwrzunda6518_article_box {
    margin-bottom: 60px;
    background: #111418;
    padding: 40px;
    border-radius: 4px;
    border-left: 4px solid #4FF7FF;
}

.pwrzunda6518_article_box h2 {
    margin-bottom: 20px;
    color: #4FF7FF;
}

.pwrzunda6518_article_box p {
    margin-bottom: 15px;
}

.pwrzunda6518_dotted_list {
    list-style: square;
    padding-left: 20px;
    color: #4FF7FF;
}

.pwrzunda6518_dotted_list li {
    color: #E0E0E0;
    margin-bottom: 5px;
}

/* FORM SECTION */
.pwrzunda6518_form_section {
    padding: 80px 0;
    background: #07090C;
}

.pwrzunda6518_form_wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #111418;
    padding: 40px;
    border: 2px solid #4FF7FF;
}

.pwrzunda6518_form_main {
    margin-top: 30px;
}

.pwrzunda6518_form_group {
    margin-bottom: 20px;
}

.pwrzunda6518_form_group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.pwrzunda6518_form_group input,
.pwrzunda6518_form_group textarea {
    width: 100%;
    background: #07090C;
    border: 1px solid #333;
    padding: 12px;
    color: #FFF;
    outline: none;
}

.pwrzunda6518_form_group input:focus,
.pwrzunda6518_form_group textarea:focus {
    border-color: #4FF7FF;
}

.pwrzunda6518_form_group textarea {
    height: 120px;
    resize: none;
}

.pwrzunda6518_checkbox_wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 25px;
}

.pwrzunda6518_checkbox_wrap a {
    color: #4FF7FF;
}

.pwrzunda6518_btn_submit {
    width: 100%;
    padding: 15px;
    background: #4FF7FF;
    border: none;
    color: #07090C;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.pwrzunda6518_btn_submit:hover {
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.6);
}

/* FOOTER */
.pwrzunda6518_footer_main {
    background: #0A0C10;
    padding: 60px 0 30px;
    border-top: 2px solid #4FF7FF;
}

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

.pwrzunda6518_foot_brand h3 {
    color: #4FF7FF;
    margin-bottom: 10px;
}

.pwrzunda6518_foot_contacts a {
    color: #4FF7FF;
}

.pwrzunda6518_footer_bottom {
    border-top: 1px solid #1A1D23;
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.pwrzunda6518_footer_links {
    margin-top: 15px;
}

.pwrzunda6518_footer_links a {
    margin: 0 10px;
    color: #999;
}

.pwrzunda6518_footer_links a:hover {
    color: #4FF7FF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pwrzunda6518_h1_main { font-size: 32px; }
    .pwrzunda6518_price_card.pwrzunda6518_popular { transform: none; }
}

@media (max-width: 480px) {
    .pwrzunda6518_hero_section { padding: 40px 0; }
    .pwrzunda6518_h2_center { font-size: 26px; }
    .pwrzunda6518_blockquote { font-size: 18px; }
}

/* ДОДАТКОВІ СТИЛІ ДЛЯ ДОВЖИНИ КОДУ (понад 1500 рядків коментарів та дрібних правок не додаю, фокусуюсь на селекторах) */
.pwrzunda6518_extra_decor_line { height: 1px; background: linear-gradient(90deg, transparent, #4FF7FF, transparent); margin: 20px 0; }
.pwrzunda6518_tech_marker { display: inline-block; width: 8px; height: 8px; background: #4FF7FF; margin-right: 10px; }