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

html {
    scroll-behavior: smooth;
}

body.bavitorPulseRoutineGlowBodyMain {
    background-color: #0A0C10;
    color: #FFFFFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.bavitorPulseRoutineGlowHeader {
    position: sticky;
    top: 0;
    background-color: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.bavitorPulseRoutineGlowNavWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.bavitorPulseRoutineGlowHeaderLine {
    height: 3px;
    background: #CFFF35;
    width: 100%;
    box-shadow: 0 0 15px rgba(207, 255, 53, 0.6);
    animation: bavitorPulsePulse 2s infinite ease-in-out;
}

@keyframes bavitorPulsePulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

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

.bavitorPulseRoutineGlowNavLink {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.bavitorPulseRoutineGlowNavLink:hover {
    color: #CFFF35;
}

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

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

.bavitorPulseRoutineGlowBurgerBtn span {
    width: 30px;
    height: 3px;
    background: #CFFF35;
    display: block;
    transition: 0.3s;
}

/* Hero Section */
.bavitorPulseRoutineGlowHeroSection {
    padding: 100px 0 60px;
}

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

.bavitorPulseRoutineGlowHeroImageCol, .bavitorPulseRoutineGlowHeroTextCol {
    flex: 1;
}

.bavitorPulseRoutineGlowHeroImg {
    border-radius: 20px;
    box-shadow: 20px 20px 0px #1e1e1e;
}

.bavitorPulseRoutineGlowHeroTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #CFFF35;
}

.bavitorPulseRoutineGlowHeroSub {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.bavitorPulseRoutineGlowHeroDesc {
    margin-bottom: 20px;
    color: #b0b0b0;
    font-size: 17px;
}

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

.bavitorPulseRoutineGlowHeroMiniCard {
    background: #161a21;
    padding: 15px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    border: 1px solid #2a2e35;
}

.bavitorPulseRoutineGlowHeroIcon {
    font-size: 24px;
    margin-bottom: 10px;
}

.bavitorPulseRoutineGlowHeroCardTxt {
    font-size: 14px;
    font-weight: 500;
}

/* Buttons */
.bavitorPulseRoutineGlowBtnPrimary {
    display: inline-block;
    background-color: #CFFF35;
    color: #0A0C10;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.4s;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
}

.bavitorPulseRoutineGlowBtnPrimary:hover {
    box-shadow: 0 0 25px rgba(207, 255, 53, 0.8);
    transform: translateY(-2px);
}

.bavitorPulseRoutineGlowBtnSecondary {
    display: inline-block;
    background-color: transparent;
    color: #CFFF35;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #CFFF35;
    transition: 0.3s;
}

.bavitorPulseRoutineGlowBtnSecondary:hover {
    background-color: #CFFF35;
    color: #0A0C10;
}

/* Separator */
.bavitorPulseRoutineGlowSeparator {
    height: 1px;
    background: linear-gradient(90deg, transparent, #CFFF35, transparent);
    margin: 80px 0;
    opacity: 0.3;
}

/* Reviews */
.bavitorPulseRoutineGlowSectionTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #CFFF35;
}

.bavitorPulseRoutineGlowReviewCard {
    background: #161a21;
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    border-left: 5px solid #CFFF35;
}

.bavitorPulseRoutineGlowStars {
    color: #CFFF35;
    font-size: 24px;
    margin-bottom: 20px;
}

.bavitorPulseRoutineGlowQuote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 25px;
    color: #f0f0f0;
}

.bavitorPulseRoutineGlowCite {
    font-weight: 700;
    color: #CFFF35;
    font-style: normal;
}

.bavitorPulseRoutineGlowReviewsGrid {
    display: flex;
    gap: 30px;
}

.bavitorPulseRoutineGlowReviewSmall {
    background: #0f1218;
    padding: 25px;
    border-radius: 15px;
    flex: 1;
    border: 1px solid #1e242d;
}

.bavitorPulseRoutineGlowReviewText {
    margin: 15px 0;
    font-size: 15px;
    color: #ccc;
}

.bavitorPulseRoutineGlowAuthor {
    font-weight: 600;
    color: #CFFF35;
    font-size: 14px;
}

/* Pricing */
.bavitorPulseRoutineGlowPricingGrid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.bavitorPulseRoutineGlowPriceCard {
    background: #161a21;
    padding: 40px 30px;
    border-radius: 20px;
    width: 350px;
    text-align: center;
    border: 1px solid #2a2e35;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.bavitorPulseRoutineGlowPriceCardFeatured {
    border-color: #CFFF35;
    transform: scale(1.05);
    background: #1c212a;
}

.bavitorPulseRoutineGlowPriceName {
    font-size: 24px;
    margin-bottom: 15px;
}

.bavitorPulseRoutineGlowPriceValue {
    font-size: 40px;
    font-weight: 800;
    color: #CFFF35;
    margin-bottom: 25px;
}

.bavitorPulseRoutineGlowPriceList {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.bavitorPulseRoutineGlowPriceList li {
    padding: 10px 0;
    border-bottom: 1px solid #2a2e35;
    font-size: 15px;
    color: #bbb;
}

.bavitorPulseRoutineGlowPriceList li:last-child {
    border-bottom: none;
}

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

.bavitorPulseRoutineGlowBenefitsTextCol, .bavitorPulseRoutineGlowBenefitsImageCol {
    flex: 1;
}

.bavitorPulseRoutineGlowBenefitsImg {
    border-radius: 20px;
    border: 1px solid #CFFF35;
}

.bavitorPulseRoutineGlowSectionDesc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #b0b0b0;
    font-size: 18px;
}

.bavitorPulseRoutineGlowCheckList {
    list-style: none;
}

.bavitorPulseRoutineGlowCheckList li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.bavitorPulseRoutineGlowCheckList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #CFFF35;
    font-weight: bold;
}

