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

html {
    scroll-behavior: smooth;
}

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

/* Container */
.gavitorBreathPulseMeshSectionContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Header */
.gavitorBreathPulseMeshHeaderContainer {
    background-color: rgba(6, 7, 8, 0.95);
    border-bottom: 2px solid #FFC55E;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.gavitorBreathPulseMeshLogoText {
    font-size: 28px;
    font-weight: 800;
    color: #FFC55E;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.gavitorBreathPulseMeshNavLink {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
    text-transform: uppercase;
}

.gavitorBreathPulseMeshNavLink:hover {
    color: #FFC55E;
}

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

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

.gavitorBreathPulseMeshBurgerLabel span {
    width: 25px;
    height: 3px;
    background-color: #FFC55E;
    transition: 0.3s;
}

/* Hero Section */
.gavitorBreathPulseMeshHeroSection {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gavitorBreathPulseMeshHeroBgImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.gavitorBreathPulseMeshHeroOverlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(6, 7, 8, 0.9) 0%, rgba(6, 7, 8, 0.4) 100%);
    display: flex;
    align-items: center;
}

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

.gavitorBreathPulseMeshHeroImageCol {
    flex: 1;
}

.gavitorBreathPulseMeshHeroMainImg {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 197, 94, 0.2);
}

.gavitorBreathPulseMeshHeroTextCol {
    flex: 1.2;
}

.gavitorBreathPulseMeshMainTitleH1 {
    font-size: 52px;
    line-height: 1.1;
    color: #FFC55E;
    margin-bottom: 20px;
    font-weight: 900;
}

.gavitorBreathPulseMeshHeroSubtext {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 300;
}

.gavitorBreathPulseMeshHeroDescription {
    margin-bottom: 20px;
    color: #cccccc;
    font-size: 16px;
}

.gavitorBreathPulseMeshHeroBtnWrapper {
    margin-top: 35px;
}

/* Buttons */
.gavitorBreathPulseMeshBtnPrimary {
    display: inline-block;
    padding: 16px 35px;
    background-color: #FFC55E;
    color: #060708;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gavitorBreathPulseMeshBtnPrimary:hover {
    background-color: #ffd285;
    box-shadow: 0 0 20px rgba(255, 197, 94, 0.6);
    transform: translateY(-2px);
}

.gavitorBreathPulseMeshBtnSecondary {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #FFC55E;
    color: #FFC55E;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.gavitorBreathPulseMeshBtnSecondary:hover {
    background-color: rgba(255, 197, 94, 0.1);
}

/* Section Titles */
.gavitorBreathPulseMeshSectionTitleH2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.gavitorBreathPulseMeshSectionTitleH2 span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #FFC55E;
    border-radius: 50%;
    box-shadow: 0 0 10px #FFC55E;
}

/* For Who Section */
.gavitorBreathPulseMeshBannerImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 50px;
}

