/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

img.narqanoImgResponsive {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

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

/* Header Styles */
.narqanoHeaderWrap {
    position: sticky;
    top: 0;
    background-color: rgba(10, 12, 16, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(207, 255, 53, 0.1);
}

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

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

.narqanoNavList {
    display: flex;
    list-style: none;
}

.narqanoNavItem {
    margin-left: 30px;
}

.narqanoNavLink {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
}

.narqanoNavLink:hover {
    color: #CFFF35;
}

.narqanoHeaderPulseLine {
    height: 2px;
    background: #CFFF35;
    width: 100%;
    box-shadow: 0 0 10px #CFFF35;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

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

.narqanoBurgerBtn {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.narqanoBurgerBtn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #CFFF35;
    position: absolute;
    transition: 0.3s;
}

.narqanoBurgerBtn span:nth-child(1) { top: 0; }
.narqanoBurgerBtn span:nth-child(2) { top: 8px; }
.narqanoBurgerBtn span:nth-child(3) { top: 16px; }

/* Sections Common */
.narqanoMainContainer section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.narqanoSectionTitle {
    font-size: 36px;
    margin-bottom: 40px;
    color: #CFFF35;
    text-align: center;
    position: relative;
}

.narqanoSectionTitle::after {
    content: '>>';
    position: absolute;
    margin-left: 15px;
    color: rgba(207, 255, 53, 0.3);
}

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

.narqanoHeroGallery {
    flex: 1;
}

.narqanoHeroThumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.narqanoThumbImg {
    width: calc(33.33% - 7px);
    border-radius: 4px;
    border: 1px solid #1e1e1e;
}

.narqanoHeroTextContent {
    flex: 1;
}

.narqanoMainHeading {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
}

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

.narqanoHeroPara {
    margin-bottom: 15px;
    color: #CCCCCC;
}

.narqanoCtaButton {
    display: inline-block;
    background-color: #CFFF35;
    color: #0A0C10;
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 0 #CFFF35;
}

.narqanoCtaButton:hover {
    box-shadow: 0 0 20px #CFFF35;
    transform: scale(1.02);
}

/* Pricing Section */
.narqanoPricingBlock {
    background-color: #0E1116;
    max-width: 100% !important;
}

.narqanoSectionIntro {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 50px;
    color: #888;
}

.narqanoPriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.narqanoPriceCard {
    background: #161A22;
    padding: 40px;
    border: 1px solid #222;
    border-radius: 8px;
    flex: 1 1 calc(25% - 25px);
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.narqanoFeaturedCard {
    border-color: #CFFF35;
    position: relative;
    transform: scale(1.05);
}

.narqanoCardBadge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #CFFF35;
    color: #0A0C10;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.narqanoCardTitle {
    font-size: 22px;
    margin-bottom: 15px;
}

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

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

.narqanoCardList li {
    padding: 8px 0;
    border-bottom: 1px solid #222;
    color: #AAA;
    font-size: 14px;
}

.narqanoPriceBtn {
    border: 1px solid #CFFF35;
    color: #CFFF35;
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
}

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

/* Reviews / Slider Section */
.narqanoReviewBlock {
    text-align: center;
}

.narqanoQuoteBox {
    margin-bottom: 60px;
    border-left: 4px solid #CFFF35;
    padding: 20px 40px;
    text-align: left;
    background: rgba(207, 255, 53, 0.05);
}

.narqanoQuoteText {
    font-size: 24px;
    font-style: italic;
    color: #EEE;
}

.narqanoQuoteAuthor {
    display: block;
    margin-top: 15px;
    color: #CFFF35;
    font-weight: 600;
}

.narqanoSliderWrapper {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.narqanoSlideRadio {
    display: none;
}

.narqanoSlidesContainer {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.narqanoSlideItem {
    min-width: 100%;
    padding: 40px;
    background: #161A22;
}

.narqanoReviewTxt {
    font-size: 18px;
    margin-bottom: 20px;
    color: #CCC;
}

.narqanoReviewName {
    color: #CFFF35;
    font-weight: bold;
}

.narqanoSliderControls {
    margin-top: 20px;
}

.narqanoControlDot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

#narqanoSlide1:checked ~ .narqanoSlidesContainer { transform: translateX(0%); }
#narqanoSlide2:checked ~ .narqanoSlidesContainer { transform: translateX(-100%); }
#narqanoSlide3:checked ~ .narqanoSlidesContainer { transform: translateX(-200%); }

#narqanoSlide1:checked ~ .narqanoSliderControls label:nth-child(1),
#narqanoSlide2:checked ~ .narqanoSliderControls label:nth-child(2),
#narqanoSlide3:checked ~ .narqanoSliderControls label:nth-child(3) {
    background: #CFFF35;
    box-shadow: 0 0 10px #CFFF35;
}

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

.narqanoBenefitsText { flex: 1; }
.narqanoBenefitsImage { flex: 1; }

.narqanoBenefitList {
    list-style: none;
}

.narqanoBenefitItem {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

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

/* Who It's For Section */
.narqanoWhoBlock {
    background-color: #0E1116;
    max-width: 100% !important;
}

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

.narqanoWhoCard {
    background: #0A0C10;
    border: 1px solid #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.narqanoWhoCard:hover {
    border-color: #CFFF35;
}

.narqanoWhoImg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

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

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

.narqanoFaqItem {
    background: #161A22;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #222;
}

.narqanoFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

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

.narqanoFaqSummary::after {
    content: '+';
    color: #CFFF35;
}

.narqanoFaqItem[open] .narqanoFaqSummary::after {
    content: '-';
}

.narqanoFaqContent {
    padding: 0 20px 20px;
    color: #CCC;
}

/* Extra Text Sections */
.narqanoExtraSection {
    background-color: #0A0C10;
}

.narqanoExtraSection.alternate {
    background-color: #0E1116;
    max-width: 100% !important;
}

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

.narqanoTextContainer p {
    margin-bottom: 20px;
    color: #AAA;
}

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

.narqanoCustomList li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #1e1e1e;
}

.narqanoCustomList li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #CFFF35;
    font-size: 12px;
}

/* Form Section */
.narqanoFormBlock {
    background: linear-gradient(135deg, #0A0C10 0%, #161A22 100%);
}

.narqanoFormInner {
    max-width: 600px;
    margin: 0 auto;
}

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

.narqanoFormGroup {
    margin-bottom: 20px;
}

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

.narqanoFormInput, .narqanoFormTextarea {
    width: 100%;
    background: #0A0C10;
    border: 1px solid #333;
    padding: 15px;
    color: #FFF;
    border-radius: 4px;
    outline: none;
}

.narqanoFormInput:focus, .narqanoFormTextarea:focus {
    border-color: #CFFF35;
}

.narqanoFormTextarea {
    height: 150px;
    resize: vertical;
}

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

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

.narqanoCheckboxLabel a {
    color: #CFFF35;
}

.narqanoSubmitBtn {
    width: 100%;
    padding: 20px;
    background: #CFFF35;
    border: none;
    color: #0A0C10;
    font-weight: 800;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

/* Footer */
.narqanoFooterBlock {
    padding: 60px 20px;
    border-top: 1px solid #1e1e1e;
    text-align: center;
}

.narqanoFooterLogo {
    font-size: 20px;
    font-weight: bold;
    color: #CFFF35;
    margin-bottom: 15px;
}

.narqanoFooterCopy, .narqanoFooterMail, .narqanoFooterPhone {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.narqanoFooterLinks {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.narqanoFooterLink {
    font-size: 12px;
    color: #888;
}

.narqanoFooterLink:hover {
    color: #CFFF35;
}

/* Responsive */
@media (max-width: 992px) {
    .narqanoHeroContainer { flex-direction: column; }
    .narqanoBenefitsFlex { flex-direction: column; }
    .narqanoMainHeading { font-size: 36px; }
}

@media (max-width: 768px) {
    .narqanoBurgerBtn { display: block; }
    .narqanoNavLinks {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0A0C10;
        padding: 20px;
        border-bottom: 1px solid #CFFF35;
    }
    .narqanoNavList { flex-direction: column; }
    .narqanoNavItem { margin: 10px 0; }
    .narqanoMenuCheckbox:checked ~ .narqanoNavLinks { display: block; }

    .narqanoPriceCard { transform: scale(1) !important; flex: 1 1 100%; }
    .narqanoSectionTitle { font-size: 28px; }
}