/* 
   FILE: ./assets/style.css
   ARCTIC NEON STYLE
*/

:root {
    --bg-main: #04131A;
    --accent-blue: #5FF6FF;
    --text-white: #FFFFFF;
    --text-dim: #A0B2C1;
    --border-color: rgba(95, 246, 255, 0.2);
    --glow-color: rgba(95, 246, 255, 0.6);
    --card-bg: #061A24;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* HEADER */
.GeneralWellRucetogog_TopHeader_NavBlock {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(4, 19, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.GeneralWellRucetogog_Header_Container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.GeneralWellRucetogog_Logo_TextOnly {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--glow-color);
}

.GeneralWellRucetogog_Nav_Menu_Links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.GeneralWellRucetogog_Menu_Item {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition-speed);
}

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

.GeneralWellRucetogog_CTA_Button_Nav {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: var(--transition-speed);
    box-shadow: 0 0 5px var(--border-color);
}

.GeneralWellRucetogog_CTA_Button_Nav:hover {
    background: var(--accent-blue);
    color: var(--bg-main);
    box-shadow: 0 0 20px var(--accent-blue);
    transform: translateY(-2px);
}

.GeneralWellRucetogog_Burger_Input, 
.GeneralWellRucetogog_Burger_Label {
    display: none;
}

/* HERO SECTION */
.GeneralWellRucetogog_Hero_Section_Block {
    padding: 160px 0 80px;
    border-bottom: 1px solid var(--border-color);
}

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

.GeneralWellRucetogog_Hero_Image_Col {
    flex: 1;
}

.GeneralWellRucetogog_Hero_Graphic_Img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(95, 246, 255, 0.15);
}

.GeneralWellRucetogog_Hero_Text_Col {
    flex: 1.2;
}

.GeneralWellRucetogog_Hero_Title_H1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-white);
}

.GeneralWellRucetogog_Hero_Subtitle {
    font-size: 20px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.GeneralWellRucetogog_Hero_Desc_Text {
    margin-bottom: 15px;
    color: var(--text-dim);
}

.GeneralWellRucetogog_Hero_CTA_Action {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--bg-main);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 0 15px var(--accent-blue);
    transition: var(--transition-speed);
}

.GeneralWellRucetogog_Hero_CTA_Action:hover {
    box-shadow: 0 0 30px var(--accent-blue);
    transform: scale(1.05);
}

.GeneralWellRucetogog_Hero_Partners_Bar {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.GeneralWellRucetogog_Partners_Inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0.6;
}

.GeneralWellRucetogog_Partner_Logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-dim);
}

/* SECTION HEADERS */
.GeneralWellRucetogog_Section_Title_H2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.GeneralWellRucetogog_Section_Title_H2::before {
    content: "// ";
    color: var(--accent-blue);
}

/* TEXT SECTIONS */
.GeneralWellRucetogog_Text_Info_Section_One,
.GeneralWellRucetogog_Text_Info_Section_Two,
.GeneralWellRucetogog_Text_Info_Section_Three {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.GeneralWellRucetogog_Paragraph_Standard {
    margin-bottom: 20px;
    color: var(--text-dim);
}

.GeneralWellRucetogog_Numbered_List_Block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.GeneralWellRucetogog_Number_Item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.GeneralWellRucetogog_Number_Circle {
    background: var(--accent-blue);
    color: var(--bg-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--accent-blue);
}

.GeneralWellRucetogog_Small_Heading {
    color: var(--accent-blue);
    font-size: 18px;
    margin-bottom: 5px;
}

.GeneralWellRucetogog_Simple_Text_Grid {
    display: flex;
    gap: 40px;
}

.GeneralWellRucetogog_Text_Column_Half {
    flex: 1;
}

.GeneralWellRucetogog_Quote_In_Text {
    margin-top: 50px;
    padding: 40px;
    background: var(--card-bg);
    border-left: 4px solid var(--accent-blue);
    text-align: center;
}

.GeneralWellRucetogog_Quote_Text_Content {
    font-size: 24px;
    font-style: italic;
    color: var(--text-white);
}

.GeneralWellRucetogog_Bulleted_List_Custom {
    list-style: none;
    margin: 30px 0;
}

.GeneralWellRucetogog_Bullet_Item {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-dim);
}

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

