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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0A0D10; /* Темний графіт */
    color: #E6FBFF; /* Світло-айс */
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER STYLE (Glassmorphism) */
.naromavelScreenEaseVista_HeaderMain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 13, 16, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E6FBFF33; /* Айс-лінія */
}

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

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

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

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

.naromavelScreenEaseVista_NavLink:hover {
    color: #A0EEFF;
}

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

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

.naromavelScreenEaseVista_Burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #E6FBFF;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .naromavelScreenEaseVista_Burger {
        display: flex;
    }

    .naromavelScreenEaseVista_NavMenu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0A0D10;
        height: 0;
        overflow: hidden;
        transition: height 0.4s ease;
    }

    .naromavelScreenEaseVista_NavList {
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
    }

    .naromavelScreenEaseVista_NavToggle:checked ~ .naromavelScreenEaseVista_NavMenu {
        height: 400px;
    }
}

/* HERO SECTION */
.naromavelScreenEaseVista_HeroSection {
    padding-top: 120px;
    padding-bottom: 80px;
}

.naromavelScreenEaseVista_QuickLinksWrapper {
    margin-bottom: 40px;
}

.naromavelScreenEaseVista_QuickLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.naromavelScreenEaseVista_QuickBtn {
    padding: 8px 18px;
    border: 1px solid #E6FBFF;
    color: #E6FBFF;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 20px;
    transition: 0.3s;
}

.naromavelScreenEaseVista_QuickBtn:hover {
    background: #E6FBFF;
    color: #0A0D10;
    box-shadow: 0 0 15px #E6FBFF;
}

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

.naromavelScreenEaseVista_HeroImageSide {
    flex: 1;
}

.naromavelScreenEaseVista_HeroTextSide {
    flex: 1;
}

.naromavelScreenEaseVista_Image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #E6FBFF22;
    object-fit: cover;
}

.naromavelScreenEaseVista_MainTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #E6FBFF;
    font-weight: 800;
}

.naromavelScreenEaseVista_SubTitle {
    font-size: 1.25rem;
    color: #A0EEFF;
    margin-bottom: 25px;
    font-weight: 300;
}

.naromavelScreenEaseVista_HeroDesc {
    margin-bottom: 20px;
    opacity: 0.85;
}

.naromavelScreenEaseVista_BtnPrimary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #E6FBFF;
    color: #0A0D10;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: 0.4s;
}

.naromavelScreenEaseVista_BtnPrimary:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 25px #E6FBFF;
    transform: translateY(-2px);
}

/* SECTION TITLES */
.naromavelScreenEaseVista_SectionTitle {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.naromavelScreenEaseVista_SectionTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #E6FBFF;
}

/* AUDIENCE SECTION */
.naromavelScreenEaseVista_AudienceSection {
    padding: 80px 0;
    background: #0F1318;
}

.naromavelScreenEaseVista_TopImage {
    margin-bottom: 50px;
}

.naromavelScreenEaseVista_WideImg {
    width: 100%;
    height: auto;
    border: 1px solid #E6FBFF33;
}

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

.naromavelScreenEaseVista_AudienceList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    list-style: none;
}

.naromavelScreenEaseVista_AudienceItem {
    background: rgba(230, 251, 255, 0.03);
    padding: 25px;
    border-left: 3px solid #E6FBFF;
    transition: 0.3s;
}

.naromavelScreenEaseVista_AudienceItem:hover {
    background: rgba(230, 251, 255, 0.08);
}

/* PRICE SECTION */
.naromavelScreenEaseVista_PriceSection {
    padding: 100px 0;
}

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

.naromavelScreenEaseVista_MiniLink {
    margin: 0 10px;
    color: #A0EEFF;
    text-decoration: none;
    font-size: 0.9rem;
}

.naromavelScreenEaseVista_PriceGrid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.naromavelScreenEaseVista_PriceCard {
    flex: 1;
    background: #151A21;
    padding: 40px;
    border: 1px solid #E6FBFF11;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.naromavelScreenEaseVista_PriceCard_Featured {
    border: 1px solid #E6FBFF;
    transform: scale(1.05);
    background: #1A222B;
    box-shadow: 0 0 30px rgba(230, 251, 255, 0.05);
}

.naromavelScreenEaseVista_CardTitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #A0EEFF;
}

.naromavelScreenEaseVista_PriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.naromavelScreenEaseVista_CardFeatures {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.naromavelScreenEaseVista_CardFeatures li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.naromavelScreenEaseVista_CardFeatures li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E6FBFF;
}

/* BENEFITS SECTION */
.naromavelScreenEaseVista_BenefitsSection {
    padding: 100px 0;
    background: #0F1318;
}

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

.naromavelScreenEaseVista_BenefitsText, .naromavelScreenEaseVista_BenefitsImage {
    flex: 1;
}

.naromavelScreenEaseVista_BenefitsDesc {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.naromavelScreenEaseVista_BenefitsList {
    list-style: none;
}

.naromavelScreenEaseVista_BenefitsList li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.naromavelScreenEaseVista_BenefitsList li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 1px;
    background: #E6FBFF;
}

/* QUOTE SLIDER SECTION */
.naromavelScreenEaseVista_QuoteSection {
    padding: 100px 0;
}

.naromavelScreenEaseVista_SliderContainer {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.naromavelScreenEaseVista_Radio {
    display: none;
}

.naromavelScreenEaseVista_Slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.naromavelScreenEaseVista_SlideItem {
    min-width: 100%;
    padding: 20px;
}

.naromavelScreenEaseVista_Blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #E6FBFF;
}

