/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

.narxirozBreathTempoNest_BodyBase {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #03070A;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: #42FFD5;
    margin-bottom: 20px;
    line-height: 1.2;
}

.narxirozBreathTempoNest_MainTitle { font-size: 3rem; font-weight: 800; }
.narxirozBreathTempoNest_SectionTitle { font-size: 2.2rem; text-align: center; margin-bottom: 40px; }
.narxirozBreathTempoNest_MiniTitle { font-size: 1.5rem; margin-top: 25px; }

/* Header */
.narxirozBreathTempoNest_HeaderMain {
    background: rgba(3, 7, 10, 0.95);
    border-bottom: 2px solid #42FFD5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.narxirozBreathTempoNest_LogoText {
    font-size: 1.8rem;
    font-weight: 900;
    color: #42FFD5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.narxirozBreathTempoNest_NavLink {
    text-decoration: none;
    color: #E0E0E0;
    font-weight: 600;
    transition: color 0.3s;
}

.narxirozBreathTempoNest_NavLink:hover {
    color: #42FFD5;
}

/* Burger Menu */
.narxirozBreathTempoNest_NavCheckbox { display: none; }
.narxirozBreathTempoNest_BurgerBtn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.narxirozBreathTempoNest_BurgerBtn span {
    width: 30px;
    height: 3px;
    background: #42FFD5;
}

/* Hero Section */
.narxirozBreathTempoNest_HeroSection {
    padding: 80px 0;
}

.narxirozBreathTempoNest_HeroGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.narxirozBreathTempoNest_HeroImagesGrid {
    flex: 1 1 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.narxirozBreathTempoNest_HeroImg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #101418;
}

.narxirozBreathTempoNest_HeroImg:nth-child(1) { grid-column: span 2; }

.narxirozBreathTempoNest_HeroContent {
    flex: 1 1 500px;
}

.narxirozBreathTempoNest_SubTitle {
    font-size: 1.3rem;
    color: #42FFD5;
    margin-bottom: 20px;
}

.narxirozBreathTempoNest_TextContent {
    margin-bottom: 20px;
    color: #B0B0B0;
}

/* Buttons */
.narxirozBreathTempoNest_ButtonPrimary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #42FFD5;
    color: #03070A;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: box-shadow 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.narxirozBreathTempoNest_ButtonPrimary:hover {
    box-shadow: 0 0 15px rgba(66, 255, 213, 0.6);
    transform: translateY(-2px);
}

.narxirozBreathTempoNest_ButtonSecondary {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: #42FFD5;
    border: 1px solid #42FFD5;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.narxirozBreathTempoNest_ButtonSecondary:hover {
    background: #42FFD5;
    color: #03070A;
}

/* Reviews Slider (CSS Only) */
.narxirozBreathTempoNest_ReviewsSection {
    padding: 80px 0;
    background-color: #080C10;
}

.narxirozBreathTempoNest_SliderWrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.narxirozBreathTempoNest_SliderSlides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.narxirozBreathTempoNest_SlideItem {
    min-width: 100%;
    padding: 40px;
}

