/* VARIABLES & RESET */
:root {
    --perqiro-bg: #050A18;
    --perqiro-card-bg: #0A1128;
    --perqiro-accent: #6AA9FF;
    --perqiro-accent-glow: #00ffe0;
    --perqiro-text: #ffffff;
    --perqiro-text-dim: #b0c4de;
    --perqiro-border: #1e2a4a;
    --perqiro-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* HEADER & NAV */
.perqiroBreathPulseMesh_HeaderContainer {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid var(--perqiro-accent);
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.2);
}

.perqiroBreathPulseMesh_HeaderInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.perqiroBreathPulseMesh_LogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--perqiro-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.perqiroBreathPulseMesh_NavToggleCheckbox {
    display: none;
}

.perqiroBreathPulseMesh_BurgerButton {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.perqiroBreathPulseMesh_BurgerButton span {
    width: 30px;
    height: 3px;
    background-color: var(--perqiro-accent);
    border-radius: 2px;
    transition: var(--perqiro-transition);
}

.perqiroBreathPulseMesh_NavList {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.perqiroBreathPulseMesh_NavLink {
    color: var(--perqiro-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--perqiro-transition);
    font-size: 0.95rem;
}

.perqiroBreathPulseMesh_NavLink:hover {
    color: var(--perqiro-accent);
    text-shadow: 0 0 8px var(--perqiro-accent);
}

/* SECTIONS COMMON */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.perqiroBreathPulseMesh_SectionTitle {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--perqiro-accent);
    position: relative;
}

.perqiroBreathPulseMesh_SectionTitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--perqiro-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* HERO SECTION */
.perqiroBreathPulseMesh_QuickLinksWrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.perqiroBreathPulseMesh_QuickLinkBtn {
    padding: 8px 18px;
    border: 1px solid var(--perqiro-accent);
    color: var(--perqiro-accent);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--perqiro-transition);
}

.perqiroBreathPulseMesh_QuickLinkBtn:hover {
    background: var(--perqiro-accent);
    color: var(--perqiro-bg);
}

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

.perqiroBreathPulseMesh_HeroImageCol {
    flex: 1;
}

.perqiroBreathPulseMesh_HeroImg {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.3);
    object-fit: cover;
}

.perqiroBreathPulseMesh_HeroTextCol {
    flex: 1;
}

.perqiroBreathPulseMesh_MainTitle {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.perqiroBreathPulseMesh_HeroSubtitle {
    font-size: 1.4rem;
    color: var(--perqiro-accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.perqiroBreathPulseMesh_HeroPara {
    margin-bottom: 1.2rem;
    color: var(--perqiro-text-dim);
}

/* BUTTONS */
.perqiroBreathPulseMesh_PrimaryBtn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--perqiro-accent);
    color: var(--perqiro-bg);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: var(--perqiro-transition);
    text-transform: uppercase;
}

.perqiroBreathPulseMesh_PrimaryBtn:hover {
    background: transparent;
    color: var(--perqiro-accent);
    border-color: var(--perqiro-accent);
    box-shadow: 0 0 15px var(--perqiro-accent);
}

.perqiroBreathPulseMesh_CardBtn {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid var(--perqiro-accent);
    color: var(--perqiro-accent);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--perqiro-transition);
}

.perqiroBreathPulseMesh_CardBtn:hover {
    background: rgba(106, 169, 255, 0.1);
}

