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

:root {
    --bg-dark: #050A18;
    --accent-blue: #6AA9FF;
    --neon-glow: 0 0 10px rgba(106, 169, 255, 0.6);
    --text-white: #ffffff;
    --text-muted: #a0aec0;
    --border-red: #ff4d4d;
    --transition-speed: 0.3s;
}

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

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

.Plm9802_container_narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.Plm9802_header_section_wrap {
    background: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid var(--accent-blue);
    box-shadow: 0 2px 20px rgba(106, 169, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.Plm9802_logo_text_brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--neon-glow);
}

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

.Plm9802_nav_link_item {
    color: var(--text-white);
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color var(--transition-speed);
}

.Plm9802_nav_link_item:hover {
    color: var(--accent-blue);
}

/* Burger Menu Styles */
.Plm9802_burger_checkbox_hidden {
    display: none;
}

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

.Plm9802_burger_icon_trigger span {
    width: 25px;
    height: 3px;
    background: var(--accent-blue);
    margin: 2px 0;
    transition: 0.4s;
}

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

.Plm9802_border_red_accent {
    border: 3px solid var(--border-red);
    margin: 20px;
    border-radius: 15px;
}

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

.Plm9802_hero_column_image, .Plm9802_hero_column_content {
    flex: 1;
}

.Plm9802_image_responsive_styled {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
}

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

.Plm9802_subtitle_text_large {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.Plm9802_paragraph_text_regular {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.Plm9802_button_primary_action {
    display: inline-block;
    background-color: var(--accent-blue);
    color: var(--bg-dark);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.Plm9802_button_primary_action:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--accent-blue);
}

/* Price Section */
.Plm9802_border_neon_outline {
    border: 2px solid var(--accent-blue);
    padding: 40px;
    border-radius: 20px;
    box-shadow: inset 0 0 15px rgba(106, 169, 255, 0.1);
}

.text_center {
    text-align: center;
}

.Plm9802_h2_section_title {
    font-size: 36px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.Plm9802_price_card_item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(106, 169, 255, 0.3);
    padding: 30px;
    border-radius: 15px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    transition: border-color var(--transition-speed);
}

.Plm9802_price_card_item:hover {
    border-color: var(--accent-blue);
}

.Plm9802_featured_card {
    background: rgba(106, 169, 255, 0.05);
    border: 2px solid var(--accent-blue);
    transform: scale(1.05);
}

.Plm9802_h3_card_title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-blue);
}

.Plm9802_price_tag_value {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.Plm9802_card_features_list {
    list-style: none;
    text-align: left;
}

.Plm9802_card_features_list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.Plm9802_card_features_list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

/* Who Suits Section */
.Plm9802_image_top_wrapper {
    margin-bottom: 40px;
}

.Plm9802_image_responsive_full {
    width: 100%;
    border-radius: 15px;
}

.Plm9802_who_list_styled {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
}

.Plm9802_who_list_item {
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-left: 4px solid var(--accent-blue);
    border-radius: 5px;
}

/* Benefits Section */
.Plm9802_benefits_flex_mirror {
    display: flex;
    gap: 50px;
    align-items: center;
}

.Plm9802_benefits_column_content, .Plm9802_benefits_column_image {
    flex: 1;
}

.Plm9802_benefits_list_check {
    list-style: none;
}

.Plm9802_benefits_list_check li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.Plm9802_benefits_list_check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 20px;
}

/* Expert Section */
.Plm9802_expert_quote_card {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    border: 1px dashed var(--accent-blue);
}

.Plm9802_blockquote_main {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
}

.Plm9802_cite_author {
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
}

.Plm9802_details_item {
    background: rgba(255,255,255,0.03);
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 15px;
}

.Plm9802_summary_title {
    cursor: pointer;
    font-weight: 600;
    color: var(--accent-blue);
    outline: none;
}

.Plm9802_details_text_content {
    padding-top: 15px;
    color: var(--text-muted);
}

/* FAQ Section */
.Plm9802_faq_accordion_wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.Plm9802_faq_item_box {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(106, 169, 255, 0.2);
    padding: 20px;
}

.Plm9802_faq_summary_question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

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

.Plm9802_faq_answer_content {
    margin-top: 15px;
    color: var(--text-muted);
}

/* Form Styles */
.Plm9802_form_element_styled {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--accent-blue);
}

.Plm9802_form_field_group {
    margin-bottom: 20px;
}

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

.Plm9802_form_input_field, .Plm9802_form_textarea_field {
    width: 100%;
    padding: 12px 15px;
    background: #0a1228;
    border: 1px solid rgba(106, 169, 255, 0.4);
    color: white;
    border-radius: 5px;
    outline: none;
}

.Plm9802_form_input_field:focus, .Plm9802_form_textarea_field:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 5px var(--accent-blue);
}

.Plm9802_form_checkbox_group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

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

.Plm9802_button_submit_form {
    width: 100%;
    background: var(--accent-blue);
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-dark);
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

/* Extra Content Blocks */
.Plm9802_bg_alt {
    background: #08112b;
}

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

.Plm9802_h3_inner_title {
    color: var(--accent-blue);
    margin: 30px 0 15px;
}

.Plm9802_text_list_styled {
    margin-bottom: 20px;
    padding-left: 20px;
}

.Plm9802_text_list_styled li {
    margin-bottom: 10px;
}

/* Footer */
.Plm9802_footer_section_outer {
    padding: 60px 0;
    border-top: 1px solid rgba(106, 169, 255, 0.2);
    background: #030712;
}

.Plm9802_footer_content_grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.Plm9802_footer_info_brand p {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

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

.Plm9802_legal_list {
    list-style: none;
}

.Plm9802_legal_list li {
    margin-bottom: 10px;
}

.Plm9802_legal_list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition-speed);
}

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

/* Responsive Queries */
@media (max-width: 992px) {
    .Plm9802_hero_flex_columns, .Plm9802_benefits_flex_mirror {
        flex-direction: column;
    }
    .Plm9802_hero_column_content {
        order: -1;
    }
    .Plm9802_price_card_item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .Plm9802_burger_icon_trigger {
        display: flex;
    }

    .Plm9802_nav_menu_desktop_mobile {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        transition: 0.5s;
        z-index: 999;
    }

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

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

    .Plm9802_burger_checkbox_hidden:checked ~ .Plm9802_nav_menu_desktop_mobile {
        left: 0;
    }

    .Plm9802_h1_main_title {
        font-size: 32px;
    }

    .Plm9802_who_list_styled {
        grid-template-columns: 1fr;
    }

    .Plm9802_price_card_item {
        width: 100%;
        margin-bottom: 15px;
        transform: none !important;
    }
}