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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography Defaults */
h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.koravelinBreathPulseMeshNeonText {
    color: #5AF3FF;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.6);
}

.koravelinBreathPulseMeshTitleH1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.koravelinBreathPulseMeshTitleH2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.koravelinBreathPulseMeshTitleH2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #5AF3FF;
    box-shadow: 0 0 15px #5AF3FF;
}

.koravelinBreathPulseMeshTitleH3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #5AF3FF;
}

.koravelinBreathPulseMeshText {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #b0b0b0;
}

/* Header Styles */
.koravelinBreathPulseMeshHeader {
    background-color: rgba(5, 6, 7, 0.95);
    border-bottom: 1px solid rgba(90, 243, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(90, 243, 255, 0.1);
}

.koravelinBreathPulseMeshFlexHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.koravelinBreathPulseMeshLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #5AF3FF;
    text-shadow: 0 0 8px rgba(90, 243, 255, 0.5);
    text-transform: uppercase;
}

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

.koravelinBreathPulseMeshNavLink {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    text-transform: uppercase;
}

.koravelinBreathPulseMeshNavLink:hover {
    color: #5AF3FF;
    text-shadow: 0 0 10px #5AF3FF;
}

/* Burger Menu (No JS) */
.koravelinBreathPulseMeshMenuCheckbox {
    display: none;
}

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

.koravelinBreathPulseMeshBurger span {
    width: 30px;
    height: 3px;
    background-color: #5AF3FF;
    transition: 0.3s;
}

/* Hero Section Styling */
.koravelinBreathPulseMeshHero {
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid rgba(90, 243, 255, 0.1);
}

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

.koravelinBreathPulseMeshHeroImageWrap {
    flex: 1;
    position: relative;
}

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

.koravelinBreathPulseMeshHeroGallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.koravelinBreathPulseMeshGalleryItem {
    width: 30%;
    border: 1px solid rgba(90, 243, 255, 0.4);
    filter: grayscale(0.5);
    transition: 0.3s;
}

.koravelinBreathPulseMeshGalleryItem:hover {
    filter: grayscale(0);
    border-color: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

.koravelinBreathPulseMeshHeroContent {
    flex: 1;
}

.koravelinBreathPulseMeshSubtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 300;
}

.koravelinBreathPulseMeshBtnGroup {
    margin-top: 35px;
}

.koravelinBreathPulseMeshBtnPrimary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.4);
}

.koravelinBreathPulseMeshBtnPrimary:hover {
    background-color: #ffffff;
    box-shadow: 0 0 25px #5AF3FF;
    transform: translateY(-2px);
}

.koravelinBreathPulseMeshBtnSecondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #5AF3FF;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #5AF3FF;
    cursor: pointer;
    transition: 0.3s;
}

.koravelinBreathPulseMeshBtnSecondary:hover {
    background-color: rgba(90, 243, 255, 0.1);
    box-shadow: 0 0 15px #5AF3FF;
}

/* Reviews Section Styles */
.koravelinBreathPulseMeshReviews {
    padding: 100px 0;
    background-color: #0a0b0c;
}

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

.koravelinBreathPulseMeshReviewCard {
    background-color: #050607;
    border: 1px solid rgba(90, 243, 255, 0.1);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: 0.4s;
}

.koravelinBreathPulseMeshReviewCard:hover {
    border-color: #5AF3FF;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(90, 243, 255, 0.1);
}

