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

body.narovelonCoreRenewNestBody {
    background-color: #050607;
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* TYPOGRAPHY */
.narovelonCoreRenewNestH1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #5AF3FF;
    text-shadow: 0 0 20px rgba(90, 243, 255, 0.4);
}

.narovelonCoreRenewNestH2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.narovelonCoreRenewNestH2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

.narovelonCoreRenewNestH3 {
    font-size: 1.5rem;
    color: #5AF3FF;
    margin-bottom: 10px;
}

/* HEADER */
.narovelonCoreRenewNestHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 6, 7, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(90, 243, 255, 0.3);
}

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

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

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

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

.narovelonCoreRenewNestNavLink:hover {
    color: #5AF3FF;
    text-shadow: 0 0 8px rgba(90, 243, 255, 0.6);
}

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

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

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

/* HERO SECTION */
.narovelonCoreRenewNestHero {
    padding: 160px 0 100px;
    position: relative;
}

/* Decorative grid effect */
.narovelonCoreRenewNestHero::before {
    content: '';
    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;
}

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

.narovelonCoreRenewNestHeroImageSide {
    flex: 1;
}

.narovelonCoreRenewNestMainImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.2);
    border: 1px solid rgba(90, 243, 255, 0.2);
}

.narovelonCoreRenewNestHeroContentSide {
    flex: 1.2;
}