.narxirozBreathTempoNest_Quote {
    font-style: italic;
    font-size: 1.4rem;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.narxirozBreathTempoNest_Author {
    display: block;
    font-style: normal;
    font-weight: 700;
    color: #42FFD5;
    margin-top: 15px;
}

.narxirozBreathTempoNest_SliderRadio { display: none; }

#narxirozBreathTempoNest_Slide1:checked ~ .narxirozBreathTempoNest_SliderSlides { transform: translateX(0%); }
#narxirozBreathTempoNest_Slide2:checked ~ .narxirozBreathTempoNest_SliderSlides { transform: translateX(-100%); }
#narxirozBreathTempoNest_Slide3:checked ~ .narxirozBreathTempoNest_SliderSlides { transform: translateX(-200%); }

.narxirozBreathTempoNest_SliderControls {
    margin-top: 20px;
}

.narxirozBreathTempoNest_SliderLabel {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #2a2e33;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

#narxirozBreathTempoNest_Slide1:checked ~ .narxirozBreathTempoNest_SliderControls label[for="narxirozBreathTempoNest_Slide1"],
#narxirozBreathTempoNest_Slide2:checked ~ .narxirozBreathTempoNest_SliderControls label[for="narxirozBreathTempoNest_Slide2"],
#narxirozBreathTempoNest_Slide3:checked ~ .narxirozBreathTempoNest_SliderControls label[for="narxirozBreathTempoNest_Slide3"] {
    background: #42FFD5;
    box-shadow: 0 0 8px #42FFD5;
}

/* Who it is for */
.narxirozBreathTempoNest_TargetSection { padding: 80px 0; }
.narxirozBreathTempoNest_TargetIntroImgWrapper { margin-bottom: 50px; }
.narxirozBreathTempoNest_TargetIntroImg { width: 100%; border-radius: 12px; object-fit: cover; }
.narxirozBreathTempoNest_SectionIntro { text-align: center; margin-bottom: 30px; font-size: 1.2rem; }

.narxirozBreathTempoNest_CheckList {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    justify-content: center;
}

.narxirozBreathTempoNest_CheckItem {
    background: #101418;
    padding: 20px;
    border-radius: 8px;
    width: calc(50% - 20px);
    border-left: 4px solid #42FFD5;
}

/* Benefits Section */
.narxirozBreathTempoNest_BenefitsSection { padding: 80px 0; background: #03070A; }
.narxirozBreathTempoNest_BenefitsFlex { display: flex; flex-wrap: wrap; align-items: center; gap: 50px; }
.narxirozBreathTempoNest_BenefitsContent { flex: 1 1 500px; }
.narxirozBreathTempoNest_BenefitsImgBox { flex: 1 1 400px; }
.narxirozBreathTempoNest_BenefitImg { width: 100%; border-radius: 50%; border: 2px solid #42FFD5; }
.narxirozBreathTempoNest_BenefitsList { list-style: none; }
.narxirozBreathTempoNest_BenefitsList li { margin-bottom: 15px; position: relative; padding-left: 25px; }
.narxirozBreathTempoNest_BenefitsList li::before { content: '→'; position: absolute; left: 0; color: #42FFD5; }

/* Pricing */
.narxirozBreathTempoNest_PricingSection { padding: 80px 0; background: #080C10; }
.narxirozBreathTempoNest_PriceQuickLinks { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; }
.narxirozBreathTempoNest_QuickLinkItem { color: #42FFD5; text-decoration: none; padding: 5px 15px; border: 1px solid #42FFD5; border-radius: 20px; font-size: 0.9rem; }
.narxirozBreathTempoNest_PriceGrid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.narxirozBreathTempoNest_PriceCard {
    background: #101418;
    padding: 40px;
    border-radius: 12px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    text-align: center;
    border: 1px solid #2a2e33;
    transition: transform 0.3s;
}
.narxirozBreathTempoNest_PriceCard:hover { transform: scale(1.05); }
.narxirozBreathTempoNest_CardFeatured { border-color: #42FFD5; position: relative; }
.narxirozBreathTempoNest_PriceValue { font-size: 2.5rem; font-weight: 800; color: #fff; margin: 20px 0; }
.narxirozBreathTempoNest_PriceFeatures { list-style: none; margin-bottom: 30px; text-align: left; }
.narxirozBreathTempoNest_PriceFeatures li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.narxirozBreathTempoNest_PriceFeatures li::before { content: '•'; color: #42FFD5; position: absolute; left: 0; }

/* Text Sections */
.narxirozBreathTempoNest_TextInfoSection { padding: 80px 0; }
.narxirozBreathTempoNest_AltBg { background-color: #080C10; }
.narxirozBreathTempoNest_StandardList { margin: 20px 0 20px 20px; list-style: square; color: #B0B0B0; }
.narxirozBreathTempoNest_InfoGrid { display: flex; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.narxirozBreathTempoNest_InfoBox { flex: 1 1 400px; background: #101418; padding: 25px; border-radius: 8px; }

/* FAQ */
.narxirozBreathTempoNest_FAQSection { padding: 80px 0; }
.narxirozBreathTempoNest_FAQList { max-width: 800px; margin: 0 auto; }
.narxirozBreathTempoNest_FAQItem { background: #101418; margin-bottom: 10px; border-radius: 4px; overflow: hidden; }
.narxirozBreathTempoNest_FAQSummary { padding: 20px; cursor: pointer; font-weight: 700; color: #42FFD5; list-style: none; position: relative; }
.narxirozBreathTempoNest_FAQSummary::-webkit-details-marker { display: none; }
.narxirozBreathTempoNest_FAQContent { padding: 20px; background: #080C10; color: #B0B0B0; border-top: 1px solid #2a2e33; }

/* Form */
.narxirozBreathTempoNest_FormSection { padding: 80px 0; background: #03070A; }
.narxirozBreathTempoNest_FormBox { max-width: 700px; margin: 0 auto; background: #101418; padding: 50px; border-radius: 15px; border: 1px solid #2a2e33; }
.narxirozBreathTempoNest_FormSubTitle { text-align: center; margin-bottom: 35px; }
.narxirozBreathTempoNest_InputRow { margin-bottom: 20px; }
.narxirozBreathTempoNest_FormLabel { display: block; margin-bottom: 8px; font-weight: 600; }
.narxirozBreathTempoNest_InputField, .narxirozBreathTempoNest_TextField {
    width: 100%;
    padding: 12px;
    background: #03070A;
    border: 1px solid #2a2e33;
    color: #fff;
    border-radius: 4px;
}
.narxirozBreathTempoNest_TextField { height: 120px; resize: vertical; }
.narxirozBreathTempoNest_PolicyRow { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 30px; font-size: 0.9rem; }
.narxirozBreathTempoNest_CheckLabel a { color: #42FFD5; }
.narxirozBreathTempoNest_BtnSubmit { width: 100%; }

/* Footer */
.narxirozBreathTempoNest_FooterMain { padding: 60px 0 20px; background: #03070A; border-top: 1px solid #2a2e33; }
.narxirozBreathTempoNest_FooterContent { text-align: center; }
.narxirozBreathTempoNest_FooterBrand { margin-bottom: 20px; font-weight: 600; color: #42FFD5; }
.narxirozBreathTempoNest_FooterContact { margin-bottom: 30px; font-size: 0.9rem; color: #888; }
.narxirozBreathTempoNest_FooterContact a { color: #E0E0E0; text-decoration: none; }
.narxirozBreathTempoNest_FooterLinks { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.narxirozBreathTempoNest_FooterLinks a { color: #888; text-decoration: none; font-size: 0.8rem; }
.narxirozBreathTempoNest_FooterLinks a:hover { color: #42FFD5; }

/* Responsive */
@media (max-width: 992px) {
    .narxirozBreathTempoNest_HeroImagesGrid { flex: 1 1 100%; }
    .narxirozBreathTempoNest_MainTitle { font-size: 2.5rem; }
    .narxirozBreathTempoNest_PriceCard { width: calc(50% - 20px); }
}

@media (max-width: 768px) {
    .narxirozBreathTempoNest_BurgerBtn { display: flex; }
    .narxirozBreathTempoNest_NavMenu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #03070A;
        border-bottom: 1px solid #42FFD5;
    }
    .narxirozBreathTempoNest_NavList { flex-direction: column; padding: 20px; align-items: center; }
    .narxirozBreathTempoNest_NavCheckbox:checked ~ .narxirozBreathTempoNest_NavMenu { display: block; }
    .narxirozBreathTempoNest_HeroGrid { flex-direction: column; }
    .narxirozBreathTempoNest_CheckItem { width: 100%; }
    .narxirozBreathTempoNest_PriceCard { width: 100%; }
    .narxirozBreathTempoNest_FormBox { padding: 25px; }
}