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

html {
    scroll-behavior: smooth;
}

body.nuroqarSoftFemAnchorBodyMain {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #050A18;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.nuroqarSoftFemAnchorContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

ul {
    list-style: none;
}

/* Header & Navigation */
.nuroqarSoftFemAnchorHeaderWrapper {
    background: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid #10182D;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(106, 169, 255, 0.1);
}

.nuroqarSoftFemAnchorHeaderFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nuroqarSoftFemAnchorLogoText {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #6AA9FF;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.5);
}

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

.nuroqarSoftFemAnchorNavLink {
    font-weight: 500;
    font-size: 16px;
}

.nuroqarSoftFemAnchorNavLink:hover {
    color: #6AA9FF;
}

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

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

.nuroqarSoftFemAnchorBurgerButton span {
    width: 30px;
    height: 3px;
    background-color: #6AA9FF;
    border-radius: 2px;
}

/* Hero Section */
.nuroqarSoftFemAnchorHeroSection {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.nuroqarSoftFemAnchorHeroImageSide,
.nuroqarSoftFemAnchorHeroTextSide {
    flex: 1;
}

.nuroqarSoftFemAnchorMainTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.nuroqarSoftFemAnchorHeroSubtitle {
    font-size: 20px;
    color: #6AA9FF;
    margin-bottom: 20px;
    font-weight: 500;
}

.nuroqarSoftFemAnchorHeroParagraph {
    margin-bottom: 15px;
    color: #B0B9CF;
}

.nuroqarSoftFemAnchorHeroStatsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.nuroqarSoftFemAnchorStatItem {
    background: #0B1226;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #10182D;
}

.nuroqarSoftFemAnchorStatValue {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #6AA9FF;
}

.nuroqarSoftFemAnchorStatLabel {
    font-size: 14px;
    color: #B0B9CF;
}

.nuroqarSoftFemAnchorMainButton {
    display: inline-block;
    background-color: #6AA9FF;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    border: 2px solid #6AA9FF;
}

.nuroqarSoftFemAnchorMainButton:hover {
    background-color: transparent;
    box-shadow: 0 0 15px #6AA9FF;
    color: #6AA9FF;
}

/* Price Section */
.nuroqarSoftFemAnchorPriceSection {
    padding: 100px 0;
    background-color: #080E20;
}

.nuroqarSoftFemAnchorSectionTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #FFFFFF;
}

.nuroqarSoftFemAnchorPriceQuickLinks {
    text-align: center;
    margin-bottom: 40px;
}

.nuroqarSoftFemAnchorQuickLink {
    margin: 0 10px;
    color: #6AA9FF;
    border-bottom: 1px dashed #6AA9FF;
}

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

.nuroqarSoftFemAnchorPriceCard {
    background: #0B1226;
    border: 1px solid #10182D;
    border-radius: 20px;
    padding: 40px;
    width: 370px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nuroqarSoftFemAnchorPriceCard:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF;
}

.nuroqarSoftFemAnchorPriceCardFeatured {
    border: 2px solid #6AA9FF;
    position: relative;
    box-shadow: 0 10px 40px rgba(106, 169, 255, 0.15);
}

.nuroqarSoftFemAnchorPriceName {
    font-size: 24px;
    margin-bottom: 15px;
    color: #6AA9FF;
}

.nuroqarSoftFemAnchorPriceValue {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
}

.nuroqarSoftFemAnchorPriceFeatures {
    margin-bottom: 30px;
    flex-grow: 1;
}

.nuroqarSoftFemAnchorPriceFeatures li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #B0B9CF;
}

.nuroqarSoftFemAnchorPriceFeatures li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

.nuroqarSoftFemAnchorPriceDescription {
    font-size: 14px;
    color: #717C94;
    margin-bottom: 30px;
}

.nuroqarSoftFemAnchorSecondaryButton {
    display: block;
    border: 2px solid #6AA9FF;
    color: #6AA9FF;
    padding: 14px;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
}

