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

body.narqiroPulseRoutineGlowBody {
    background-color: #050607;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.narqiroPulseRoutineGlowContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

img.narqiroPulseRoutineGlowImg {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.2);
}

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

/* HEADER */
.narqiroPulseRoutineGlowHeader {
    background-color: rgba(5, 6, 7, 0.95);
    border-bottom: 2px solid #5AF3FF;
    box-shadow: 0 4px 20px rgba(90, 243, 255, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

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

.narqiroPulseRoutineGlowLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #5AF3FF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.narqiroPulseRoutineGlowNavList {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.narqiroPulseRoutineGlowNavLink:hover {
    color: #5AF3FF;
}

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

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

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

/* HERO SECTION */
.narqiroPulseRoutineGlowHeroSection {
    padding: 160px 0 100px;
    position: relative;
    min-height: 80vh;
}

.narqiroPulseRoutineGlowCyberGrid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(90, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

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

.narqiroPulseRoutineGlowHeroLeft, .narqiroPulseRoutineGlowHeroRight {
    flex: 1;
}

.narqiroPulseRoutineGlowHeroImageGrid {
    display: flex;
    gap: 15px;
}

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

.narqiroPulseRoutineGlowImgDesc {
    font-size: 0.8rem;
    color: #5AF3FF;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

.narqiroPulseRoutineGlowH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.narqiroPulseRoutineGlowSub {
    font-size: 1.4rem;
    color: #5AF3FF;
    margin-bottom: 30px;
    font-weight: 300;
}

.narqiroPulseRoutineGlowText {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cccccc;
}

.narqiroPulseRoutineGlowBtnPrimary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.4);
}

.narqiroPulseRoutineGlowBtnPrimary:hover {
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.8);
    transform: translateY(-2px);
}

/* PRICE SECTION */
.narqiroPulseRoutineGlowPriceSection {
    padding: 100px 0;
}

.narqiroPulseRoutineGlowH2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.narqiroPulseRoutineGlowPriceCard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(90, 243, 255, 0.2);
    padding: 40px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    border-radius: 8px;
    transition: transform 0.3s, border 0.3s;
    display: flex;
    flex-direction: column;
}

.narqiroPulseRoutineGlowPriceCard:hover {
    transform: scale(1.05);
    border-color: #5AF3FF;
}

.narqiroPulseRoutineGlowFeatured {
    border: 2px solid #5AF3FF;
    position: relative;
    background: rgba(90, 243, 255, 0.05);
}

.narqiroPulseRoutineGlowBadge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #5AF3FF;
    color: #050607;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 20px;
}

.narqiroPulseRoutineGlowPriceVal {
    font-size: 2.5rem;
    font-weight: 800;
    color: #5AF3FF;
    margin: 20px 0;
}

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

.narqiroPulseRoutineGlowPriceList li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
}

.narqiroPulseRoutineGlowPriceList li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

.narqiroPulseRoutineGlowBtnSecondary {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.narqiroPulseRoutineGlowBtnSecondary:hover {
    background: rgba(90, 243, 255, 0.1);
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.3);
}

/* QUOTE / REVIEWS */
.narqiroPulseRoutineGlowQuoteSection {
    padding: 100px 0;
    background: rgba(90, 243, 255, 0.02);
}

.narqiroPulseRoutineGlowQuoteBox {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
}

.narqiroPulseRoutineGlowQuoteIcon {
    font-size: 5rem;
    color: rgba(90, 243, 255, 0.2);
    font-family: serif;
    line-height: 1;
}

.narqiroPulseRoutineGlowQuoteText {
    font-size: 1.6rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.4;
}

.narqiroPulseRoutineGlowQuoteAuthor {
    display: flex;
    flex-direction: column;
}

.narqiroPulseRoutineGlowQuoteAuthor strong {
    font-size: 1.2rem;
    color: #5AF3FF;
}

.narqiroPulseRoutineGlowReviewsGrid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.narqiroPulseRoutineGlowReviewCard {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-left: 4px solid #5AF3FF;
}

.narqiroPulseRoutineGlowReviewUser {
    margin-top: 15px;
    font-weight: bold;
    color: #5AF3FF;
    font-size: 0.9rem;
}

/* BENEFITS SECTION */
.narqiroPulseRoutineGlowFlexReverse {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap-reverse;
}

.narqiroPulseRoutineGlowBenefitsText, .narqiroPulseRoutineGlowBenefitsImg {
    flex: 1;
    min-width: 300px;
}

.narqiroPulseRoutineGlowCheckList {
    list-style: none;
    margin: 30px 0;
}

.narqiroPulseRoutineGlowCheckList li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.narqiroPulseRoutineGlowCheckList li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5AF3FF;
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 0 5px #5AF3FF;
}

/* TARGET SECTION */
.narqiroPulseRoutineGlowTargetSection {
    padding: 100px 0;
}

.narqiroPulseRoutineGlowIntro {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 60px;
    font-size: 1.2rem;
    color: #aaa;
}

.narqiroPulseRoutineGlowTargetGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.narqiroPulseRoutineGlowTargetItem {
    flex: 1;
    min-width: 280px;
    background: #0a0b0d;
    padding: 0 0 30px 0;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.narqiroPulseRoutineGlowTargetImg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 25px;
    filter: grayscale(0.5);
    transition: 0.3s;
}

.narqiroPulseRoutineGlowTargetItem:hover .narqiroPulseRoutineGlowTargetImg {
    filter: grayscale(0);
}

.narqiroPulseRoutineGlowTargetItem h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #5AF3FF;
}

.narqiroPulseRoutineGlowTargetItem p {
    padding: 0 20px;
    font-size: 0.95rem;
}

/* FAQ SECTION */
.narqiroPulseRoutineGlowFaqSection {
    padding: 100px 0;
}

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

.narqiroPulseRoutineGlowFaqItem {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(90, 243, 255, 0.2);
}

.narqiroPulseRoutineGlowFaqItem summary {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.narqiroPulseRoutineGlowFaqItem summary:after {
    content: "+";
    color: #5AF3FF;
    font-size: 1.5rem;
}

.narqiroPulseRoutineGlowFaqItem[open] summary:after {
    content: "-";
}

.narqiroPulseRoutineGlowFaqContent {
    padding: 0 20px 20px;
    color: #ccc;
}

/* EXTRA SECTIONS */
.narqiroPulseRoutineGlowExtraSection {
    padding: 100px 0;
}

.narqiroPulseRoutineGlowAltBg {
    background: rgba(90, 243, 255, 0.03);
}

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

.narqiroPulseRoutineGlowTextWall p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #ddd;
}

.narqiroPulseRoutineGlowInTextList {
    margin: 30px 0;
    list-style: none;
}

.narqiroPulseRoutineGlowInTextList li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.narqiroPulseRoutineGlowInTextList li::before {
    content: ">>";
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

/* FORM SECTION */
.narqiroPulseRoutineGlowFormSection {
    padding: 100px 0;
}

.narqiroPulseRoutineGlowFormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #0a0c0e;
    padding: 60px;
    border: 1px solid #5AF3FF;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.1);
    border-radius: 8px;
}

.narqiroPulseRoutineGlowFormSub {
    text-align: center;
    margin-bottom: 40px;
    color: #aaa;
}

.narqiroPulseRoutineGlowFormGroup {
    margin-bottom: 25px;
}

.narqiroPulseRoutineGlowLabel {
    display: block;
    margin-bottom: 10px;
    color: #5AF3FF;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.narqiroPulseRoutineGlowInput, .narqiroPulseRoutineGlowTextarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(90, 243, 255, 0.3);
    padding: 15px;
    color: #fff;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.narqiroPulseRoutineGlowInput:focus, .narqiroPulseRoutineGlowTextarea:focus {
    border-color: #5AF3FF;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.3);
}

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

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

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

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

.narqiroPulseRoutineGlowBtnSubmit {
    width: 100%;
    padding: 18px;
    background: #5AF3FF;
    border: none;
    color: #050607;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.narqiroPulseRoutineGlowBtnSubmit:hover {
    background: #fff;
    box-shadow: 0 0 20px #5AF3FF;
}

/* FOOTER */
.narqiroPulseRoutineGlowFooter {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(90, 243, 255, 0.1);
    background: #030405;
}

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

.narqiroPulseRoutineGlowFooterInfo p {
    color: #666;
    margin-top: 10px;
}

.narqiroPulseRoutineGlowFooterContacts p {
    margin-bottom: 10px;
}

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

.narqiroPulseRoutineGlowFooterBottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #555;
}

.narqiroPulseRoutineGlowFooterNav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.narqiroPulseRoutineGlowFooterNav a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .narqiroPulseRoutineGlowH1 { font-size: 2.5rem; }
    .narqiroPulseRoutineGlowHeroFlex { flex-direction: column; text-align: center; }
    .narqiroPulseRoutineGlowHeroActions { justify-content: center; display: flex; }
    .narqiroPulseRoutineGlowNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #050607;
        z-index: 999;
        transition: 0.4s;
        padding-top: 100px;
        border-left: 2px solid #5AF3FF;
    }
    .narqiroPulseRoutineGlowNavList { flex-direction: column; align-items: center; }
    .narqiroPulseRoutineGlowBurger { display: flex; z-index: 1001; }
    .narqiroPulseRoutineGlowMenuCheckbox:checked ~ .narqiroPulseRoutineGlowNav { right: 0; }
}

@media (max-width: 768px) {
    .narqiroPulseRoutineGlowPriceGrid { flex-direction: column; align-items: center; }
    .narqiroPulseRoutineGlowFooterTop { flex-direction: column; text-align: center; }
    .narqiroPulseRoutineGlowFooterBottom { flex-direction: column; text-align: center; }
    .narqiroPulseRoutineGlowH2 { font-size: 2rem; }
}