/* RESET AND BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.qelimunPulseRoutineGlow_MainBody {
    background-color: #07090C;
    color: #E0E0E0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* HEADER STYLES */
.qelimunPulseRoutineGlow_HeaderWrapper {
    position: sticky;
    top: 0;
    background-color: rgba(7, 9, 12, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(79, 247, 255, 0.1);
}

.qelimunPulseRoutineGlow_HeaderContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qelimunPulseRoutineGlow_BrandLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4FF7FF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.qelimunPulseRoutineGlow_CyanRail {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #4FF7FF, transparent);
    opacity: 0.6;
}

.qelimunPulseRoutineGlow_NavList {
    display: flex;
    gap: 1.5rem;
}

.qelimunPulseRoutineGlow_NavLink {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
}

.qelimunPulseRoutineGlow_NavLink:hover {
    color: #4FF7FF;
    text-shadow: 0 0 8px #4FF7FF;
}

/* BURGER MENU (No JS) */
.qelimunPulseRoutineGlow_NavInput {
    display: none;
}

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

.qelimunPulseRoutineGlow_BurgerIcon span {
    width: 25px;
    height: 2px;
    background-color: #4FF7FF;
    transition: 0.3s;
}

/* HERO SECTION */
.qelimunPulseRoutineGlow_HeroSection {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.qelimunPulseRoutineGlow_HeroLayout {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.qelimunPulseRoutineGlow_HeroMedia, .qelimunPulseRoutineGlow_HeroContent {
    flex: 1;
    min-width: 300px;
}

.qelimunPulseRoutineGlow_HeroImg {
    border: 1px solid #4FF7FF;
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.1);
}

.qelimunPulseRoutineGlow_HeroTitle {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.qelimunPulseRoutineGlow_HeroLead {
    font-size: 1.25rem;
    color: #4FF7FF;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.qelimunPulseRoutineGlow_HeroDescription {
    margin-bottom: 1.2rem;
    color: #B0B0B0;
}

.qelimunPulseRoutineGlow_MiniReview {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(79, 247, 255, 0.05);
    border-left: 4px solid #4FF7FF;
}

.qelimunPulseRoutineGlow_ReviewText {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.qelimunPulseRoutineGlow_ReviewAuthor {
    font-weight: bold;
    color: #4FF7FF;
}

.qelimunPulseRoutineGlow_PrimaryBtn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4FF7FF;
    color: #07090C;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(79, 247, 255, 0.3);
}

.qelimunPulseRoutineGlow_PrimaryBtn:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 20px #4FF7FF;
}

/* PRICING SECTION */
.qelimunPulseRoutineGlow_PricingSection {
    padding: 5rem 2rem;
    background-color: #0B0E13;
}

.qelimunPulseRoutineGlow_SectionHeader {
    text-align: center;
    margin-bottom: 4rem;
}

.qelimunPulseRoutineGlow_SectionTitle {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.qelimunPulseRoutineGlow_SectionSub {
    color: #4FF7FF;
}

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

.qelimunPulseRoutineGlow_PriceCard {
    background-color: #111418;
    padding: 2.5rem;
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    border: 1px solid rgba(79, 247, 255, 0.1);
    display: flex;
    flex-direction: column;
    transition: 0.4s;
}

.qelimunPulseRoutineGlow_PriceCard:hover {
    border-color: #4FF7FF;
    transform: translateY(-10px);
}

.qelimunPulseRoutineGlow_FeaturedCard {
    border-color: #4FF7FF;
    background-color: #141A21;
    position: relative;
    transform: scale(1.05);
}

.qelimunPulseRoutineGlow_CardTitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.qelimunPulseRoutineGlow_PriceValue {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4FF7FF;
    margin-bottom: 2rem;
}

.qelimunPulseRoutineGlow_CardFeatures {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.qelimunPulseRoutineGlow_CardFeatures li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}

.qelimunPulseRoutineGlow_CardFeatures li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4FF7FF;
}

.qelimunPulseRoutineGlow_SecondaryBtn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    text-align: center;
    font-weight: 700;
}

.qelimunPulseRoutineGlow_SecondaryBtn:hover {
    background-color: rgba(79, 247, 255, 0.1);
}

/* SLIDER / QUOTE SECTION */
.qelimunPulseRoutineGlow_SliderSection {
    padding: 6rem 2rem;
    background-color: #07090C;
    text-align: center;
}

.qelimunPulseRoutineGlow_SliderWrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.qelimunPulseRoutineGlow_SlideArrow {
    font-size: 2rem;
    color: #4FF7FF;
    cursor: pointer;
    user-select: none;
}

.qelimunPulseRoutineGlow_Quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.qelimunPulseRoutineGlow_QuoteAuthor {
    color: #4FF7FF;
    font-weight: bold;
    display: block;
}

/* TWO COLUMN SECTIONS (For Whom & Benefits) */
.qelimunPulseRoutineGlow_ForWhomSection, .qelimunPulseRoutineGlow_BenefitsSection {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.qelimunPulseRoutineGlow_TwoColGrid {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.qelimunPulseRoutineGlow_ReverseGrid {
    flex-direction: row-reverse;
}

.qelimunPulseRoutineGlow_TextCol, .qelimunPulseRoutineGlow_ImageCol {
    flex: 1;
    min-width: 300px;
}

.qelimunPulseRoutineGlow_BlockTitle {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.qelimunPulseRoutineGlow_BlockIntro {
    margin-bottom: 2rem;
}

.qelimunPulseRoutineGlow_CheckList li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.qelimunPulseRoutineGlow_CheckList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4FF7FF;
    font-weight: bold;
}

.qelimunPulseRoutineGlow_ImageCol {
    position: relative;
}

.qelimunPulseRoutineGlow_PriceBadge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #4FF7FF;
    color: #07090C;
    padding: 1.5rem;
    font-weight: 800;
    box-shadow: 0 0 30px rgba(79, 247, 255, 0.4);
}

.qelimunPulseRoutineGlow_BenefitItems {
    display: grid;
    gap: 2rem;
}

.qelimunPulseRoutineGlow_ItemTitle {
    color: #4FF7FF;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* FAQ SECTION */
.qelimunPulseRoutineGlow_FaqSection {
    padding: 6rem 2rem;
    background-color: #0B0E13;
}

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

.qelimunPulseRoutineGlow_FaqItem {
    margin-bottom: 1rem;
    border: 1px solid rgba(79, 247, 255, 0.2);
}

.qelimunPulseRoutineGlow_FaqSummary {
    padding: 1.2rem;
    cursor: pointer;
    font-weight: 700;
    color: #FFFFFF;
    outline: none;
    list-style: none;
    position: relative;
}

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

.qelimunPulseRoutineGlow_FaqSummary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    color: #4FF7FF;
}

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

.qelimunPulseRoutineGlow_FaqAnswer {
    padding: 0 1.2rem 1.2rem;
    color: #B0B0B0;
}

/* ARTICLE SECTIONS */
.qelimunPulseRoutineGlow_ArticleSection {
    padding: 6rem 2rem;
}

.qelimunPulseRoutineGlow_AltBg {
    background-color: #111418;
}

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

.qelimunPulseRoutineGlow_ArticleTitle {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    border-left: 5px solid #4FF7FF;
    padding-left: 1.5rem;
}

.qelimunPulseRoutineGlow_ArticleBody p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.qelimunPulseRoutineGlow_ArticleList {
    margin: 2rem 0;
}

.qelimunPulseRoutineGlow_ArticleList li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    border-left: 2px solid #4FF7FF;
}

.qelimunPulseRoutineGlow_SimpleSteps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.qelimunPulseRoutineGlow_Step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #07090C;
    border: 1px solid rgba(79, 247, 255, 0.1);
}

