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

html {
    scroll-behavior: smooth;
}

body.narovelinFemCoreRibbonBody {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #050A18;
    color: #E0E6F0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

img.narovelinFemCoreRibbonImg {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* TYPOGRAPHY */
.narovelinFemCoreRibbonH1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #6AA9FF;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(106, 169, 255, 0.4);
}

.narovelinFemCoreRibbonH2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #6AA9FF;
}

.narovelinFemCoreRibbonH3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

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

.narovelinFemCoreRibbonSub {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #8899AC;
    font-style: italic;
}

/* BUTTONS */
.narovelinFemCoreRibbonBtn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #6AA9FF;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

/* HEADER */
.narovelinFemCoreRibbonHeader {
    background-color: #050A18;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(106, 169, 255, 0.2);
    box-shadow: 0 5px 25px rgba(106, 169, 255, 0.1);
}

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

.narovelinFemCoreRibbonLogo {
    font-size: 2rem;
    font-weight: 900;
    color: #6AA9FF;
    letter-spacing: 2px;
}

.narovelinFemCoreRibbonNav {
    display: flex;
    gap: 25px;
}

.narovelinFemCoreRibbonNavLink {
    color: #E0E6F0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.narovelinFemCoreRibbonCheckbox, .narovelinFemCoreRibbonBurger {
    display: none;
}

/* HERO SECTION (Variant 4: Red Outline) */
.narovelinFemCoreRibbonHero {
    padding: 100px 0;
    border: 3px solid rgba(255, 78, 78, 0.5);
    margin: 40px 20px;
    border-radius: 12px;
}

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

.narovelinFemCoreRibbonHeroImage, .narovelinFemCoreRibbonHeroContent {
    flex: 1;
}

