/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.verqaniBreathPulseMesh_BodyRoot {
    background-color: #050607;
    color: #e0e0e0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.verqaniBreathPulseMesh_MainHeader {
    background: rgba(5, 6, 7, 0.9);
    border-bottom: 2px solid #5AF3FF;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.verqaniBreathPulseMesh_LogoText {
    font-size: 28px;
    font-weight: 800;
    color: #5AF3FF;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.5);
}

.verqaniBreathPulseMesh_Navigation {
    display: flex;
}

.verqaniBreathPulseMesh_NavList {
    display: flex;
    list-style: none;
    gap: 25px;
}

.verqaniBreathPulseMesh_NavLink {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-size: 15px;
}

.verqaniBreathPulseMesh_NavLink:hover {
    color: #5AF3FF;
    text-shadow: 0 0 8px rgba(90, 243, 255, 0.8);
}

/* Mobile Menu Trigger */
.verqaniBreathPulseMesh_NavToggle {
    display: none;
}

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

.verqaniBreathPulseMesh_BurgerLabel span {
    display: block;
    width: 25px;
    height: 3px;
    background: #5AF3FF;
    transition: 0.3s;
}

/* Hero Section */
.verqaniBreathPulseMesh_HeroSection {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.verqaniBreathPulseMesh_CyberGridDecoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(90, 243, 255, 0.05) 1px, transparent 1px),
                linear-gradient(rgba(90, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

.verqaniBreathPulseMesh_QuickLinksWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    justify-content: center;
}

.verqaniBreathPulseMesh_QuickLinkBtn {
    padding: 10px 20px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
    background: rgba(90, 243, 255, 0.05);
}

.verqaniBreathPulseMesh_QuickLinkBtn:hover {
    background: #5AF3FF;
    color: #050607;
    box-shadow: 0 0 15px #5AF3FF;
}

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

.verqaniBreathPulseMesh_HeroImageCol {
    flex: 1;
}

.verqaniBreathPulseMesh_HeroImg {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #5AF3FF;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.2);
    object-fit: cover;
}

.verqaniBreathPulseMesh_HeroTextCol {
    flex: 1;
}

.verqaniBreathPulseMesh_HeroTitle {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 20px rgba(90, 243, 255, 0.3);
}

.verqaniBreathPulseMesh_HeroSubtitle {
    font-size: 20px;
    color: #5AF3FF;
    margin-bottom: 30px;
    font-weight: 300;
}

.verqaniBreathPulseMesh_Paragraph {
    margin-bottom: 20px;
    font-size: 17px;
    color: #b0b0b0;
}

.verqaniBreathPulseMesh_CtaButtonPrimary {
    display: inline-block;
    padding: 18px 45px;
    background: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s;
    border: none;
    margin-top: 20px;
}

.verqaniBreathPulseMesh_CtaButtonPrimary:hover {
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.7);
    transform: translateY(-3px);
    background: #fff;
}

/* Pricing Section */
.verqaniBreathPulseMesh_PricingSection {
    padding: 100px 0;
    background: #0a0c0e;
    position: relative;
}

.verqaniBreathPulseMesh_SectionHeading {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
}

.verqaniBreathPulseMesh_SectionHeading::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

.verqaniBreathPulseMesh_PricingQuickNav {
    text-align: center;
    margin-bottom: 50px;
}

.verqaniBreathPulseMesh_SmallLink {
    margin: 0 15px;
    color: #5AF3FF;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px dashed #5AF3FF;
}