.naromavelScreenEaseVista_Blockquote cite {
    display: block;
    margin-top: 20px;
    font-size: 1.1rem;
    font-style: normal;
    color: #A0EEFF;
}

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

.naromavelScreenEaseVista_Dot {
    width: 12px;
    height: 12px;
    border: 1px solid #E6FBFF;
    border-radius: 50%;
    cursor: pointer;
}

#naromavel_slide1:checked ~ .naromavelScreenEaseVista_Slides { transform: translateX(0%); }
#naromavel_slide2:checked ~ .naromavelScreenEaseVista_Slides { transform: translateX(-100%); }
#naromavel_slide3:checked ~ .naromavelScreenEaseVista_Slides { transform: translateX(-200%); }

#naromavel_slide1:checked ~ .naromavelScreenEaseVista_SliderControls label:nth-child(1),
#naromavel_slide2:checked ~ .naromavelScreenEaseVista_SliderControls label:nth-child(2),
#naromavel_slide3:checked ~ .naromavelScreenEaseVista_SliderControls label:nth-child(3) {
    background: #E6FBFF;
}

/* ADDITIONAL TEXT SECTIONS */
.naromavelScreenEaseVista_TextSection {
    padding: 80px 0;
    border-top: 1px solid #1A222B;
}

.naromavelScreenEaseVista_TextSection p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.naromavelScreenEaseVista_CustomList {
    list-style: none;
    margin: 20px 0;
}

.naromavelScreenEaseVista_CustomList li {
    padding: 10px 0;
    border-bottom: 1px solid #E6FBFF11;
}

/* FAQ SECTION */
.naromavelScreenEaseVista_FAQSection {
    padding: 100px 0;
    background: #0F1318;
}

.naromavelScreenEaseVista_FAQItem {
    margin-bottom: 15px;
    border: 1px solid #E6FBFF22;
}

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

.naromavelScreenEaseVista_Summary::after {
    content: '+';
    font-size: 1.5rem;
}

.naromavelScreenEaseVista_Details[open] .naromavelScreenEaseVista_Summary::after {
    content: '-';
}

.naromavelScreenEaseVista_Answer {
    padding: 0 20px 20px;
    color: #A0EEFF;
}

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

.naromavelScreenEaseVista_FormBox {
    max-width: 700px;
    margin: 0 auto;
    background: #151A21;
    padding: 60px;
    border: 1px solid #E6FBFF22;
}

.naromavelScreenEaseVista_FormTitle {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.naromavelScreenEaseVista_FormSub {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.7;
}

.naromavelScreenEaseVista_InputGroup {
    margin-bottom: 25px;
}

.naromavelScreenEaseVista_Label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #A0EEFF;
}

.naromavelScreenEaseVista_Input, .naromavelScreenEaseVista_Textarea {
    width: 100%;
    background: #0A0D10;
    border: 1px solid #E6FBFF33;
    padding: 15px;
    color: #E6FBFF;
    border-radius: 2px;
    outline: none;
    transition: 0.3s;
}

.naromavelScreenEaseVista_Input:focus, .naromavelScreenEaseVista_Textarea:focus {
    border-color: #E6FBFF;
}

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

.naromavelScreenEaseVista_CheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.naromavelScreenEaseVista_CheckLabel a {
    color: #E6FBFF;
}

.naromavelScreenEaseVista_SubmitBtn {
    width: 100%;
    padding: 18px;
    background: #E6FBFF;
    color: #0A0D10;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.naromavelScreenEaseVista_SubmitBtn:hover {
    background: #FFFFFF;
    box-shadow: 0 0 20px #E6FBFF;
}

/* FOOTER */
.naromavelScreenEaseVista_FooterMain {
    padding: 80px 0 40px;
    background: #07090C;
    border-top: 1px solid #E6FBFF22;
}

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

.naromavelScreenEaseVista_FooterLogo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.naromavelScreenEaseVista_MailLink {
    color: #E6FBFF;
    text-decoration: none;
}

.naromavelScreenEaseVista_FooterDivider {
    height: 1px;
    background: #E6FBFF11;
    margin-bottom: 40px;
}

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

.naromavelScreenEaseVista_Copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

.naromavelScreenEaseVista_PolicyLinks {
    display: flex;
    gap: 20px;
    list-style: none;
    font-size: 0.8rem;
}

.naromavelScreenEaseVista_PolicyLinks a {
    color: #A0EEFF;
    text-decoration: none;
    opacity: 0.7;
}

.naromavelScreenEaseVista_PolicyLinks a:hover {
    opacity: 1;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .naromavelScreenEaseVista_HeroContent, 
    .naromavelScreenEaseVista_BenefitsContent,
    .naromavelScreenEaseVista_PriceGrid {
        flex-direction: column;
    }

    .naromavelScreenEaseVista_MainTitle {
        font-size: 2.5rem;
    }

    .naromavelScreenEaseVista_PriceCard_Featured {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .naromavelScreenEaseVista_FooterBottom {
        flex-direction: column;
        text-align: center;
    }
    
    .naromavelScreenEaseVista_PolicyLinks {
        flex-direction: column;
        gap: 10px;
    }
    
    .naromavelScreenEaseVista_FormBox {
        padding: 30px 20px;
    }
}