/* REVIEWS */
.narovelinFemCoreRibbonReviews {
    padding: 80px 0;
    background: linear-gradient(180deg, #050A18 0%, #0A1430 100%);
}

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

.narovelinFemCoreRibbonReviewCard {
    flex: 1 1 calc(33.333% - 30px);
    background: rgba(106, 169, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #6AA9FF;
}

.narovelinFemCoreRibbonRevText {
    font-style: italic;
    margin-bottom: 20px;
}

.narovelinFemCoreRibbonRevAuthor {
    font-weight: bold;
    color: #6AA9FF;
}

/* PRICES (Variant 2: Lines Outline) */
.narovelinFemCoreRibbonPrices {
    padding: 80px 0;
    border-top: 2px solid #6AA9FF;
    border-bottom: 2px solid #6AA9FF;
    position: relative;
    overflow: hidden;
}

.narovelinFemCoreRibbonPrices::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 1px;
    background: rgba(106, 169, 255, 0.3);
    top: 50%;
    left: -50%;
    transform: rotate(-15deg);
}

.narovelinFemCoreRibbonPriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.narovelinFemCoreRibbonPriceCard {
    flex: 1 1 calc(20% - 20px);
    min-width: 280px;
    background: #0D162B;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(106, 169, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.narovelinFemCoreRibbonPriceFeatured {
    border: 2px solid #6AA9FF;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.2);
}

.narovelinFemCoreRibbonCost {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 20px 0;
    color: #6AA9FF;
}

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

.narovelinFemCoreRibbonList li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.narovelinFemCoreRibbonList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

/* TARGET SECTION (Variant 3: Photo Above) */
.narovelinFemCoreRibbonTarget {
    padding: 80px 0;
}

.narovelinFemCoreRibbonTargetHeader {
    margin-bottom: 60px;
}

.narovelinFemCoreRibbonIntro {
    font-size: 1.4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.narovelinFemCoreRibbonCheckList {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.narovelinFemCoreRibbonCheckList li {
    flex: 1 1 calc(50% - 20px);
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(106, 169, 255, 0.1);
}

/* QUOTE (Variant 3) */
.narovelinFemCoreRibbonQuote {
    padding: 100px 0;
    background: #0A1430;
    text-align: center;
}

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

.narovelinFemCoreRibbonBlockquote {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    color: #E0E6F0;
    margin-bottom: 30px;
    position: relative;
}

.narovelinFemCoreRibbonBlockquote::before {
    content: '“';
    font-size: 8rem;
    color: rgba(106, 169, 255, 0.2);
    position: absolute;
    top: -50px;
    left: -20px;
}

.narovelinFemCoreRibbonCite {
    font-size: 1.1rem;
    color: #6AA9FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* BENEFITS */
.narovelinFemCoreRibbonBenefits {
    padding: 80px 0;
}

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

.narovelinFemCoreRibbonBenefitsContent, .narovelinFemCoreRibbonBenefitsImage {
    flex: 1;
}

/* FAQ */
.narovelinFemCoreRibbonFAQ {
    padding: 80px 0;
    background: #070F25;
}

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

.narovelinFemCoreRibbonDetails {
    background: rgba(106, 169, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(106, 169, 255, 0.1);
}

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

.narovelinFemCoreRibbonSummary::after {
    content: '+';
    color: #6AA9FF;
}

.narovelinFemCoreRibbonDetails[open] .narovelinFemCoreRibbonSummary::after {
    content: '-';
}

.narovelinFemCoreRibbonAnswer {
    padding: 0 20px 20px;
    color: #B0BCCF;
}

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

.narovelinFemCoreRibbonFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0D162B;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(106, 169, 255, 0.2);
}

.narovelinFemCoreRibbonForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.narovelinFemCoreRibbonInputGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.narovelinFemCoreRibbonLabel {
    color: #6AA9FF;
    font-weight: 600;
}

.narovelinFemCoreRibbonInput, .narovelinFemCoreRibbonTextarea {
    background: #050A18;
    border: 1px solid rgba(106, 169, 255, 0.3);
    padding: 12px 15px;
    color: #E0E6F0;
    border-radius: 4px;
    outline: none;
}

.narovelinFemCoreRibbonInput:focus, .narovelinFemCoreRibbonTextarea:focus {
    border-color: #6AA9FF;
}

.narovelinFemCoreRibbonTextarea {
    min-height: 120px;
    resize: vertical;
}

.narovelinFemCoreRibbonCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
}

.narovelinFemCoreRibbonSubmit {
    background-color: #6AA9FF;
    color: #FFFFFF;
    border: none;
    padding: 15px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.narovelinFemCoreRibbonSubmit:hover {
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.5);
}

/* EXTRA TEXT SECTIONS */
.narovelinFemCoreRibbonExtra {
    padding: 80px 0;
    border-bottom: 1px solid rgba(106, 169, 255, 0.1);
}

.narovelinFemCoreRibbonHighlight {
    background: rgba(106, 169, 255, 0.1);
    padding: 30px;
    border-left: 5px solid #6AA9FF;
    margin: 40px 0;
    font-size: 1.3rem;
    font-style: italic;
}

/* FOOTER */
.narovelinFemCoreRibbonFooter {
    background: #02050D;
    padding: 80px 0 40px;
    border-top: 2px solid #6AA9FF;
}

.narovelinFemCoreRibbonFooterTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.narovelinFemCoreRibbonFooterLogo {
    font-size: 2.5rem;
    font-weight: 900;
    color: #6AA9FF;
}

.narovelinFemCoreRibbonFooterContact a {
    color: #E0E6F0;
    text-decoration: none;
}

.narovelinFemCoreRibbonFooterBottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

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

.narovelinFemCoreRibbonFooterLinks a {
    color: #8899AC;
    text-decoration: none;
    font-size: 0.9rem;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .narovelinFemCoreRibbonH1 { font-size: 2.5rem; }
    .narovelinFemCoreRibbonHeroFlex, .narovelinFemCoreRibbonBenefitsFlex {
        flex-direction: column;
    }
    .narovelinFemCoreRibbonPriceCard {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .narovelinFemCoreRibbonBurger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    .narovelinFemCoreRibbonBurger span {
        width: 30px;
        height: 3px;
        background: #6AA9FF;
    }
    .narovelinFemCoreRibbonNav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #050A18;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.3s;
    }
    .narovelinFemCoreRibbonCheckbox:checked ~ .narovelinFemCoreRibbonNav {
        left: 0;
    }
    .narovelinFemCoreRibbonCheckList li {
        flex: 1 1 100%;
    }
    .narovelinFemCoreRibbonPriceCard {
        flex: 1 1 100%;
        transform: none !important;
    }
    .narovelinFemCoreRibbonFooterTop {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}