/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.tarovamelBreathPulseMeshMainBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0B0020;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
.tarovamelBreathPulseMeshHeaderContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 0, 32, 0.95);
    border-bottom: 1px solid rgba(185, 140, 255, 0.3);
}

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

.tarovamelBreathPulseMeshTextLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #B98CFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(185, 140, 255, 0.5);
}

.tarovamelBreathPulseMeshUvStrip {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #B98CFF, transparent);
    box-shadow: 0 0 15px #B98CFF;
}

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

.tarovamelBreathPulseMeshNavLink {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.tarovamelBreathPulseMeshNavLink:hover {
    color: #B98CFF;
    text-shadow: 0 0 8px #B98CFF;
}

/* Mobile Menu Logic (No JS) */
.tarovamelBreathPulseMeshMenuCheckbox {
    display: none;
}

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

.tarovamelBreathPulseMeshMenuButton span {
    width: 30px;
    height: 3px;
    background-color: #B98CFF;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .tarovamelBreathPulseMeshMenuButton {
        display: flex;
    }

    .tarovamelBreathPulseMeshNavigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0B0020;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        border-bottom: 0 solid rgba(185, 140, 255, 0.3);
    }

    .tarovamelBreathPulseMeshNavList {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }

    .tarovamelBreathPulseMeshMenuCheckbox:checked ~ .tarovamelBreathPulseMeshNavigation {
        max-height: 400px;
        border-bottom: 1px solid rgba(185, 140, 255, 0.3);
    }
}

/* Hero Section */
.tarovamelBreathPulseMeshHeroSection {
    padding: 140px 20px 80px;
    position: relative;
}

.tarovamelBreathPulseMeshHeroContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.tarovamelBreathPulseMeshHeroRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.tarovamelBreathPulseMeshHeroImageCol, 
.tarovamelBreathPulseMeshHeroTextCol {
    flex: 1;
    min-width: 320px;
}

.tarovamelBreathPulseMeshHeroMainImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.2);
    border: 1px solid rgba(185, 140, 255, 0.2);
    object-fit: cover;
}

.tarovamelBreathPulseMeshHeroTitle {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, #B98CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tarovamelBreathPulseMeshHeroSubtitle {
    font-size: 1.4rem;
    color: #B98CFF;
    margin-bottom: 20px;
    font-weight: 300;
}

.tarovamelBreathPulseMeshHeroDescription {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.tarovamelBreathPulseMeshPrimaryBtn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #B98CFF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 0 15px rgba(185, 140, 255, 0.4);
    margin-top: 20px;
}

.tarovamelBreathPulseMeshPrimaryBtn:hover {
    background-color: #a366ff;
    box-shadow: 0 0 25px #B98CFF;
    transform: translateY(-2px);
}

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

.tarovamelBreathPulseMeshGalleryItem {
    flex: 1;
    min-width: 280px;
    background: rgba(26, 0, 64, 0.5);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(185, 140, 255, 0.1);
    transition: transform 0.3s ease;
}

.tarovamelBreathPulseMeshGalleryItem:hover {
    transform: translateY(-10px);
    border-color: rgba(185, 140, 255, 0.4);
}

