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

body.sadidorBreathPulseMeshBody {
    background-color: #050A18;
    color: #FFFFFF;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* TYPOGRAPHY */
.sadidorBreathPulseMeshTitleH2 {
    font-size: 2.5rem;
    color: #6AA9FF;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sadidorCenter {
    text-align: center;
}

/* HEADER STYLES */
.sadidorBreathPulseMeshHeader {
    background: rgba(5, 10, 24, 0.95);
    border-bottom: 2px solid #6AA9FF;
    box-shadow: 0 4px 20px rgba(106, 169, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.sadidorBreathPulseMeshLogo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #6AA9FF;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.8);
}

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

.sadidorBreathPulseMeshNavLink {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.sadidorBreathPulseMeshNavLink:hover {
    color: #6AA9FF;
}

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

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

.sadidorBreathPulseMeshBurgerLabel span {
    width: 30px;
    height: 3px;
    background-color: #6AA9FF;
    display: block;
    transition: 0.3s;
}

/* HERO SECTION - Variant 4 */
.sadidorBreathPulseMeshHeroBlock {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sadidorBreathPulseMeshHeroBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sadidorBreathPulseMeshHeroBgImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.sadidorBreathPulseMeshHeroOverlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(90deg, rgba(5, 10, 24, 0.8) 0%, rgba(5, 10, 24, 0.4) 100%);
    padding: 100px 0;
}

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

.sadidorBreathPulseMeshHeroImageSide {
    flex: 1;
}

.sadidorBreathPulseMeshHeroImage {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(106, 169, 255, 0.4);
    border: 1px solid #6AA9FF;
}

.sadidorBreathPulseMeshHeroTextSide {
    flex: 1;
}

.sadidorBreathPulseMeshHeroTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.sadidorBreathPulseMeshHeroSub {
    font-size: 1.5rem;
    color: #6AA9FF;
    margin-bottom: 25px;
    font-weight: 600;
}

.sadidorBreathPulseMeshHeroDesc {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #E0E0E0;
}

.sadidorBreathPulseMeshHeroAction {
    margin-top: 40px;
}

/* BUTTONS */
.sadidorBreathPulseMeshBtnPrimary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #6AA9FF;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 2px solid #6AA9FF;
}

.sadidorBreathPulseMeshBtnPrimary:hover {
    background-color: transparent;
    color: #6AA9FF;
    box-shadow: 0 0 15px #6AA9FF;
}

.sadidorBreathPulseMeshBtnSecondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #6AA9FF;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #6AA9FF;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sadidorBreathPulseMeshBtnSecondary:hover {
    background-color: #6AA9FF;
    color: #FFFFFF;
}

/* TARGET AUDIENCE - Variant 2 */
.sadidorBreathPulseMeshTargetSection {
    padding: 100px 0;
    background-color: #080F25;
}

.sadidorBreathPulseMeshSectionHead {
    text-align: center;
    margin-bottom: 60px;
}

.sadidorBreathPulseMeshDecorativeLine {
    width: 80px;
    height: 4px;
    background: #6AA9FF;
    margin: 20px auto;
    position: relative;
}

.sadidorBreathPulseMeshDecorativeLine::before,
.sadidorBreathPulseMeshDecorativeLine::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00D4FF;
    border-radius: 50%;
    top: -3px;
}

.sadidorBreathPulseMeshDecorativeLine::before { left: -20px; }
.sadidorBreathPulseMeshDecorativeLine::after { right: -20px; }

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

.sadidorBreathPulseMeshTargetItem {
    flex: 1 1 calc(25% - 30px);
    background: #050A18;
    padding: 40px;
    border-left: 3px solid #6AA9FF;
    transition: transform 0.3s ease;
    min-width: 250px;
}

.sadidorBreathPulseMeshTargetItem:hover {
    transform: translateY(-10px);
    background: #0B1633;
}

.sadidorBreathPulseMeshTargetIcon {
    font-size: 2rem;
    color: rgba(106, 169, 255, 0.3);
    font-weight: 900;
    margin-bottom: 15px;
}