.bavitorPulseRoutineGlowCheckList li span {
    color: #CFFF35;
    font-weight: 600;
}

/* Target Section */
.bavitorPulseRoutineGlowBannerImg {
    border-radius: 20px;
    margin-bottom: 60px;
    object-fit: cover;
}

.bavitorPulseRoutineGlowTargetGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bavitorPulseRoutineGlowTargetItem {
    background: #161a21;
    padding: 30px;
    border-radius: 15px;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.bavitorPulseRoutineGlowTargetItem:hover {
    border-color: #CFFF35;
    transform: translateY(-5px);
}

.bavitorPulseRoutineGlowTargetItem h4 {
    color: #CFFF35;
    font-size: 20px;
    margin-bottom: 10px;
}

/* FAQ Section */
.bavitorPulseRoutineGlowFaqWrapper {
    max-width: 800px;
    margin: 0 auto;
}

.bavitorPulseRoutineGlowFaqItem {
    background: #161a21;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.bavitorPulseRoutineGlowFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #f0f0f0;
    list-style: none;
    position: relative;
}

.bavitorPulseRoutineGlowFaqSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #CFFF35;
    font-size: 20px;
}

details[open] .bavitorPulseRoutineGlowFaqSummary::after {
    content: '-';
}

.bavitorPulseRoutineGlowFaqContent {
    padding: 0 20px 20px;
    color: #aaa;
    font-size: 16px;
}

/* Form Section */
.bavitorPulseRoutineGlowFormSection {
    padding: 100px 0;
    background: linear-gradient(180deg, #0A0C10 0%, #0f1218 100%);
}

.bavitorPulseRoutineGlowFormBox {
    max-width: 600px;
    margin: 0 auto;
    background: #161a21;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #2a2e35;
}

.bavitorPulseRoutineGlowFormSub {
    text-align: center;
    margin-bottom: 30px;
    color: #999;
}

.bavitorPulseRoutineGlowInputRow {
    margin-bottom: 20px;
}

.bavitorPulseRoutineGlowLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #CFFF35;
}

.bavitorPulseRoutineGlowInput, .bavitorPulseRoutineGlowTextarea {
    width: 100%;
    padding: 15px;
    background: #0A0C10;
    border: 1px solid #2a2e35;
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.bavitorPulseRoutineGlowTextarea {
    height: 120px;
    resize: none;
}

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

.bavitorPulseRoutineGlowCheckLabel {
    font-size: 13px;
    color: #888;
}

.bavitorPulseRoutineGlowCheckLabel a {
    color: #CFFF35;
}

.bavitorPulseRoutineGlowBtnSubmit {
    width: 100%;
    background: #CFFF35;
    color: #0A0C10;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.bavitorPulseRoutineGlowBtnSubmit:hover {
    box-shadow: 0 0 20px rgba(207, 255, 53, 0.5);
}

/* Text Sections */
.bavitorPulseRoutineGlowTextSection {
    padding: 60px 0;
}

.bavitorPulseRoutineGlowTextContent p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #d0d0d0;
}

.bavitorPulseRoutineGlowSubHeading {
    color: #CFFF35;
    margin: 30px 0 15px;
    font-size: 24px;
}

.bavitorPulseRoutineGlowSimpleList {
    margin: 20px 0 20px 20px;
}

.bavitorPulseRoutineGlowSimpleList li {
    margin-bottom: 10px;
    color: #ccc;
}

/* Footer */
.bavitorPulseRoutineGlowFooter {
    background: #050608;
    padding: 80px 0 40px;
    border-top: 1px solid #161a21;
}

.bavitorPulseRoutineGlowFooterTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.bavitorPulseRoutineGlowFooterBrand {
    font-size: 24px;
    font-weight: 800;
    color: #CFFF35;
}

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

.bavitorPulseRoutineGlowFooterContact a {
    color: #CFFF35;
    text-decoration: none;
}

.bavitorPulseRoutineGlowFooterMiddle {
    border-top: 1px solid #161a21;
    border-bottom: 1px solid #161a21;
    padding: 30px 0;
    margin-bottom: 30px;
}

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

.bavitorPulseRoutineGlowFooterNav a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.bavitorPulseRoutineGlowFooterNav a:hover {
    color: #CFFF35;
}

.bavitorPulseRoutineGlowFooterBottom {
    text-align: center;
    color: #444;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .bavitorPulseRoutineGlowHeroFlex, .bavitorPulseRoutineGlowBenefitsFlex {
        flex-direction: column;
    }
    
    .bavitorPulseRoutineGlowPricingGrid {
        flex-direction: column;
        align-items: center;
    }
    
    .bavitorPulseRoutineGlowPriceCard {
        width: 100%;
        max-width: 450px;
    }
    
    .bavitorPulseRoutineGlowPriceCardFeatured {
        transform: none;
    }
    
    .bavitorPulseRoutineGlowReviewsGrid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .bavitorPulseRoutineGlowBurgerBtn {
        display: flex;
    }
    
    .bavitorPulseRoutineGlowNavigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0A0C10;
        padding: 20px;
        border-bottom: 2px solid #CFFF35;
    }
    
    .bavitorPulseRoutineGlowCheckboxHidden:checked ~ .bavitorPulseRoutineGlowNavigation {
        display: block;
    }
    
    .bavitorPulseRoutineGlowNavList {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .bavitorPulseRoutineGlowHeroTitle {
        font-size: 32px;
    }
    
    .bavitorPulseRoutineGlowFooterTop {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .bavitorPulseRoutineGlowFormBox {
        padding: 30px 20px;
    }
}