.verqaniBreathPulseMesh_PricingGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.verqaniBreathPulseMesh_PriceCard {
    background: #050607;
    border: 1px solid rgba(90, 243, 255, 0.3);
    padding: 40px;
    width: 350px;
    border-radius: 12px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.verqaniBreathPulseMesh_PriceCard:hover {
    border-color: #5AF3FF;
    box-shadow: 0 0 25px rgba(90, 243, 255, 0.2);
    transform: scale(1.02);
}

.verqaniBreathPulseMesh_FeaturedCard {
    border-color: #5AF3FF;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.1);
    transform: scale(1.05);
    background: #0d1216;
}

.verqaniBreathPulseMesh_CardTitle {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.verqaniBreathPulseMesh_PriceValue {
    text-align: center;
    margin-bottom: 30px;
}

.verqaniBreathPulseMesh_OldPrice {
    display: block;
    text-decoration: line-through;
    color: #666;
    font-size: 18px;
}

.verqaniBreathPulseMesh_CurrentPrice {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #5AF3FF;
}

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

.verqaniBreathPulseMesh_PriceFeatures li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #ccc;
    font-size: 15px;
}

.verqaniBreathPulseMesh_PriceFeatures li::before {
    content: '▶';
    color: #5AF3FF;
    margin-right: 10px;
    font-size: 10px;
}

.verqaniBreathPulseMesh_PriceBtn {
    display: block;
    text-align: center;
    padding: 15px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.verqaniBreathPulseMesh_BtnMain {
    background: #5AF3FF;
    color: #050607;
}

.verqaniBreathPulseMesh_PriceBtn:hover {
    background: #5AF3FF;
    color: #050607;
    box-shadow: 0 0 20px #5AF3FF;
}

/* Target Audience */
.verqaniBreathPulseMesh_TargetSection {
    padding: 100px 0;
}

.verqaniBreathPulseMesh_SectionLead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 19px;
    color: #888;
}

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

.verqaniBreathPulseMesh_TargetItem {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    align-items: center;
    padding: 30px;
    background: #0d1216;
    border-left: 4px solid #5AF3FF;
    border-radius: 0 8px 8px 0;
    transition: 0.3s;
}

.verqaniBreathPulseMesh_TargetItem:hover {
    background: #141a20;
    transform: translateX(10px);
}

.verqaniBreathPulseMesh_ItemIcon {
    font-size: 32px;
    font-weight: 900;
    color: rgba(90, 243, 255, 0.2);
    margin-right: 25px;
}

.verqaniBreathPulseMesh_ItemText {
    font-size: 16px;
    color: #ddd;
}

/* Benefits Section */
.verqaniBreathPulseMesh_BenefitsSection {
    padding: 100px 0;
    background: #050607;
}

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

.verqaniBreathPulseMesh_BenefitsTextCol {
    flex: 1.2;
}

.verqaniBreathPulseMesh_BenefitsImageCol {
    flex: 0.8;
}

.verqaniBreathPulseMesh_BenefitsImg {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(90, 243, 255, 0.4);
}

.verqaniBreathPulseMesh_BenefitsList {
    list-style: none;
    margin-top: 40px;
}

.verqaniBreathPulseMesh_BenefitItem {
    margin-bottom: 35px;
    padding-left: 20px;
    position: relative;
}

.verqaniBreathPulseMesh_BenefitItem::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 3px;
    height: 100%;
    background: #5AF3FF;
}