.qelimunPulseRoutineGlow_StepNum {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(79, 247, 255, 0.2);
    display: block;
    margin-bottom: 1rem;
}

.qelimunPulseRoutineGlow_TechTips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.qelimunPulseRoutineGlow_TechTips li {
    background: rgba(79, 247, 255, 0.03);
    padding: 1rem;
    border: 1px dashed rgba(79, 247, 255, 0.3);
}

/* FORM SECTION */
.qelimunPulseRoutineGlow_FormSection {
    padding: 6rem 2rem;
    background-color: #07090C;
}

.qelimunPulseRoutineGlow_FormCard {
    max-width: 700px;
    margin: 0 auto;
    background: #111418;
    padding: 4rem;
    border: 1px solid #4FF7FF;
}

.qelimunPulseRoutineGlow_FormTitle {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.qelimunPulseRoutineGlow_FormSubtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #4FF7FF;
}

.qelimunPulseRoutineGlow_FieldGroup {
    margin-bottom: 1.5rem;
}

.qelimunPulseRoutineGlow_InputLabel {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.qelimunPulseRoutineGlow_InputField, .qelimunPulseRoutineGlow_TextAreaField {
    width: 100%;
    padding: 1rem;
    background: #07090C;
    border: 1px solid #333;
    color: #FFF;
    font-size: 1rem;
}

.qelimunPulseRoutineGlow_InputField:focus, .qelimunPulseRoutineGlow_TextAreaField:focus {
    border-color: #4FF7FF;
    outline: none;
}

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

.qelimunPulseRoutineGlow_CheckboxGroup {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.qelimunPulseRoutineGlow_CheckLabel {
    font-size: 0.85rem;
}

.qelimunPulseRoutineGlow_PolicyLink {
    color: #4FF7FF;
    text-decoration: underline;
}

.qelimunPulseRoutineGlow_SubmitBtn {
    width: 100%;
    padding: 1.2rem;
    background: #4FF7FF;
    color: #07090C;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.1rem;
}

/* FOOTER SECTION */
.qelimunPulseRoutineGlow_FooterWrapper {
    background: #0B0E13;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #333;
}

.qelimunPulseRoutineGlow_FooterTop {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.qelimunPulseRoutineGlow_FooterBrand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4FF7FF;
}

.qelimunPulseRoutineGlow_FooterBottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

.qelimunPulseRoutineGlow_FooterLinks a {
    color: #777;
    margin-left: 1.5rem;
    font-size: 0.8rem;
}

.qelimunPulseRoutineGlow_FooterLinks a:hover {
    color: #4FF7FF;
}

.qelimunPulseRoutineGlow_Copyright {
    font-size: 0.85rem;
    color: #555;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .qelimunPulseRoutineGlow_HeroTitle { font-size: 2.5rem; }
    .qelimunPulseRoutineGlow_PricingGrid { justify-content: center; }
    .qelimunPulseRoutineGlow_FeaturedCard { transform: scale(1); }
}

@media (max-width: 768px) {
    .qelimunPulseRoutineGlow_BurgerIcon { display: flex; }
    .qelimunPulseRoutineGlow_NavigationMenu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #07090C;
        transition: 0.5s;
        border-bottom: 2px solid #4FF7FF;
    }
    .qelimunPulseRoutineGlow_NavList {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    .qelimunPulseRoutineGlow_NavInput:checked ~ .qelimunPulseRoutineGlow_NavigationMenu {
        left: 0;
    }
    .qelimunPulseRoutineGlow_HeroLayout { flex-direction: column; text-align: center; }
    .qelimunPulseRoutineGlow_TwoColGrid { flex-direction: column; gap: 2rem; }
    .qelimunPulseRoutineGlow_FormCard { padding: 2rem; }
    .qelimunPulseRoutineGlow_FooterTop { flex-direction: column; text-align: center; }
    .qelimunPulseRoutineGlow_FooterBottom { flex-direction: column; text-align: center; }
    .qelimunPulseRoutineGlow_FooterLinks a { margin: 0 0.5rem; }
}