.koravelinBreathPulseMeshReviewText {
    font-style: italic;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.koravelinBreathPulseMeshReviewAuthor {
    color: #5AF3FF;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Pricing Section Styles */
.koravelinBreathPulseMeshPricing {
    padding: 100px 0;
    border-top: 1px solid rgba(90, 243, 255, 0.1);
}

.koravelinBreathPulseMeshPriceWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.koravelinBreathPulseMeshPriceCard {
    background: #08090a;
    border: 1px solid rgba(90, 243, 255, 0.2);
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.koravelinBreathPulseMeshPriceCard::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(90, 243, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.koravelinBreathPulseMeshPriceCard:hover {
    border-color: #5AF3FF;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.1);
}

.koravelinBreathPulseMeshPriceFeatured {
    border: 2px solid #5AF3FF;
    transform: scale(1.05);
    z-index: 2;
    background: #0a0c0e;
}

.koravelinBreathPulseMeshPriceTitle {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.koravelinBreathPulseMeshPriceValue {
    font-size: 3rem;
    font-weight: 800;
    color: #5AF3FF;
    margin-bottom: 10px;
}

.koravelinBreathPulseMeshCurrency {
    font-size: 1.2rem;
    font-weight: 400;
}

.koravelinBreathPulseMeshDiscount {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #777;
    margin-bottom: 30px;
}

.koravelinBreathPulseMeshPriceList {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.koravelinBreathPulseMeshPriceList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: #b0b0b0;
}

.koravelinBreathPulseMeshPriceList li::before {
    content: '→';
    margin-right: 10px;
    color: #5AF3FF;
}

/* Target Section Styling */
.koravelinBreathPulseMeshTarget {
    padding: 100px 0;
    background-color: #050607;
}

.koravelinBreathPulseMeshTargetHeading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.koravelinBreathPulseMeshTargetIntro {
    font-size: 1.2rem;
}

.koravelinBreathPulseMeshTargetGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.koravelinBreathPulseMeshTargetItem {
    padding: 30px;
    border: 1px solid rgba(90, 243, 255, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
}

.koravelinBreathPulseMeshTargetItem:hover {
    background-color: rgba(90, 243, 255, 0.05);
    border-color: #5AF3FF;
}

.koravelinBreathPulseMeshTargetIcon {
    font-size: 1.5rem;
    font-weight: 900;
    color: #5AF3FF;
    opacity: 0.5;
}

.koravelinBreathPulseMeshTargetText {
    font-size: 1rem;
    color: #d0d0d0;
}

/* Expert Section Styling */
.koravelinBreathPulseMeshExpert {
    padding: 100px 0;
    background-color: #0a0b0c;
    border-bottom: 1px solid rgba(90, 243, 255, 0.1);
}

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

.koravelinBreathPulseMeshExpertQuote {
    flex: 1.2;
}

.koravelinBreathPulseMeshBlockquote {
    font-size: 1.5rem;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 25px;
    border-left: 4px solid #5AF3FF;
    padding-left: 25px;
}

.koravelinBreathPulseMeshExpertName {
    font-size: 1.4rem;
    font-weight: 700;
    color: #5AF3FF;
}

.koravelinBreathPulseMeshExpertDesc {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #888;
}

.koravelinBreathPulseMeshListTitle {
    font-weight: 700;
    margin-bottom: 15px;
}

.koravelinBreathPulseMeshExpertUl {
    list-style: none;
}

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

.koravelinBreathPulseMeshExpertUl li::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

.koravelinBreathPulseMeshExpertPhoto {
    flex: 0.8;
}

.koravelinBreathPulseMeshImgExpert {
    width: 100%;
    border-radius: 5px;
    box-shadow: 20px 20px 0px rgba(90, 243, 255, 0.1);
}

/* Benefits Section */
.koravelinBreathPulseMeshBenefits {
    padding: 100px 0;
}

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

.koravelinBreathPulseMeshBenefitContent {
    flex: 1;
}

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

.koravelinBreathPulseMeshBenefitUl li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.koravelinBreathPulseMeshBenefitUl li strong {
    color: #5AF3FF;
}

.koravelinBreathPulseMeshBenefitImage {
    flex: 1;
}

.koravelinBreathPulseMeshImgBenefit {
    width: 100%;
    border: 1px solid rgba(90, 243, 255, 0.2);
}

/* Extra Sections Styling */
.koravelinBreathPulseMeshExtraSection {
    padding: 80px 0;
}

.koravelinBreathPulseMeshDark {
    background-color: #08090a;
}

.koravelinBreathPulseMeshLight {
    background-color: #050607;
}

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

.koravelinBreathPulseMeshExtraList {
    list-style: none;
    margin: 20px 0;
}

.koravelinBreathPulseMeshExtraList li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.koravelinBreathPulseMeshExtraList li::before {
    content: '>>';
    position: absolute;
    left: 0;
    color: #5AF3FF;
    font-weight: 700;
}

/* FAQ Section Styling */
.koravelinBreathPulseMeshFaq {
    padding: 100px 0;
    background-color: #0a0b0c;
}

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

.koravelinBreathPulseMeshFaqItem {
    margin-bottom: 15px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    background-color: #050607;
}

.koravelinBreathPulseMeshFaqSummary {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.koravelinBreathPulseMeshFaqSummary:hover {
    background-color: rgba(90, 243, 255, 0.05);
    color: #5AF3FF;
}

.koravelinBreathPulseMeshFaqSummary::-webkit-details-marker {
    display: none;
}

.koravelinBreathPulseMeshFaqSummary::after {
    content: '+';
    font-size: 1.5rem;
    color: #5AF3FF;
}

.koravelinBreathPulseMeshFaqItem[open] .koravelinBreathPulseMeshFaqSummary::after {
    content: '-';
}

.koravelinBreathPulseMeshFaqContent {
    padding: 0 20px 20px;
    color: #b0b0b0;
    border-top: 1px solid rgba(90, 243, 255, 0.1);
}

/* Contact Form Section */
.koravelinBreathPulseMeshContact {
    padding: 100px 0;
    background-color: #050607;
}

.koravelinBreathPulseMeshContactBox {
    max-width: 700px;
    margin: 0 auto;
    background: #0a0b0c;
    border: 1px solid #5AF3FF;
    padding: 50px;
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.1);
}

.koravelinBreathPulseMeshContactSubtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #888;
}

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

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

.koravelinBreathPulseMeshLabel {
    font-weight: 600;
    font-size: 0.9rem;
    color: #5AF3FF;
}

.koravelinBreathPulseMeshInput,
.koravelinBreathPulseMeshTextarea {
    background-color: #050607;
    border: 1px solid rgba(90, 243, 255, 0.3);
    padding: 12px 15px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.koravelinBreathPulseMeshInput:focus,
.koravelinBreathPulseMeshTextarea:focus {
    outline: none;
    border-color: #5AF3FF;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.2);
}

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

.koravelinBreathPulseMeshCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
}

.koravelinBreathPulseMeshCheckbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #5AF3FF;
}

.koravelinBreathPulseMeshLabelSmall {
    font-size: 0.85rem;
    color: #aaa;
}

.koravelinBreathPulseMeshLabelSmall a {
    color: #5AF3FF;
    text-decoration: underline;
}

.koravelinBreathPulseMeshBtnSubmit {
    margin-top: 10px;
    background-color: #5AF3FF;
    color: #050607;
    padding: 15px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(90, 243, 255, 0.3);
}

.koravelinBreathPulseMeshBtnSubmit:hover {
    box-shadow: 0 0 25px #5AF3FF;
    background-color: #ffffff;
}

/* Footer Styles */
.koravelinBreathPulseMeshFooter {
    padding: 60px 0 30px;
    background-color: #030405;
    border-top: 1px solid rgba(90, 243, 255, 0.3);
}

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

.koravelinBreathPulseMeshFooterLogo {
    font-size: 2rem;
    font-weight: 900;
    color: #5AF3FF;
}

.koravelinBreathPulseMeshFooterInfo p {
    margin-bottom: 5px;
    color: #888;
}

.koravelinBreathPulseMeshFooterInfo a {
    color: #5AF3FF;
    text-decoration: none;
}

.koravelinBreathPulseMeshFooterDivider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.koravelinBreathPulseMeshFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.koravelinBreathPulseMeshCopyright {
    font-size: 0.9rem;
    color: #666;
}

.koravelinBreathPulseMeshFooterLinks {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.koravelinBreathPulseMeshFooterLinks a:hover {
    color: #5AF3FF;
}

/* Responsive Styling */
@media (max-width: 992px) {
    .koravelinBreathPulseMeshHeroGrid,
    .koravelinBreathPulseMeshBenefitGrid,
    .koravelinBreathPulseMeshExpertFlex {
        flex-direction: column;
        text-align: center;
    }

    .koravelinBreathPulseMeshHeroContent, 
    .koravelinBreathPulseMeshExpertQuote,
    .koravelinBreathPulseMeshBenefitContent {
        order: 1;
    }
    
    .koravelinBreathPulseMeshHeroImageWrap,
    .koravelinBreathPulseMeshExpertPhoto,
    .koravelinBreathPulseMeshBenefitImage {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .koravelinBreathPulseMeshTitleH1 {
        font-size: 2.5rem;
    }

    .koravelinBreathPulseMeshBlockquote {
        border-left: none;
        border-top: 4px solid #5AF3FF;
        padding-top: 20px;
        padding-left: 0;
    }

    .koravelinBreathPulseMeshExpertUl li {
        justify-content: center;
    }
}

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

    .koravelinBreathPulseMeshNav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #050607;
        transition: 0.4s;
        z-index: 999;
    }

    .koravelinBreathPulseMeshNavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }

    .koravelinBreathPulseMeshMenuCheckbox:checked ~ .koravelinBreathPulseMeshNav {
        left: 0;
    }

    .koravelinBreathPulseMeshMenuCheckbox:checked ~ .koravelinBreathPulseMeshBurger span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .koravelinBreathPulseMeshMenuCheckbox:checked ~ .koravelinBreathPulseMeshBurger span:nth-child(2) {
        opacity: 0;
    }

    .koravelinBreathPulseMeshMenuCheckbox:checked ~ .koravelinBreathPulseMeshBurger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .koravelinBreathPulseMeshPriceCard {
        max-width: 100%;
    }

    .koravelinBreathPulseMeshPriceFeatured {
        transform: scale(1);
    }

    .koravelinBreathPulseMeshContactBox {
        padding: 30px 20px;
    }

    .koravelinBreathPulseMeshFooterBottom {
        flex-direction: column;
        text-align: center;
    }

    .koravelinBreathPulseMeshFooterLinks {
        justify-content: center;
    }
}