/* PRICE BLOCK */
.perqiroBreathPulseMesh_PriceNavMini {
    text-align: center;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.perqiroBreathPulseMesh_PriceNavMini a {
    color: var(--perqiro-text-dim);
    text-decoration: none;
    margin: 0 10px;
}

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

.perqiroBreathPulseMesh_PriceCard {
    background: var(--perqiro-card-bg);
    border: 1px solid var(--perqiro-border);
    padding: 40px;
    border-radius: 20px;
    width: 350px;
    transition: var(--perqiro-transition);
    position: relative;
    overflow: hidden;
}

.perqiroBreathPulseMesh_PriceCardFeatured {
    border-color: var(--perqiro-accent);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.perqiroBreathPulseMesh_CardTitle {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.perqiroBreathPulseMesh_CardPrice {
    font-size: 2.2rem;
    color: var(--perqiro-accent);
    margin-bottom: 25px;
    font-weight: 800;
}

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

.perqiroBreathPulseMesh_CardList li {
    padding: 10px 0;
    border-bottom: 1px solid #162447;
    color: var(--perqiro-text-dim);
}

/* EXPERT BLOCK */
.perqiroBreathPulseMesh_ExpertQuoteBox {
    background: linear-gradient(135deg, #0a1128 0%, #050a18 100%);
    padding: 60px;
    border-left: 5px solid var(--perqiro-accent);
    margin-bottom: 50px;
    border-radius: 0 20px 20px 0;
}

.perqiroBreathPulseMesh_QuoteText {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.perqiroBreathPulseMesh_ExpertName {
    font-weight: bold;
    color: var(--perqiro-accent);
    font-size: 1.2rem;
}

.perqiroBreathPulseMesh_ExpertDetailsList {
    padding: 20px;
}

.perqiroBreathPulseMesh_ListHeader {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.perqiroBreathPulseMesh_DetailItem {
    margin-bottom: 25px;
}

.perqiroBreathPulseMesh_DetailTitle {
    color: var(--perqiro-accent);
    margin-bottom: 5px;
}

/* BENEFITS SECTION */
.perqiroBreathPulseMesh_BenefitsContainer {
    display: flex;
    gap: 60px;
    align-items: center;
}

.perqiroBreathPulseMesh_BenefitsTextCol {
    flex: 1.2;
}

.perqiroBreathPulseMesh_BenefitsImageCol {
    flex: 0.8;
}

.perqiroBreathPulseMesh_BenefitsImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 0 rgba(106, 169, 255, 0.1);
}

.perqiroBreathPulseMesh_BenefitsList {
    list-style: none;
    margin-top: 30px;
}

.perqiroBreathPulseMesh_BenefitItem {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
}

.perqiroBreathPulseMesh_BenefitItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--perqiro-accent);
    font-weight: bold;
}

/* TARGET SECTION */
.perqiroBreathPulseMesh_TargetHeroImgWrapper {
    width: 100%;
    margin-bottom: 50px;
}

.perqiroBreathPulseMesh_TargetFullImg {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.perqiroBreathPulseMesh_TargetGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.perqiroBreathPulseMesh_TargetCard {
    background: var(--perqiro-card-bg);
    padding: 25px;
    border-radius: 12px;
    flex: 1 1 300px;
    border: 1px solid var(--perqiro-border);
    transition: var(--perqiro-transition);
}

.perqiroBreathPulseMesh_TargetCard:hover {
    border-color: var(--perqiro-accent);
    box-shadow: 0 0 15px rgba(106, 169, 255, 0.1);
}

/* FAQ SECTION */
.perqiroBreathPulseMesh_FaqWrapper {
    max-width: 800px;
    margin: 0 auto;
}

.perqiroBreathPulseMesh_FaqItem {
    background: var(--perqiro-card-bg);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--perqiro-border);
}

.perqiroBreathPulseMesh_FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.perqiroBreathPulseMesh_FaqSummary::after {
    content: '+';
    color: var(--perqiro-accent);
    font-size: 1.5rem;
}

.perqiroBreathPulseMesh_FaqItem[open] .perqiroBreathPulseMesh_FaqSummary::after {
    content: '-';
}

.perqiroBreathPulseMesh_FaqAnswer {
    padding: 0 20px 20px;
    color: var(--perqiro-text-dim);
}

/* FORM SECTION */
.perqiroBreathPulseMesh_FormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--perqiro-card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--perqiro-accent);
}

.perqiroBreathPulseMesh_ContactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.perqiroBreathPulseMesh_InputGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.perqiroBreathPulseMesh_InputGroup label {
    font-size: 0.9rem;
    color: var(--perqiro-accent);
}

.perqiroBreathPulseMesh_InputGroup input, 
.perqiroBreathPulseMesh_InputGroup textarea {
    background: #050a18;
    border: 1px solid var(--perqiro-border);
    padding: 12px;
    color: white;
    border-radius: 5px;
    outline: none;
    transition: var(--perqiro-transition);
}

.perqiroBreathPulseMesh_InputGroup input:focus, 
.perqiroBreathPulseMesh_InputGroup textarea:focus {
    border-color: var(--perqiro-accent);
}

.perqiroBreathPulseMesh_CheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
}

.perqiroBreathPulseMesh_SubmitBtn {
    background: var(--perqiro-accent);
    color: var(--perqiro-bg);
    border: none;
    padding: 15px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--perqiro-transition);
}

.perqiroBreathPulseMesh_SubmitBtn:hover {
    box-shadow: 0 0 20px var(--perqiro-accent);
}

/* EXTRA SECTIONS */
.perqiroBreathPulseMesh_ExtraSection {
    border-top: 1px solid #162447;
}

.perqiroBreathPulseMesh_FocusBox {
    background: rgba(106, 169, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px dashed var(--perqiro-accent);
}

.perqiroBreathPulseMesh_InfoGrid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.perqiroBreathPulseMesh_InfoItem {
    background: var(--perqiro-card-bg);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 250px;
}

.perqiroBreathPulseMesh_InlineList {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* FOOTER */
.perqiroBreathPulseMesh_Footer {
    background: #02050d;
    padding: 80px 20px 40px;
    border-top: 2px solid var(--perqiro-accent);
}

.perqiroBreathPulseMesh_FooterTop {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: center;
}

.perqiroBreathPulseMesh_FooterLogo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--perqiro-accent);
    margin-bottom: 20px;
}

.perqiroBreathPulseMesh_FooterBottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #162447;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--perqiro-text-dim);
}

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

.perqiroBreathPulseMesh_FooterNav a {
    color: var(--perqiro-text-dim);
    text-decoration: none;
    transition: var(--perqiro-transition);
}

.perqiroBreathPulseMesh_FooterNav a:hover {
    color: var(--perqiro-accent);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .perqiroBreathPulseMesh_HeroColumns, 
    .perqiroBreathPulseMesh_BenefitsContainer {
        flex-direction: column;
    }
    .perqiroBreathPulseMesh_HeroTextCol {
        text-align: center;
    }
    .perqiroBreathPulseMesh_MainTitle {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .perqiroBreathPulseMesh_BurgerButton {
        display: flex;
    }
    .perqiroBreathPulseMesh_NavigationMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--perqiro-bg);
        display: none;
        padding: 20px;
        border-bottom: 1px solid var(--perqiro-accent);
    }
    .perqiroBreathPulseMesh_NavToggleCheckbox:checked ~ .perqiroBreathPulseMesh_NavigationMenu {
        display: block;
    }
    .perqiroBreathPulseMesh_NavList {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .perqiroBreathPulseMesh_HeroImageCol {
        order: -1;
    }
    .perqiroBreathPulseMesh_PriceCardFeatured {
        transform: scale(1);
    }
    .perqiroBreathPulseMesh_FooterBottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}