.gavitorBreathPulseMeshCheckListItems {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gavitorBreathPulseMeshCheckListItems li {
    background: #121416;
    padding: 15px 20px;
    border-left: 3px solid #FFC55E;
    border-radius: 0 8px 8px 0;
}

.gavitorBreathPulseMeshCheckListItems li span {
    color: #FFC55E;
    margin-right: 10px;
    font-weight: bold;
}

/* Price Section */
.gavitorBreathPulseMeshServicesGrid6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.gavitorBreathPulseMeshServiceCard {
    background: #121416;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #1e1e1e;
    transition: 0.3s;
}

.gavitorBreathPulseMeshServiceCard:hover {
    border-color: #FFC55E;
}

.gavitorBreathPulseMeshCardTitle {
    color: #FFC55E;
    margin-bottom: 15px;
    font-size: 20px;
}

.gavitorBreathPulseMeshCardPrice {
    margin-top: 15px;
    font-weight: 800;
    color: #ffffff;
}

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

.gavitorBreathPulseMeshPackageCard {
    background: #0a0c0e;
    border: 1px solid #1e1e1e;
    padding: 40px;
    flex: 1;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.gavitorBreathPulseMeshPackageCard.featured {
    border: 2px solid #FFC55E;
    transform: scale(1.05);
    background: #121416;
}

.gavitorBreathPulseMeshPkgTitle {
    font-size: 24px;
    margin-bottom: 20px;
}

.gavitorBreathPulseMeshPkgPrice {
    font-size: 36px;
    color: #FFC55E;
    font-weight: 800;
    margin-bottom: 30px;
}

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

.gavitorBreathPulseMeshPkgList li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

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

/* Benefits Section */
.gavitorBreathPulseMeshBenefitsFlex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.gavitorBreathPulseMeshBenefitsTextCol {
    flex: 1;
}

.gavitorBreathPulseMeshBenefitsImageCol {
    flex: 1;
}

.gavitorBreathPulseMeshRoundedImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 0 #121416;
}

.gavitorBreathPulseMeshSimpleList {
    list-style: none;
    margin: 25px 0;
}

.gavitorBreathPulseMeshSimpleList li {
    padding: 10px 0;
    border-bottom: 1px solid #1e1e1e;
}

/* Quote Section */
.gavitorBreathPulseMeshHorizontalRibbonWrapper {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #FFC55E #060708;
}

.gavitorBreathPulseMeshQuoteCard {
    min-width: 400px;
    background: #121416;
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.gavitorBreathPulseMeshQuoteContent {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.gavitorBreathPulseMeshQuoteAuthor {
    color: #FFC55E;
    font-weight: 600;
}

/* FAQ Section */
.gavitorBreathPulseMeshFaqItem {
    background: #121416;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

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

.gavitorBreathPulseMeshFaqQuestion::after {
    content: '+';
    font-size: 24px;
}

.gavitorBreathPulseMeshFaqItem[open] .gavitorBreathPulseMeshFaqQuestion::after {
    content: '-';
}

.gavitorBreathPulseMeshFaqAnswer {
    padding: 0 20px 20px;
    color: #cccccc;
}

/* Form Section */
.gavitorBreathPulseMeshFormWrapper {
    background: #121416;
    padding: 60px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.gavitorBreathPulseMeshMainForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

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

.gavitorBreathPulseMeshInputGroup label {
    font-weight: 600;
}

.gavitorBreathPulseMeshInputGroup input, 
.gavitorBreathPulseMeshInputGroup textarea {
    padding: 15px;
    background: #060708;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}

.gavitorBreathPulseMeshInputGroup input:focus {
    border-color: #FFC55E;
    outline: none;
}

.gavitorBreathPulseMeshCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.gavitorBreathPulseMeshBtnSubmit {
    background: #FFC55E;
    color: #060708;
    border: none;
    padding: 18px 40px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.gavitorBreathPulseMeshBtnSubmit:hover {
    box-shadow: 0 0 25px rgba(255, 197, 94, 0.5);
}

/* Footer */
.gavitorBreathPulseMeshFooter {
    background: #000;
    border-top: 4px solid #FFC55E;
    padding: 60px 0 20px;
}

.gavitorBreathPulseMeshFooterTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.gavitorBreathPulseMeshFooterLogo {
    font-size: 24px;
    font-weight: 800;
    color: #FFC55E;
}

.gavitorBreathPulseMeshFooterContact a {
    color: #fff;
    text-decoration: none;
}

.gavitorBreathPulseMeshFooterMiddle {
    text-align: center;
    border-top: 1px solid #222;
    padding: 30px 0;
    font-size: 14px;
    color: #888;
}

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

.gavitorBreathPulseMeshFooterBottomLinks a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
}

.gavitorBreathPulseMeshFooterBottomLinks a:hover {
    color: #FFC55E;
}

/* Responsive */
@media (max-width: 992px) {
    .gavitorBreathPulseMeshHeroContentGrid {
        flex-direction: column;
        text-align: center;
    }
    .gavitorBreathPulseMeshServicesGrid6 {
        grid-template-columns: 1fr 1fr;
    }
    .gavitorBreathPulseMeshPackagesWrapper {
        flex-direction: column;
        align-items: center;
    }
    .gavitorBreathPulseMeshPackageCard {
        width: 100%;
        max-width: 450px;
    }
    .gavitorBreathPulseMeshBenefitsFlex {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .gavitorBreathPulseMeshBurgerLabel {
        display: flex;
    }
    .gavitorBreathPulseMeshNavigationMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #060708;
        display: none;
        padding: 20px;
        border-bottom: 2px solid #FFC55E;
    }
    .gavitorBreathPulseMeshNavListItems {
        flex-direction: column;
        align-items: center;
    }
    .gavitorBreathPulseMeshNavInput:checked ~ .gavitorBreathPulseMeshNavigationMenu {
        display: block;
    }
    .gavitorBreathPulseMeshMainTitleH1 {
        font-size: 36px;
    }
    .gavitorBreathPulseMeshCheckListItems {
        grid-template-columns: 1fr;
    }
    .gavitorBreathPulseMeshServicesGrid6 {
        grid-template-columns: 1fr;
    }
    .gavitorBreathPulseMeshQuoteCard {
        min-width: 280px;
    }
}