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

html {
    scroll-behavior: smooth;
}

body.narovelimScreenEaseVistaBody {
    background-color: #000F2B;
    color: #D9FAFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HEADER */
.narovelimScreenEaseVistaHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 15, 43, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(217, 250, 255, 0.15);
}

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

.narovelimScreenEaseVistaLogo {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D9FAFF;
    text-shadow: 0 0 10px rgba(217, 250, 255, 0.4);
}

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

.narovelimScreenEaseVistaNavLink:hover {
    color: #89EFFF;
    text-shadow: 0 0 8px rgba(137, 239, 255, 0.6);
}

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

.narovelimScreenEaseVistaBurger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.narovelimScreenEaseVistaBurger span {
    width: 30px;
    height: 3px;
    background: #D9FAFF;
    transition: 0.3s;
}

/* HERO SECTION */
.narovelimScreenEaseVistaHeroSec {
    padding: 160px 0 100px;
}

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

.narovelimScreenEaseVistaHeroGallery {
    flex: 1;
}

.narovelimScreenEaseVistaGalleryGrid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.narovelimScreenEaseVistaHeroImg {
    border-radius: 12px;
    border: 1px solid rgba(217, 250, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.narovelimScreenEaseVistaHeroText {
    flex: 1;
}

.narovelimScreenEaseVistaH1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #D9FAFF;
}

.narovelimScreenEaseVistaSub {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #89EFFF;
}

.narovelimScreenEaseVistaDesc {
    margin-bottom: 15px;
    font-size: 17px;
    color: rgba(217, 250, 255, 0.85);
}

.narovelimScreenEaseVistaCtaBtn {
    display: inline-block;
    padding: 18px 40px;
    background: #D9FAFF;
    color: #000F2B;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(217, 250, 255, 0.3);
}

.narovelimScreenEaseVistaCtaBtn:hover {
    background: #FFF;
    box-shadow: 0 0 35px rgba(217, 250, 255, 0.6);
    transform: translateY(-2px);
}

/* REVIEWS */
.narovelimScreenEaseVistaReviewSec {
    padding: 100px 0;
    background: rgba(217, 250, 255, 0.03);
}

.narovelimScreenEaseVistaH2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

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

.narovelimScreenEaseVistaReviewCard {
    background: rgba(217, 250, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    transition: 0.3s;
}

.narovelimScreenEaseVistaReviewCard:hover {
    background: rgba(217, 250, 255, 0.08);
    border-color: #D9FAFF;
}

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

.narovelimScreenEaseVistaReviewAuthor {
    display: block;
    font-weight: 700;
    color: #89EFFF;
}

/* PRICE PACKAGES */
.narovelimScreenEaseVistaPriceSec {
    padding: 100px 0;
}

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

.narovelimScreenEaseVistaPriceItem {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 30px;
    border: 1px solid rgba(217, 250, 255, 0.2);
    border-radius: 0;
    text-align: center;
    transition: 0.3s;
}

.narovelimScreenEaseVistaPriceFeatured {
    border: 2px solid #D9FAFF;
    background: rgba(217, 250, 255, 0.05);
    transform: scale(1.05);
}

.narovelimScreenEaseVistaH3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.narovelimScreenEaseVistaPriceVal {
    font-size: 32px;
    font-weight: 800;
    color: #89EFFF;
    margin-bottom: 20px;
}

.narovelimScreenEaseVistaPriceList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(217, 250, 255, 0.1);
    font-size: 14px;
}

/* TARGET AUDIENCE */
.narovelimScreenEaseVistaTargetSec {
    padding: 100px 0;
}

.narovelimScreenEaseVistaImgTop {
    margin-bottom: 40px;
}

.narovelimScreenEaseVistaTargetImg {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.narovelimScreenEaseVistaTargetList {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.narovelimScreenEaseVistaTargetList li {
    background: rgba(217, 250, 255, 0.1);
    padding: 15px 25px;
    border-left: 4px solid #D9FAFF;
    width: calc(50% - 15px);
}

/* EXPERT BLOCK */
.narovelimScreenEaseVistaExpertSec {
    padding: 100px 0;
    background: linear-gradient(180deg, #000F2B, #001A4D);
}

.narovelimScreenEaseVistaExpertCard {
    background: rgba(217, 250, 255, 0.03);
    border: 1px solid rgba(217, 250, 255, 0.1);
    padding: 60px;
    border-radius: 30px;
}

.narovelimScreenEaseVistaQuote {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 300;
}

.narovelimScreenEaseVistaExpertInfo {
    margin-bottom: 40px;
}

.narovelimScreenEaseVistaExpertInfo strong {
    display: block;
    font-size: 22px;
    color: #D9FAFF;
}

.narovelimScreenEaseVistaExpertList ul {
    margin-top: 15px;
}

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

.narovelimScreenEaseVistaExpertList li::before {
    content: "❄";
    position: absolute;
    left: 0;
    color: #89EFFF;
}

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

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

.narovelimScreenEaseVistaBenefitsImg {
    flex: 1;
}

.narovelimScreenEaseVistaFluidImg {
    border-radius: 50%;
    border: 2px solid rgba(217, 250, 255, 0.3);
}

.narovelimScreenEaseVistaBenefitsText {
    flex: 1;
}

.narovelimScreenEaseVistaBenefitsList li {
    margin-bottom: 20px;
    font-size: 18px;
}

.narovelimScreenEaseVistaBenefitsList li strong {
    color: #89EFFF;
    display: block;
}

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

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

.narovelimScreenEaseVistaFaqItem {
    margin-bottom: 15px;
    background: rgba(217, 250, 255, 0.05);
    border: 1px solid rgba(217, 250, 255, 0.1);
}

.narovelimScreenEaseVistaFaqSum {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    outline: none;
}

.narovelimScreenEaseVistaFaqContent {
    padding: 0 20px 20px;
    color: rgba(217, 250, 255, 0.7);
}

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

.narovelimScreenEaseVistaFormBox {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
    padding: 50px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.narovelimScreenEaseVistaForm {
    margin-top: 30px;
}

.narovelimScreenEaseVistaFormGroup {
    margin-bottom: 20px;
}

.narovelimScreenEaseVistaLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #89EFFF;
}

.narovelimScreenEaseVistaInput, 
.narovelimScreenEaseVistaTextarea {
    width: 100%;
    background: rgba(217, 250, 255, 0.05);
    border: 1px solid rgba(217, 250, 255, 0.2);
    padding: 15px;
    color: #FFF;
    outline: none;
}

.narovelimScreenEaseVistaTextarea {
    height: 120px;
    resize: none;
}

.narovelimScreenEaseVistaFormCheck {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.narovelimScreenEaseVistaSubmit {
    width: 100%;
    padding: 20px;
    background: #D9FAFF;
    border: none;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.narovelimScreenEaseVistaSubmit:hover {
    background: #FFF;
    box-shadow: 0 0 25px rgba(217, 250, 255, 0.5);
}

/* TEXT CONTENT SECTIONS */
.narovelimScreenEaseVistaTextContent {
    padding: 80px 0;
    border-top: 1px solid rgba(217, 250, 255, 0.1);
}

.narovelimScreenEaseVistaTextContent p {
    margin-bottom: 20px;
    font-size: 18px;
    color: rgba(217, 250, 255, 0.8);
}

/* FOOTER */
.narovelimScreenEaseVistaFooter {
    padding: 60px 0;
    background: #000817;
    text-align: center;
    border-top: 3px solid #D9FAFF;
}

.narovelimScreenEaseVistaFootName {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.narovelimScreenEaseVistaContact {
    margin-bottom: 5px;
    font-size: 14px;
}

.narovelimScreenEaseVistaFootLinks {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
}

.narovelimScreenEaseVistaFootLinks a:hover {
    color: #89EFFF;
}

/* ADAPTIVITY */
@media (max-width: 992px) {
    .narovelimScreenEaseVistaHeroFlex, 
    .narovelimScreenEaseVistaFlexRev {
        flex-direction: column;
        text-align: center;
    }
    .narovelimScreenEaseVistaH1 { font-size: 36px; }
    .narovelimScreenEaseVistaTargetList li { width: 100%; }
}

@media (max-width: 768px) {
    .narovelimScreenEaseVistaBurger { display: flex; }
    .narovelimScreenEaseVistaNav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #000F2B;
        transition: 0.4s;
        border-bottom: 1px solid #D9FAFF;
    }
    .narovelimScreenEaseVistaNavList {
        flex-direction: column;
        padding: 40px;
        align-items: center;
    }
    .narovelimScreenEaseVistaMenuInput:checked ~ .narovelimScreenEaseVistaNav {
        left: 0;
    }
    .narovelimScreenEaseVistaMenuInput:checked ~ .narovelimScreenEaseVistaBurger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .narovelimScreenEaseVistaMenuInput:checked ~ .narovelimScreenEaseVistaBurger span:nth-child(2) {
        opacity: 0;
    }
    .narovelimScreenEaseVistaMenuInput:checked ~ .narovelimScreenEaseVistaBurger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    .narovelimScreenEaseVistaPriceFeatured { transform: scale(1); }
    .narovelimScreenEaseVistaExpertCard { padding: 30px; }
    .narovelimScreenEaseVistaQuote { font-size: 18px; }
}