.sadidorBreathPulseMeshTargetLabel {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.sadidorBreathPulseMeshTargetText {
    font-size: 0.95rem;
    color: #B0B0B0;
}

/* PRICE SLIDER - Variant 6 */
.sadidorBreathPulseMeshPriceSection {
    padding: 100px 0;
}

.sadidorBreathPulseMeshPriceSlider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 40px 10px;
    scrollbar-width: thin;
    scrollbar-color: #6AA9FF #050A18;
}

.sadidorBreathPulseMeshPriceSlider::-webkit-scrollbar {
    height: 8px;
}

.sadidorBreathPulseMeshPriceSlider::-webkit-scrollbar-track {
    background: #050A18;
}

.sadidorBreathPulseMeshPriceSlider::-webkit-scrollbar-thumb {
    background-color: #6AA9FF;
    border-radius: 10px;
}

.sadidorBreathPulseMeshPriceCard {
    flex: 0 0 350px;
    background: #0B1633;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(106, 169, 255, 0.2);
    position: relative;
}

.sadidorFeaturedPrice {
    border: 2px solid #6AA9FF;
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.2);
    transform: scale(1.05);
}

.sadidorBreathPulseMeshPriceBadge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #6AA9FF;
    color: #050A18;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
}

.sadidorBreathPulseMeshPriceName {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.sadidorBreathPulseMeshPriceValue {
    font-size: 3rem;
    font-weight: 800;
    color: #6AA9FF;
    margin-bottom: 30px;
}

.sadidorBreathPulseMeshPriceValue span {
    font-size: 1.2rem;
    color: #FFFFFF;
}

.sadidorBreathPulseMeshPriceList {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.sadidorBreathPulseMeshPriceList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.sadidorBreathPulseMeshPriceList li::before {
    content: '✓';
    color: #6AA9FF;
    margin-right: 10px;
    font-weight: bold;
}

/* QUOTE SECTION - Variant 8 */
.sadidorBreathPulseMeshQuoteSection {
    background: #050A18;
    padding: 120px 0;
    border-top: 1px solid #6AA9FF;
    border-bottom: 1px solid #6AA9FF;
    overflow: hidden;
}

.sadidorBreathPulseMeshQuoteTape {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sadidorBreathPulseMeshQuoteIcon {
    font-size: 8rem;
    color: rgba(106, 169, 255, 0.1);
    line-height: 0;
    margin-bottom: 20px;
}

.sadidorBreathPulseMeshQuoteText {
    font-size: 1.8rem;
    font-style: italic;
    color: #E0E0E0;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.sadidorBreathPulseMeshQuoteAuthor {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6AA9FF;
}

.sadidorBreathPulseMeshQuotePost {
    color: #888;
    font-size: 1rem;
}

/* BENEFITS SECTION */
.sadidorBreathPulseMeshBenefitsSection {
    padding: 100px 0;
    background-color: #080F25;
}

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

.sadidorBreathPulseMeshBenefitsTextSide, .sadidorBreathPulseMeshBenefitsImageSide {
    flex: 1;
}

.sadidorBreathPulseMeshBenefitsList {
    list-style: none;
}

.sadidorBreathPulseMeshBenefitsList li {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.sadidorBreathPulseMeshBenefitsList li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #00D4FF;
    box-shadow: 0 0 10px #00D4FF;
}

.sadidorBreathPulseMeshBenefitImg {
    width: 100%;
    border-radius: 15px;
    border: 1px solid rgba(106, 169, 255, 0.4);
}

/* FAQ SECTION */
.sadidorBreathPulseMeshFAQSection {
    padding: 100px 0;
}

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

.sadidorBreathPulseMeshFAQItem {
    background: #0B1633;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.sadidorBreathPulseMeshFAQSummary {
    padding: 20px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.sadidorBreathPulseMeshFAQSummary:hover {
    background: #111E45;
}

.sadidorBreathPulseMeshFAQSummary::after {
    content: '+';
    color: #6AA9FF;
    font-size: 1.5rem;
}

.sadidorBreathPulseMeshFAQItem[open] .sadidorBreathPulseMeshFAQSummary::after {
    content: '-';
}

.sadidorBreathPulseMeshFAQAnswer {
    padding: 20px 30px;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
    color: #B0B0B0;
    line-height: 1.7;
}

/* FORM SECTION */
.sadidorBreathPulseMeshFormSection {
    padding: 100px 0;
    background-color: #050A18;
}

.sadidorBreathPulseMeshFormCard {
    background: #0B1633;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(106, 169, 255, 0.3);
}

.sadidorBreathPulseMeshFormDesc {
    margin-bottom: 40px;
    color: #B0B0B0;
    text-align: center;
}

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

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

.sadidorBreathPulseMeshFormGroup label {
    font-size: 0.9rem;
    color: #6AA9FF;
    font-weight: 600;
}

.sadidorBreathPulseMeshInput, .sadidorBreathPulseMeshTextarea {
    background: #050A18;
    border: 1px solid #1E2E5A;
    padding: 15px;
    color: #FFFFFF;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.sadidorBreathPulseMeshInput:focus, .sadidorBreathPulseMeshTextarea:focus {
    outline: none;
    border-color: #6AA9FF;
    box-shadow: 0 0 10px rgba(106, 169, 255, 0.2);
}

.sadidorBreathPulseMeshFormCheck {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.sadidorBreathPulseMeshFormCheck a {
    color: #6AA9FF;
    text-decoration: none;
}

.sadidorBreathPulseMeshBtnSubmit {
    background-color: #6AA9FF;
    color: #FFFFFF;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
    margin-top: 10px;
}

.sadidorBreathPulseMeshBtnSubmit:hover {
    background-color: #5591E6;
    transform: translateY(-2px);
}

/* EXTRA ARTICLE SECTIONS */
.sadidorBreathPulseMeshExtraContent {
    padding: 100px 0;
    background-color: #080F25;
}

.sadidorBreathPulseMeshArticle {
    margin-bottom: 80px;
}

.sadidorBreathPulseMeshArticle p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #CCC;
    max-width: 900px;
}

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

.sadidorBreathPulseMeshArticleList li {
    padding: 10px 0 10px 40px;
    position: relative;
}

.sadidorBreathPulseMeshArticleList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
    font-weight: bold;
    font-size: 1.4rem;
    top: 5px;
}

/* FOOTER */
.sadidorBreathPulseMeshFooter {
    padding: 80px 0 40px;
    background: #050A18;
    border-top: 2px solid #1E2E5A;
}

.sadidorBreathPulseMeshFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.sadidorBreathPulseMeshFooterBrand {
    font-size: 2rem;
    font-weight: 900;
    color: #6AA9FF;
}

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

.sadidorBreathPulseMeshFooterContacts a {
    color: #FFFFFF;
    text-decoration: none;
}

.sadidorBreathPulseMeshFooterBottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sadidorBreathPulseMeshFooterNav {
    display: flex;
    gap: 20px;
}

.sadidorBreathPulseMeshFooterNav a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.sadidorBreathPulseMeshFooterNav a:hover {
    color: #6AA9FF;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .sadidorBreathPulseMeshHeroGrid, .sadidorBreathPulseMeshBenefitsGrid {
        flex-direction: column;
    }
    
    .sadidorBreathPulseMeshHeroTitle {
        font-size: 2.8rem;
    }

    .sadidorBreathPulseMeshTargetItem {
        flex: 1 1 calc(50% - 30px);
    }
}

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

    .sadidorBreathPulseMeshNavigation {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #050A18;
        transition: 0.5s;
        border-bottom: 2px solid #6AA9FF;
    }

    .sadidorBreathPulseMeshNavList {
        flex-direction: column;
        padding: 40px;
        align-items: center;
    }

    .sadidorBreathPulseMeshMenuCheckbox:checked ~ .sadidorBreathPulseMeshNavigation {
        left: 0;
    }

    .sadidorBreathPulseMeshHeroTitle {
        font-size: 2.2rem;
    }

    .sadidorBreathPulseMeshTitleH2 {
        font-size: 1.8rem;
    }

    .sadidorBreathPulseMeshFormCard {
        padding: 30px;
    }

    .sadidorBreathPulseMeshFooterTop {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .sadidorBreathPulseMeshTargetItem {
        flex: 1 1 100%;
    }
}