.narovelonCoreRenewNestSubH {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.narovelonCoreRenewNestHeroTextBlocks {
    margin-bottom: 40px;
}

.narovelonCoreRenewNestHeroTextBlock {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #5AF3FF;
}

/* BUTTONS */
.narovelonCoreRenewNestBtnPrimary {
    display: inline-block;
    padding: 15px 40px;
    background: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.narovelonCoreRenewNestBtnPrimary:hover {
    background: #ffffff;
    box-shadow: 0 0 25px #5AF3FF;
    transform: translateY(-2px);
}

.narovelonCoreRenewNestBtnSecondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #5AF3FF;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #5AF3FF;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
}

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

/* PRICE SECTION */
.narovelonCoreRenewNestPriceSection {
    padding: 100px 0;
    background: #0a0c0e;
}

.narovelonCoreRenewNestQuickLinks {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.narovelonCoreRenewNestQuickLinkItem {
    color: #5AF3FF;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 15px;
    border: 1px solid rgba(90, 243, 255, 0.3);
    border-radius: 20px;
    transition: 0.3s;
}

.narovelonCoreRenewNestQuickLinkItem:hover {
    background: #5AF3FF;
    color: #050607;
}

.narovelonCoreRenewNestPriceGrid {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.narovelonCoreRenewNestPriceCard {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
}

.narovelonCoreRenewNestPriceCardFeatured {
    border-color: #5AF3FF;
    transform: scale(1.05);
    background: rgba(90, 243, 255, 0.02);
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.1);
}

.narovelonCoreRenewNestPriceHeader {
    margin-bottom: 30px;
    text-align: center;
}

.narovelonCoreRenewNestPriceTitle {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #5AF3FF;
}

.narovelonCoreRenewNestPriceValue {
    font-size: 2.5rem;
    font-weight: 800;
}

.narovelonCoreRenewNestPriceList {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.narovelonCoreRenewNestPriceList li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

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

/* REVIEWS SLIDER (No JS) */
.narovelonCoreRenewNestReviewsSection {
    padding: 100px 0;
}

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

.narovelonCoreRenewNestSliderInput {
    display: none;
}

.narovelonCoreRenewNestSliderContent {
    display: flex;
    transition: transform 0.6s ease;
}

.narovelonCoreRenewNestReviewCard {
    min-width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
}

.narovelonCoreRenewNestReviewText {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
}

.narovelonCoreRenewNestReviewAuthor {
    color: #5AF3FF;
    font-weight: 600;
}

.narovelonCoreRenewNestSliderControls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.narovelonCoreRenewNestSliderDot {
    width: 12px;
    height: 12px;
    background: rgba(90, 243, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

#narovelonSlide1:checked ~ .narovelonCoreRenewNestSliderContent { transform: translateX(0); }
#narovelonSlide2:checked ~ .narovelonCoreRenewNestSliderContent { transform: translateX(-100%); }
#narovelonSlide3:checked ~ .narovelonCoreRenewNestSliderContent { transform: translateX(-200%); }

#narovelonSlide1:checked ~ .narovelonCoreRenewNestSliderControls label:nth-child(1),
#narovelonSlide2:checked ~ .narovelonCoreRenewNestSliderControls label:nth-child(2),
#narovelonSlide3:checked ~ .narovelonCoreRenewNestSliderControls label:nth-child(3) {
    background: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

/* WHO SECTION */
.narovelonCoreRenewNestWhoSection {
    padding: 100px 0;
    background: #0a0c0e;
}

.narovelonCoreRenewNestWhoImageWrapper {
    margin-bottom: 50px;
}

.narovelonCoreRenewNestFullWidthImg {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.narovelonCoreRenewNestIntroText {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.narovelonCoreRenewNestWhoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.narovelonCoreRenewNestWhoItem {
    background: rgba(90, 243, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #5AF3FF;
    transition: 0.3s;
}

.narovelonCoreRenewNestWhoItem:hover {
    background: rgba(90, 243, 255, 0.1);
    transform: translateX(10px);
}

/* BENEFITS SECTION */
.narovelonCoreRenewNestBenefitsSection {
    padding: 100px 0;
}

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

.narovelonCoreRenewNestBenefitsContent {
    flex: 1;
}

.narovelonCoreRenewNestBenefitsImage {
    flex: 1;
}

.narovelonCoreRenewNestSideImg {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(90, 243, 255, 0.3);
}

.narovelonCoreRenewNestBenefitsList {
    list-style: none;
}

.narovelonCoreRenewNestBenefitsList li {
    margin-bottom: 25px;
}

.narovelonCoreRenewNestBenefitsList li strong {
    color: #5AF3FF;
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* QUOTE SECTION */
.narovelonCoreRenewNestQuoteSection {
    padding: 100px 0;
    background: linear-gradient(180deg, #050607 0%, #0a0c0e 100%);
}

.narovelonCoreRenewNestQuoteBox {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px;
    border-radius: 30px;
    border: 1px dashed rgba(90, 243, 255, 0.3);
    text-align: center;
    position: relative;
}

.narovelonCoreRenewNestQuoteText {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #efefef;
}

.narovelonCoreRenewNestQuoteAuthor {
    font-size: 1.1rem;
    color: #5AF3FF;
    font-style: normal;
    font-weight: 700;
}

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

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

.narovelonCoreRenewNestFaqItem {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.narovelonCoreRenewNestFaqContent {
    padding: 0 20px 20px;
    color: #cccccc;
}

/* LARGE TEXT SECTIONS */
.narovelonCoreRenewNestTextLarge {
    padding: 80px 0;
}

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

.narovelonCoreRenewNestInTextList {
    margin: 30px 0 30px 40px;
}

.narovelonCoreRenewNestInTextList li {
    margin-bottom: 15px;
    color: #5AF3FF;
}

/* FORM SECTION */
.narovelonCoreRenewNestFormSection {
    padding: 100px 0;
    background: #0a0c0e;
}

.narovelonCoreRenewNestFormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #050607;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(90, 243, 255, 0.3);
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.05);
}

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

.narovelonCoreRenewNestFormGroup {
    margin-bottom: 25px;
}

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

.narovelonCoreRenewNestFormGroup input,
.narovelonCoreRenewNestFormGroup textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 5px;
    outline: none;
}

.narovelonCoreRenewNestFormGroup input:focus,
.narovelonCoreRenewNestFormGroup textarea:focus {
    border-color: #5AF3FF;
}

.narovelonCoreRenewNestFormGroup textarea {
    height: 120px;
    resize: vertical;
}

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

.narovelonCoreRenewNestCheckboxGroup a {
    color: #5AF3FF;
}

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

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

.narovelonCoreRenewNestFooterBrand {
    font-size: 2rem;
    font-weight: 800;
    color: #5AF3FF;
    display: block;
    margin-bottom: 10px;
}

.narovelonCoreRenewNestFooterContacts a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

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

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

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

.narovelonCoreRenewNestFooterLinks a {
    color: #888888;
    text-decoration: none;
    font-size: 0.85rem;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .narovelonCoreRenewNestHeroGrid,
    .narovelonCoreRenewNestFlexBenefits {
        flex-direction: column;
    }
    .narovelonCoreRenewNestPriceGrid {
        flex-direction: column;
        align-items: center;
    }
    .narovelonCoreRenewNestPriceCard {
        width: 100%;
        max-width: 500px;
    }
    .narovelonCoreRenewNestPriceCardFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .narovelonCoreRenewNestBurger {
        display: flex;
    }

    .narovelonCoreRenewNestNav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #050607;
        transition: 0.4s;
        padding: 40px;
    }

    .narovelonCoreRenewNestNavList {
        flex-direction: column;
        align-items: center;
    }

    .narovelonCoreRenewNestNavToggle:checked ~ .narovelonCoreRenewNestNav {
        left: 0;
    }

    .narovelonCoreRenewNestH1 {
        font-size: 2.5rem;
    }

    .narovelonCoreRenewNestH2 {
        font-size: 2rem;
    }
}