/* SERVICES */
.GeneralWellRucetogog_Services_Pricing_Block {
    padding: 100px 0;
    background: rgba(95, 246, 255, 0.02);
}

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

.GeneralWellRucetogog_Price_Card_Item {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-speed);
}

.GeneralWellRucetogog_Price_Card_Item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-10px);
}

.GeneralWellRucetogog_Popular_Label_Card {
    position: relative;
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(95, 246, 255, 0.1);
}

.GeneralWellRucetogog_Popular_Badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: var(--bg-main);
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
}

.GeneralWellRucetogog_Package_Name {
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
}

.GeneralWellRucetogog_Package_Cost {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    color: var(--accent-blue);
    margin-bottom: 30px;
}

.GeneralWellRucetogog_Package_Features_List {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.GeneralWellRucetogog_Package_Features_List li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-dim);
    font-size: 14px;
}

.GeneralWellRucetogog_Package_Button {
    text-align: center;
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    text-decoration: none;
    padding: 15px;
    font-weight: bold;
    border-radius: 4px;
    transition: var(--transition-speed);
}

.GeneralWellRucetogog_Package_Button:hover {
    background: var(--accent-blue);
    color: var(--bg-main);
}

/* AUDIENCE */
.GeneralWellRucetogog_Audience_Section_Block {
    padding: 100px 0;
}

.GeneralWellRucetogog_Section_Intro_Text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-dim);
}

.GeneralWellRucetogog_Audience_Cards_Grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.GeneralWellRucetogog_Audience_Card {
    flex: 1 1 30%;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition-speed);
}

.GeneralWellRucetogog_Audience_Card:hover {
    border-color: var(--border-color);
}

.GeneralWellRucetogog_Audience_Icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

.GeneralWellRucetogog_Audience_Text {
    font-size: 14px;
    color: var(--text-dim);
}

/* FAQ */
.GeneralWellRucetogog_Faq_Section_Block {
    padding: 100px 0;
    background: var(--bg-main);
}

.GeneralWellRucetogog_Faq_Columns_Wrapper {
    display: flex;
    gap: 40px;
}

.GeneralWellRucetogog_Faq_Column {
    flex: 1;
}

.GeneralWellRucetogog_Faq_Item {
    margin-bottom: 20px;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.GeneralWellRucetogog_Faq_Question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    color: var(--accent-blue);
    border: 1px solid var(--border-color);
    transition: var(--transition-speed);
}

.GeneralWellRucetogog_Faq_Question:hover {
    background: rgba(95, 246, 255, 0.05);
}

.GeneralWellRucetogog_Faq_Answer {
    padding: 20px;
    color: var(--text-dim);
    font-size: 15px;
    border-top: 1px solid var(--border-color);
}

/* PRACTICE BENEFITS */
.GeneralWellRucetogog_Practice_Benefits_Block {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

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

.GeneralWellRucetogog_Practice_Text_Side {
    flex: 1.2;
}

.GeneralWellRucetogog_Practice_Image_Side {
    flex: 1;
}

.GeneralWellRucetogog_Practice_Graphic {
    width: 100%;
    border-radius: 12px;
}

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

.GeneralWell_Benefit_Mini_Card, 
.GeneralWell_Benefit_Mini_Card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-blue);
}

.GeneralWell_B_Title {
    color: var(--accent-blue);
    font-size: 16px;
    margin-bottom: 5px;
}

.GeneralWell_B_Text {
    font-size: 14px;
    color: var(--text-dim);
}

/* EXPERT */
.GeneralWellRucetogog_Expert_Quote_Block {
    padding: 100px 0;
    background: rgba(95, 246, 255, 0.03);
}

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

.GeneralWellRucetogog_Expert_Quote_Side {
    flex: 1.5;
    position: relative;
    padding-left: 40px;
}

.GeneralWellRucetogog_Vertical_Line_Decor {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-blue), transparent);
}

