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

body.velqiroBreathTempoNest_Body_Main_Wrapper {
    background-color: #060708;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER STYLE */
header.velqiroBreathTempoNest_Header_Global_Fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(6, 7, 8, 0.95);
    border-bottom: 2px solid #FFC55E;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

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

.velqiroBreathTempoNest_Header_Logo_Text {
    font-size: 28px;
    font-weight: 800;
    color: #FFC55E;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.velqiroBreathTempoNest_Nav_Ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.velqiroBreathTempoNest_Nav_Link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.velqiroBreathTempoNest_Nav_Link:hover {
    color: #FFC55E;
}

/* BURGER MENU (No JS) */
.velqiroBreathTempoNest_Menu_Checkbox {
    display: none;
}

.velqiroBreathTempoNest_Burger_Button {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.velqiroBreathTempoNest_Burger_Button span {
    width: 30px;
    height: 3px;
    background-color: #FFC55E;
    transition: 0.3s;
}

/* MAIN CONTENT PADDING */
main.velqiroBreathTempoNest_Main_Content_Area {
    padding-top: 80px;
}

/* HERO SECTION */
.velqiroBreathTempoNest_Hero_Section_Block {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.velqiroBreathTempoNest_Hero_Main_Img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 197, 94, 0.1);
    object-fit: cover;
}

.velqiroBreathTempoNest_Hero_Text_Col {
    flex: 1.2;
    min-width: 300px;
}

.velqiroBreathTempoNest_Main_Title_H1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.velqiroBreathTempoNest_Sub_Title_P {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.velqiroBreathTempoNest_Hero_Text_Card {
    background: #111214;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 3px solid #FFC55E;
}

.velqiroBreathTempoNest_Hero_Card_H3 {
    color: #FFC55E;
    margin-bottom: 5px;
}

.velqiroBreathTempoNest_Cta_Button_Main {
    display: inline-block;
    padding: 15px 35px;
    background-color: #FFC55E;
    color: #060708;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
    text-transform: uppercase;
}

.velqiroBreathTempoNest_Cta_Button_Main:hover {
    background-color: #ffd68a;
    box-shadow: 0 0 20px rgba(255, 197, 94, 0.6);
}

/* SECTION TITLES */
.velqiroBreathTempoNest_Section_H2_Title {
    font-size: 32px;
    text-align: center;
    color: #ffffff;
    margin: 60px 0 40px;
    position: relative;
    padding-bottom: 15px;
}

.velqiroBreathTempoNest_Section_H2_Title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFC55E;
}

/* PRICING BLOCK */
.velqiroBreathTempoNest_Pricing_Section_Wrap {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.velqiroBreathTempoNest_Pricing_Item_Card {
    flex: 1;
    min-width: 220px;
    max-width: 350px;
    background: #0d0e10;
    border: 1px solid #333;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.velqiroBreathTempoNest_Pricing_Item_Card:hover {
    border-color: #FFC55E;
    transform: translateY(-5px);
}

.velqiroBreathTempoNest_Price_Featured {
    border: 2px solid #FFC55E;
    transform: scale(1.05);
}

.velqiroBreathTempoNest_Package_Name {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFC55E;
}

.velqiroBreathTempoNest_Price_Value {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.velqiroBreathTempoNest_Package_Details {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

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

.velqiroBreathTempoNest_Package_Btn {
    text-align: center;
    padding: 12px;
    border: 1px solid #FFC55E;
    color: #FFC55E;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.velqiroBreathTempoNest_Package_Btn:hover {
    background: #FFC55E;
    color: #060708;
}

/* EXPERT BLOCK */
.velqiroBreathTempoNest_Expert_Block_Section {
    background: #111214;
    padding: 80px 20px;
    margin: 60px 0;
}

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

.velqiroBreathTempoNest_Expert_Quote_Icon {
    font-size: 80px;
    color: #FFC55E;
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.3;
}

.velqiroBreathTempoNest_Expert_Blockquote {
    font-size: 24px;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.velqiroBreathTempoNest_Expert_Name_Text {
    font-weight: bold;
    color: #FFC55E;
    font-size: 20px;
}

/* BENEFITS MIRROR */
.velqiroBreathTempoNest_Benefits_Block_Mirror {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

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

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

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

.velqiroBreathTempoNest_Benefits_Illustrative_Img {
    width: 100%;
    border-radius: 5px;
}

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

.velqiroBreathTempoNest_Benefit_Li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.velqiroBreathTempoNest_Benefit_Li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFC55E;
}

/* AUDIENCE */
.velqiroBreathTempoNest_Audience_Section_Decor {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.velqiroBreathTempoNest_Audience_Grid_Container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.velqiroBreathTempoNest_Audience_Item {
    flex: 1;
    min-width: 250px;
    background: #0d0e10;
    padding: 25px;
    border-top: 4px solid #333;
    transition: 0.3s;
}

.velqiroBreathTempoNest_Audience_Item:hover {
    border-top-color: #FFC55E;
}

.velqiroBreathTempoNest_Audience_Icon_Mock {
    font-size: 32px;
    font-weight: 800;
    color: rgba(255, 197, 94, 0.2);
    margin-bottom: 10px;
}

.velqiroBreathTempoNest_Promo_Discount_Banner {
    margin-top: 40px;
    background: #FFC55E;
    color: #060708;
    padding: 20px;
    text-align: center;
    font-weight: 800;
    font-size: 20px;
    border-radius: 5px;
}

.velqiroBreathTempoNest_Highlight_Text {
    text-decoration: underline;
}

/* TEXT ARTICLES */
.velqiroBreathTempoNest_Text_Article_Section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 20px;
}

.velqiroBreathTempoNest_Bg_Alt {
    background-color: #0a0b0d;
}

.velqiroBreathTempoNest_Article_Content p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #ccc;
}

.velqiroBreathTempoNest_Article_Inside_List {
    margin: 20px 0 20px 40px;
    color: #FFC55E;
}

/* FAQ */
.velqiroBreathTempoNest_Faq_Section_Wrap {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.velqiroBreathTempoNest_Faq_Details {
    background: #111214;
    margin-bottom: 10px;
    border: 1px solid #222;
}

.velqiroBreathTempoNest_Faq_Summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #FFC55E;
    outline: none;
}

.velqiroBreathTempoNest_Faq_Content {
    padding: 0 20px 20px;
    color: #b0b0b0;
}

/* FORM */
.velqiroBreathTempoNest_Form_Section_Wrap {
    background: #0a0b0d;
    padding: 80px 20px;
}

.velqiroBreathTempoNest_Form_Container_Inner {
    max-width: 600px;
    margin: 0 auto;
}

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

.velqiroBreathTempoNest_Input_Group {
    margin-bottom: 20px;
}

.velqiroBreathTempoNest_Input_Group label {
    display: block;
    margin-bottom: 8px;
    color: #FFC55E;
}

.velqiroBreathTempoNest_Input_Group input, 
.velqiroBreathTempoNest_Input_Group textarea {
    width: 100%;
    padding: 12px;
    background: #111214;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

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

.velqiroBreathTempoNest_Checkbox_Group a {
    color: #FFC55E;
}

.velqiroBreathTempoNest_Submit_Btn_Form {
    width: 100%;
    padding: 15px;
    background: #FFC55E;
    color: #060708;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.velqiroBreathTempoNest_Submit_Btn_Form:hover {
    background: #ffd68a;
    box-shadow: 0 0 15px rgba(255, 197, 94, 0.4);
}

/* FOOTER */
.velqiroBreathTempoNest_Footer_Global {
    padding: 60px 20px;
    background: #040506;
    text-align: center;
}

.velqiroBreathTempoNest_Footer_Top_Line {
    width: 100px;
    height: 2px;
    background: #FFC55E;
    margin: 0 auto 30px;
}

.velqiroBreathTempoNest_Copyright_Text {
    margin-bottom: 10px;
    font-weight: bold;
}

.velqiroBreathTempoNest_Footer_Links_Row {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.velqiroBreathTempoNest_Footer_Links_Row a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
}

.velqiroBreathTempoNest_Footer_Links_Row a:hover {
    color: #FFC55E;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .velqiroBreathTempoNest_Pricing_Item_Card {
        max-width: 45%;
    }
}

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

    .velqiroBreathTempoNest_Navigation_List_Wrap {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #060708;
        display: none;
        border-bottom: 1px solid #FFC55E;
    }

    .velqiroBreathTempoNest_Nav_Ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .velqiroBreathTempoNest_Menu_Checkbox:checked ~ .velqiroBreathTempoNest_Navigation_List_Wrap {
        display: block;
    }

    .velqiroBreathTempoNest_Pricing_Item_Card {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .velqiroBreathTempoNest_Main_Title_H1 {
        font-size: 32px;
    }
}