.tarovamelBreathPulseMeshGalleryImg {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.tarovamelBreathPulseMeshGalleryTitle {
    font-size: 1.2rem;
    color: #B98CFF;
    margin-bottom: 10px;
}

.tarovamelBreathPulseMeshGalleryText {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.tarovamelBreathPulseMeshGlitchLine {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: #B98CFF;
    opacity: 0.3;
}

/* Reviews Slider Section */
.tarovamelBreathPulseMeshReviewsSection {
    padding: 80px 20px;
    background-color: rgba(26, 0, 64, 0.3);
}

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

.tarovamelBreathPulseMeshSectionTitle {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.tarovamelBreathPulseMeshUvArrow {
    width: 60px;
    height: 4px;
    background-color: #B98CFF;
    margin: 0 auto;
    position: relative;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.tarovamelBreathPulseMeshSliderWrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.tarovamelBreathPulseMeshSliderInput {
    display: none;
}

.tarovamelBreathPulseMeshSlidesContainer {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.tarovamelBreathPulseMeshSlide {
    min-width: 100%;
    padding: 20px;
}

.tarovamelBreathPulseMeshReviewCard {
    background: #1a0040;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #B98CFF;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(185, 140, 255, 0.1);
}

.tarovamelBreathPulseMeshReviewQuote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.tarovamelBreathPulseMeshReviewAuthor {
    color: #B98CFF;
    font-weight: bold;
}

/* Slider Controls */
#tarovamelBreathPulseMeshSlide1:checked ~ .tarovamelBreathPulseMeshSlidesContainer { transform: translateX(0); }
#tarovamelBreathPulseMeshSlide2:checked ~ .tarovamelBreathPulseMeshSlidesContainer { transform: translateX(-100%); }
#tarovamelBreathPulseMeshSlide3:checked ~ .tarovamelBreathPulseMeshSlidesContainer { transform: translateX(-200%); }

.tarovamelBreathPulseMeshSliderControls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.tarovamelBreathPulseMeshSliderDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(185, 140, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

#tarovamelBreathPulseMeshSlide1:checked ~ .tarovamelBreathPulseMeshSliderControls label[for="tarovamelBreathPulseMeshSlide1"],
#tarovamelBreathPulseMeshSlide2:checked ~ .tarovamelBreathPulseMeshSliderControls label[for="tarovamelBreathPulseMeshSlide2"],
#tarovamelBreathPulseMeshSlide3:checked ~ .tarovamelBreathPulseMeshSliderControls label[for="tarovamelBreathPulseMeshSlide3"] {
    background-color: #B98CFF;
    box-shadow: 0 0 8px #B98CFF;
}

/* For Whom Section */
.tarovamelBreathPulseMeshTargetSection {
    padding: 80px 20px;
}

.tarovamelBreathPulseMeshTargetContainer {
    max-width: 1000px;
    margin: 0 auto;
}

.tarovamelBreathPulseMeshTargetBanner {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(185, 140, 255, 0.2);
}

.tarovamelBreathPulseMeshTargetList {
    list-style: none;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tarovamelBreathPulseMeshTargetListItem {
    flex: 1 1 45%;
    background: rgba(185, 140, 255, 0.05);
    padding: 15px 20px;
    border-left: 4px solid #B98CFF;
    border-radius: 0 10px 10px 0;
    font-size: 1rem;
}

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

/* Pricing Section */
.tarovamelBreathPulseMeshPricingSection {
    padding: 80px 20px;
    background-color: #0B0020;
}

.tarovamelBreathPulseMeshPriceGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.tarovamelBreathPulseMeshPriceCard {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #1a0040;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(185, 140, 255, 0.3);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tarovamelBreathPulseMeshPriceCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #B98CFF;
    opacity: 0;
    transition: opacity 0.3s;
}

.tarovamelBreathPulseMeshPriceCard:hover::before {
    opacity: 1;
}

.tarovamelBreathPulseMeshPriceCardFeatured {
    border-color: #B98CFF;
    box-shadow: 0 0 25px rgba(185, 140, 255, 0.2);
    transform: scale(1.05);
    z-index: 10;
}

.tarovamelBreathPulseMeshPriceValue {
    font-size: 2.2rem;
    font-weight: 800;
    color: #B98CFF;
    margin-bottom: 10px;
}

.tarovamelBreathPulseMeshPriceName {
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.tarovamelBreathPulseMeshPriceFeatures li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.tarovamelBreathPulseMeshPriceFeatures li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #B98CFF;
}

.tarovamelBreathPulseMeshSecondaryBtn {
    display: block;
    text-align: center;
    padding: 12px 25px;
    border: 2px solid #B98CFF;
    color: #B98CFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tarovamelBreathPulseMeshSecondaryBtn:hover {
    background-color: #B98CFF;
    color: #ffffff;
    box-shadow: 0 0 15px #B98CFF;
}

/* Expert Section */
.tarovamelBreathPulseMeshExpertSection {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0B0020 0%, #1a0040 100%);
}

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

.tarovamelBreathPulseMeshQuoteWrapper {
    position: relative;
    padding: 40px;
}

.tarovamelBreathPulseMeshExpertQuote {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
    font-style: italic;
}

.tarovamelBreathPulseMeshExpertName {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #B98CFF;
}

.tarovamelBreathPulseMeshExpertTitle {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

/* Benefits Section */
.tarovamelBreathPulseMeshBenefitsSection {
    padding: 80px 20px;
}

.tarovamelBreathPulseMeshBenefitsContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.tarovamelBreathPulseMeshBenefitsText {
    flex: 1.2;
    min-width: 320px;
}

.tarovamelBreathPulseMeshBenefitsImage {
    flex: 0.8;
    min-width: 320px;
}

.tarovamelBreathPulseMeshBenefitsImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 0 rgba(185, 140, 255, 0.1);
}

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

.tarovamelBreathPulseMeshBenefitsList li {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.tarovamelBreathPulseMeshBenefitsList li strong {
    color: #B98CFF;
    display: block;
    margin-bottom: 5px;
}

/* FAQ Section */
.tarovamelBreathPulseMeshFaqSection {
    padding: 80px 20px;
    background-color: rgba(26, 0, 64, 0.4);
}

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

.tarovamelBreathPulseMeshFaqList {
    margin-top: 40px;
}

.tarovamelBreathPulseMeshFaqItem {
    background: rgba(11, 0, 32, 0.6);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(185, 140, 255, 0.2);
    overflow: hidden;
}

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

.tarovamelBreathPulseMeshFaqSummary::after {
    content: '+';
    font-size: 1.5rem;
}

.tarovamelBreathPulseMeshFaqItem[open] .tarovamelBreathPulseMeshFaqSummary::after {
    content: '−';
}

.tarovamelBreathPulseMeshFaqContent {
    padding: 0 20px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Extra Text Sections */
.tarovamelBreathPulseMeshExtraSection {
    padding: 100px 20px;
}

.tarovamelBreathPulseMeshBgAlt {
    background-color: rgba(185, 140, 255, 0.03);
}

.tarovamelBreathPulseMeshExtraContainer {
    max-width: 1000px;
    margin: 0 auto;
}

.tarovamelBreathPulseMeshExtraTitle {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #B98CFF;
}

.tarovamelBreathPulseMeshExtraText {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.tarovamelBreathPulseMeshExtraList {
    margin: 30px 0;
    padding-left: 20px;
}

.tarovamelBreathPulseMeshExtraList li {
    margin-bottom: 15px;
    color: #ffffff;
}

.tarovamelBreathPulseMeshStepBox {
    background: #1a0040;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 5px solid #B98CFF;
}

.tarovamelBreathPulseMeshStepTitle {
    margin-bottom: 15px;
    color: #B98CFF;
}

.tarovamelBreathPulseMeshStepDesc {
    margin-bottom: 10px;
}

/* Form Section */
.tarovamelBreathPulseMeshFormSection {
    padding: 100px 20px;
    background: #0B0020;
}

.tarovamelBreathPulseMeshFormContainer {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(26, 0, 64, 0.8);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #B98CFF;
    box-shadow: 0 0 40px rgba(185, 140, 255, 0.15);
}

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

.tarovamelBreathPulseMeshInputGroup {
    margin-bottom: 25px;
}

.tarovamelBreathPulseMeshLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #B98CFF;
}

.tarovamelBreathPulseMeshInput, 
.tarovamelBreathPulseMeshTextarea {
    width: 100%;
    padding: 15px;
    background: rgba(11, 0, 32, 0.8);
    border: 1px solid rgba(185, 140, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.tarovamelBreathPulseMeshInput:focus, 
.tarovamelBreathPulseMeshTextarea:focus {
    outline: none;
    border-color: #B98CFF;
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.3);
}

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

.tarovamelBreathPulseMeshCheckboxLabel {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.tarovamelBreathPulseMeshCheckboxLabel a {
    color: #B98CFF;
}

.tarovamelBreathPulseMeshSubmitBtn {
    width: 100%;
    padding: 18px;
    background-color: #B98CFF;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tarovamelBreathPulseMeshSubmitBtn:hover {
    background-color: #a366ff;
    box-shadow: 0 0 20px #B98CFF;
}

/* Footer */
.tarovamelBreathPulseMeshFooter {
    background-color: #050010;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(185, 140, 255, 0.2);
}

.tarovamelBreathPulseMeshFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.tarovamelBreathPulseMeshFooterLogo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #B98CFF;
    margin-bottom: 20px;
}

.tarovamelBreathPulseMeshFooterInfo p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.tarovamelBreathPulseMeshFooterInfo a {
    color: #B98CFF;
    text-decoration: none;
}

.tarovamelBreathPulseMeshFooterLinks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tarovamelBreathPulseMeshFooterLink {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.tarovamelBreathPulseMeshFooterLink:hover {
    color: #B98CFF;
}

@media (max-width: 768px) {
    .tarovamelBreathPulseMeshFooterContainer {
        flex-direction: column;
        text-align: center;
    }
    .tarovamelBreathPulseMeshHeroTitle {
        font-size: 2.2rem;
    }
}