.GeneralWellRucetogog_Big_Quote {
    font-size: 28px;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 30px;
}

.GeneralWellRucetogog_Expert_Name {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-blue);
}

.GeneralWellRucetogog_Expert_Role {
    color: var(--text-dim);
    font-size: 14px;
}

.GeneralWellRucetogog_Expert_Image_Side {
    flex: 1;
}

.GeneralWellRucetogog_Expert_Portrait_Img {
    width: 100%;
    border-radius: 12px;
    filter: grayscale(0.5);
    border: 1px solid var(--border-color);
}

/* FORM */
.GeneralWellRucetogog_Contact_Form_Block {
    padding: 100px 0;
}

.GeneralWellRucetogog_Form_Inner_Box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 60px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.GeneralWellRucetogog_Form_Subtitle {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.GeneralWellRucetogog_Form_Group {
    margin-bottom: 25px;
}

.GeneralWellRucetogog_Input_Label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--accent-blue);
}

.GeneralWellRucetogog_Input_Field,
.GeneralWellRucetogog_Textarea_Field {
    width: 100%;
    background: #04131A;
    border: 1px solid var(--border-color);
    padding: 15px;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: var(--transition-speed);
}

.GeneralWellRucetogog_Input_Field:focus,
.GeneralWellRucetogog_Textarea_Field:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px var(--border-color);
}

.GeneralWellRucetogog_Textarea_Field {
    height: 150px;
    resize: vertical;
}

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

.GeneralWellRucetogog_Checkbox_Label {
    font-size: 13px;
    color: var(--text-dim);
}

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

.GeneralWellRucetogog_Submit_Btn {
    width: 100%;
    background: var(--accent-blue);
    color: var(--bg-main);
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-speed);
}

.GeneralWellRucetogog_Submit_Btn:hover {
    box-shadow: 0 0 25px var(--accent-blue);
    transform: scale(1.02);
}

/* FOOTER */
.GeneralWellRucetogog_MainFooter_Bottom {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    background: #020b0f;
}

.GeneralWellRucetogog_Footer_Grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.GeneralWellRucetogog_Footer_Logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.GeneralWellRucetogog_Footer_Copyright {
    color: var(--text-dim);
    font-size: 14px;
}

.GeneralWellRucetogog_Footer_Contacts p {
    margin-bottom: 10px;
}

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

.GeneralWellRucetogog_Footer_Links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.GeneralWellRucetogog_FLink {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-speed);
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .GeneralWellRucetogog_Hero_Container,
    .GeneralWellRucetogog_Practice_Flex_Row,
    .GeneralWellRucetogog_Expert_Grid_Layout,
    .GeneralWellRucetogog_Simple_Text_Grid {
        flex-direction: column;
    }

    .GeneralWellRucetogog_Hero_Text_Col,
    .GeneralWellRucetogog_Hero_Image_Col,
    .GeneralWellRucetogog_Pricing_Grid_Container {
        width: 100%;
        flex-direction: column;
    }

    .GeneralWellRucetogog_Pricing_Grid_Container {
        display: flex;
    }

    .GeneralWellRucetogog_Audience_Card {
        flex: 1 1 45%;
    }

    .GeneralWellRucetogog_Faq_Columns_Wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .GeneralWellRucetogog_Burger_Label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
    }

    .GeneralWellRucetogog_Burger_Label span {
        display: block;
        height: 3px;
        width: 100%;
        background: var(--accent-blue);
        border-radius: 3px;
    }

    .GeneralWellRucetogog_Nav_Menu_Links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        flex-direction: column;
        padding: 40px;
        display: none;
        border-bottom: 1px solid var(--border-color);
    }

    .GeneralWellRucetogog_Burger_Input:checked ~ .GeneralWellRucetogog_Nav_Menu_Links {
        display: flex;
    }

    .GeneralWellRucetogog_Hero_Title_H1 {
        font-size: 32px;
    }

    .GeneralWellRucetogog_Audience_Card {
        flex: 1 1 100%;
    }

    .GeneralWellRucetogog_Form_Inner_Box {
        padding: 30px;
    }
}