.nuroqarSoftFemAnchorSecondaryButton:hover {
    background: #6AA9FF;
    color: #FFFFFF;
}

/* Audience Section */
.nuroqarSoftFemAnchorAudienceSection {
    padding: 100px 0;
}

.nuroqarSoftFemAnchorSectionLead {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 60px;
    color: #B0B9CF;
    font-size: 18px;
}

.nuroqarSoftFemAnchorAudienceGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.nuroqarSoftFemAnchorAudienceItem {
    background: #0B1226;
    border-radius: 15px;
    overflow: hidden;
    padding: 0 0 25px 0;
}

.nuroqarSoftFemAnchorAudienceImg {
    width: 100%;
    border-radius: 15px 15px 0 0;
    margin-bottom: 20px;
}

.nuroqarSoftFemAnchorAudienceItem h4 {
    padding: 0 20px;
    font-size: 20px;
    margin-bottom: 10px;
}

.nuroqarSoftFemAnchorAudienceItem p {
    padding: 0 20px;
    font-size: 14px;
    color: #B0B9CF;
    margin-bottom: 15px;
}

.nuroqarSoftFemAnchorAudiencePriceTag {
    padding: 0 20px;
    color: #6AA9FF;
    font-weight: 700;
}

.nuroqarSoftFemAnchorChecklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    gap: 20px;
    background: rgba(106, 169, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
}

.nuroqarSoftFemAnchorCheckItem {
    position: relative;
    padding-left: 35px;
    font-size: 16px;
}

.nuroqarSoftFemAnchorCheckItem::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6AA9FF;
    font-weight: bold;
}

/* Benefits Section */
.nuroqarSoftFemAnchorBenefitsSection {
    padding: 100px 0;
    background: #080E20;
}

.nuroqarSoftFemAnchorBenefitsGrid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.nuroqarSoftFemAnchorBenefitsText,
.nuroqarSoftFemAnchorBenefitsImage {
    flex: 1;
}

.nuroqarSoftFemAnchorBenefitsList {
    margin-top: 30px;
}

.nuroqarSoftFemAnchorBenefitsList li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.nuroqarSoftFemAnchorBenefitsList li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%236AA9FF" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat center;
}

/* Expert Word / Reviews */
.nuroqarSoftFemAnchorExpertSection {
    padding: 100px 0;
}

.nuroqarSoftFemAnchorHorizontalScrollContainer {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #6AA9FF #0B1226;
}

.nuroqarSoftFemAnchorHorizontalScrollContainer::-webkit-scrollbar {
    height: 8px;
}

.nuroqarSoftFemAnchorHorizontalScrollContainer::-webkit-scrollbar-thumb {
    background: #6AA9FF;
    border-radius: 10px;
}

.nuroqarSoftFemAnchorExpertCard {
    background: #0B1226;
    padding: 40px;
    border-radius: 20px;
    min-width: 450px;
    border-left: 5px solid #6AA9FF;
}

.nuroqarSoftFemAnchorQuote {
    font-style: italic;
    font-size: 18px;
    color: #B0B9CF;
    margin-bottom: 25px;
    position: relative;
}

.nuroqarSoftFemAnchorAuthor {
    display: block;
    font-weight: 700;
    color: #FFFFFF;
}

/* FAQ */
.nuroqarSoftFemAnchorFaqSection {
    padding: 100px 0;
    background: #080E20;
}

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

.nuroqarSoftFemAnchorFaqItem {
    margin-bottom: 15px;
    background: #0B1226;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.nuroqarSoftFemAnchorFaqSummary::after {
    content: "+";
    font-size: 24px;
}

.nuroqarSoftFemAnchorFaqItem[open] .nuroqarSoftFemAnchorFaqSummary::after {
    content: "−";
}

.nuroqarSoftFemAnchorFaqContent {
    padding: 0 20px 20px;
    color: #B0B9CF;
}

/* Extra Content Sections */
.nuroqarSoftFemAnchorExtraSection {
    padding: 80px 0;
}