.verqaniBreathPulseMesh_BenefitTitle {
    display: block;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.verqaniBreathPulseMesh_BenefitDesc {
    color: #999;
    font-size: 16px;
}

/* Expert Section */
.verqaniBreathPulseMesh_ExpertSection {
    padding: 100px 0;
    background: linear-gradient(180deg, #050607 0%, #0a0c0e 100%);
}

.verqaniBreathPulseMesh_ExpertQuoteBox {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 60px;
    background: #0d1216;
    border: 1px solid rgba(90, 243, 255, 0.1);
    position: relative;
    border-radius: 20px;
}

.verqaniBreathPulseMesh_MainQuote {
    font-size: 30px;
    font-style: italic;
    color: #5AF3FF;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}

.verqaniBreathPulseMesh_ExpertInfo {
    text-align: center;
}

.verqaniBreathPulseMesh_ExpertName {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.verqaniBreathPulseMesh_ExpertTitle {
    color: #666;
    font-size: 14px;
}

.verqaniBreathPulseMesh_ExpertDisclosure {
    max-width: 700px;
    margin: 0 auto;
}

.verqaniBreathPulseMesh_DisclosureHeader {
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.verqaniBreathPulseMesh_DisclosureList {
    list-style: none;
}

.verqaniBreathPulseMesh_DisclosureList li {
    padding: 15px;
    background: rgba(255,255,255,0.03);
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 15px;
}

/* FAQ Section */
.verqaniBreathPulseMesh_FaqSection {
    padding: 100px 0;
}

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

.verqaniBreathPulseMesh_FaqItem {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(90, 243, 255, 0.2);
}

.verqaniBreathPulseMesh_FaqSummary {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: #fff;
    transition: 0.3s;
    outline: none;
}

.verqaniBreathPulseMesh_FaqSummary:hover {
    color: #5AF3FF;
}

.verqaniBreathPulseMesh_FaqContent {
    padding: 0 20px 20px 20px;
    color: #888;
    font-size: 16px;
}

/* Form Section */
.verqaniBreathPulseMesh_FormSection {
    padding: 100px 0;
    background: #0d1216;
}

.verqaniBreathPulseMesh_FormContainer {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background: #050607;
    border: 2px solid #5AF3FF;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.1);
}

.verqaniBreathPulseMesh_FormSubtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #777;
}

.verqaniBreathPulseMesh_InputGroup {
    margin-bottom: 25px;
}

.verqaniBreathPulseMesh_FieldLabel {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 14px;
}

.verqaniBreathPulseMesh_InputField,
.verqaniBreathPulseMesh_TextField {
    width: 100%;
    padding: 15px;
    background: #141a20;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

.verqaniBreathPulseMesh_InputField:focus,
.verqaniBreathPulseMesh_TextField:focus {
    border-color: #5AF3FF;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.3);
}

.verqaniBreathPulseMesh_TextField {
    height: 120px;
    resize: vertical;
}

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

.verqaniBreathPulseMesh_CheckLabel {
    font-size: 13px;
    color: #777;
}

.verqaniBreathPulseMesh_CheckLabel a {
    color: #5AF3FF;
}

.verqaniBreathPulseMesh_SubmitBtn {
    width: 100%;
    padding: 18px;
    background: #5AF3FF;
    color: #050607;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.verqaniBreathPulseMesh_SubmitBtn:hover {
    box-shadow: 0 0 25px #5AF3FF;
    transform: scale(1.02);
}

/* Extra Content Sections */
.verqaniBreathPulseMesh_ExtraContentSec {
    padding: 100px 0;
}

.verqaniBreathPulseMesh_AltBg {
    background: #0a0c0e;
}

.verqaniBreathPulseMesh_TextContentBox {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.verqaniBreathPulseMesh_SubTitle {
    font-size: 24px;
    color: #fff;
    margin: 40px 0 20px 0;
}

.verqaniBreathPulseMesh_TextList {
    list-style: none;
    margin-bottom: 30px;
}

.verqaniBreathPulseMesh_TextList li {
    padding: 10px 0;
    color: #b0b0b0;
    display: flex;
    align-items: flex-start;
}

.verqaniBreathPulseMesh_TextList li::before {
    content: '→';
    color: #5AF3FF;
    margin-right: 15px;
    font-weight: bold;
}

/* Footer Styles */
.verqaniBreathPulseMesh_MainFooter {
    padding: 80px 0 40px 0;
    background: #050607;
    border-top: 1px solid rgba(90, 243, 255, 0.2);
}

.verqaniBreathPulseMesh_FooterTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.verqaniBreathPulseMesh_FooterBrand {
    font-size: 24px;
    font-weight: 800;
    color: #5AF3FF;
    margin-bottom: 20px;
}

.verqaniBreathPulseMesh_FooterInfo p {
    color: #666;
    margin-bottom: 10px;
    font-size: 15px;
}

.verqaniBreathPulseMesh_FooterInfo a {
    color: #888;
    text-decoration: none;
}

.verqaniBreathPulseMesh_FooterCopyright {
    color: #555;
    font-size: 14px;
}

.verqaniBreathPulseMesh_FooterLinks {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.verqaniBreathPulseMesh_FooterLink {
    text-decoration: none;
    color: #444;
    font-size: 13px;
    transition: 0.3s;
}

.verqaniBreathPulseMesh_FooterLink:hover {
    color: #5AF3FF;
}

/* Media Queries */
@media (max-width: 992px) {
    .verqaniBreathPulseMesh_HeroFlexRow,
    .verqaniBreathPulseMesh_BenefitsFlexRow {
        flex-direction: column;
        text-align: center;
    }
    
    .verqaniBreathPulseMesh_HeroTitle {
        font-size: 40px;
    }
    
    .verqaniBreathPulseMesh_HeroImageCol,
    .verqaniBreathPulseMesh_HeroTextCol,
    .verqaniBreathPulseMesh_BenefitsTextCol,
    .verqaniBreathPulseMesh_BenefitsImageCol {
        width: 100%;
    }
    
    .verqaniBreathPulseMesh_HeroImageCol {
        order: 2;
    }
    
    .verqaniBreathPulseMesh_HeroTextCol {
        order: 1;
    }
}

@media (max-width: 768px) {
    .verqaniBreathPulseMesh_BurgerLabel {
        display: flex;
    }
    
    .verqaniBreathPulseMesh_Navigation {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #050607;
        transition: 0.5s;
        z-index: 999;
    }
    
    .verqaniBreathPulseMesh_NavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        width: 100%;
    }
    
    .verqaniBreathPulseMesh_NavToggle:checked ~ .verqaniBreathPulseMesh_Navigation {
        left: 0;
    }
    
    .verqaniBreathPulseMesh_NavToggle:checked ~ .verqaniBreathPulseMesh_BurgerLabel span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .verqaniBreathPulseMesh_NavToggle:checked ~ .verqaniBreathPulseMesh_BurgerLabel span:nth-child(2) {
        opacity: 0;
    }
    
    .verqaniBreathPulseMesh_NavToggle:checked ~ .verqaniBreathPulseMesh_BurgerLabel span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .verqaniBreathPulseMesh_TargetItem {
        flex: 1 1 100%;
    }
    
    .verqaniBreathPulseMesh_PriceCard {
        width: 100%;
        max-width: 400px;
    }
    
    .verqaniBreathPulseMesh_FeaturedCard {
        transform: scale(1);
    }
    
    .verqaniBreathPulseMesh_FormContainer {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .verqaniBreathPulseMesh_HeroTitle {
        font-size: 32px;
    }
    
    .verqaniBreathPulseMesh_SectionHeading {
        font-size: 28px;
    }
    
    .verqaniBreathPulseMesh_MainQuote {
        font-size: 22px;
    }
}