.nuroqarSoftFemAnchorExtraAlt {
    background: #0B1226;
}

.nuroqarSoftFemAnchorSimpleList {
    margin-top: 20px;
    padding-left: 20px;
    list-style: disc;
    color: #6AA9FF;
}

.nuroqarSoftFemAnchorStepBox {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nuroqarSoftFemAnchorStep {
    background: rgba(106, 169, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid #6AA9FF;
    font-weight: 600;
}

/* Form Section */
.nuroqarSoftFemAnchorFormSection {
    padding: 100px 0;
}

.nuroqarSoftFemAnchorFormBox {
    background: #0B1226;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #10182D;
    box-shadow: 0 0 50px rgba(106, 169, 255, 0.05);
}

.nuroqarSoftFemAnchorFormGroup {
    margin-bottom: 25px;
}

.nuroqarSoftFemAnchorFormLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.nuroqarSoftFemAnchorFormInput,
.nuroqarSoftFemAnchorFormTextarea {
    width: 100%;
    background: #050A18;
    border: 1px solid #10182D;
    padding: 15px;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
}

.nuroqarSoftFemAnchorFormInput:focus,
.nuroqarSoftFemAnchorFormTextarea:focus {
    outline: none;
    border-color: #6AA9FF;
}

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

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

.nuroqarSoftFemAnchorFormCheckbox {
    margin-top: 5px;
}

.nuroqarSoftFemAnchorFormCheckboxLabel {
    font-size: 14px;
    color: #B0B9CF;
}

.nuroqarSoftFemAnchorFormCheckboxLabel a {
    color: #6AA9FF;
    text-decoration: underline;
}

.nuroqarSoftFemAnchorFullWidth {
    width: 100%;
}

/* Footer */
.nuroqarSoftFemAnchorFooter {
    padding: 80px 0 40px;
    background: #02050D;
    border-top: 1px solid #10182D;
}

.nuroqarSoftFemAnchorFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.nuroqarSoftFemAnchorFooterContact p {
    color: #B0B9CF;
    margin-bottom: 5px;
}

.nuroqarSoftFemAnchorFooterContact a:hover {
    color: #6AA9FF;
}

.nuroqarSoftFemAnchorFooterDivider {
    height: 1px;
    background: #10182D;
    margin-bottom: 40px;
}

.nuroqarSoftFemAnchorFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nuroqarSoftFemAnchorCopyright {
    color: #717C94;
    font-size: 14px;
}

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

.nuroqarSoftFemAnchorFooterLink {
    font-size: 13px;
    color: #717C94;
}

.nuroqarSoftFemAnchorFooterLink:hover {
    color: #6AA9FF;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nuroqarSoftFemAnchorHeroGrid,
    .nuroqarSoftFemAnchorBenefitsGrid {
        flex-direction: column;
        text-align: center;
    }
    
    .nuroqarSoftFemAnchorHeroStatsGrid {
        justify-content: center;
    }

    .nuroqarSoftFemAnchorChecklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nuroqarSoftFemAnchorBurgerButton {
        display: flex;
        z-index: 1001;
    }

    .nuroqarSoftFemAnchorNavigationMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0B1226;
        padding: 100px 40px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nuroqarSoftFemAnchorNavList {
        flex-direction: column;
        gap: 25px;
    }

    .nuroqarSoftFemAnchorMenuCheckbox:checked ~ .nuroqarSoftFemAnchorNavigationMenu {
        right: 0;
    }

    .nuroqarSoftFemAnchorMainTitle {
        font-size: 32px;
    }

    .nuroqarSoftFemAnchorPriceCard {
        width: 100%;
    }

    .nuroqarSoftFemAnchorExpertCard {
        min-width: 300px;
    }

    .nuroqarSoftFemAnchorFormBox {
        padding: 30px;
    }

    .nuroqarSoftFemAnchorFooterTop,
    .nuroqarSoftFemAnchorFooterBottom {
        flex-direction: column;
        text-align: center;
    }
}