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

html {
    scroll-behavior: smooth;
}

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

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

img.moranavelScreenEaseVistaImg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(106, 169, 255, 0.2);
}

/* Typography */
.moranavelScreenEaseVistaH1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #6AA9FF;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.4);
}

.moranavelScreenEaseVistaH2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #6AA9FF;
}

.moranavelScreenEaseVistaH3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.moranavelScreenEaseVistaP {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Header */
.moranavelScreenEaseVistaHeader {
    background: rgba(5, 10, 24, 0.95);
    border-bottom: 2px solid rgba(106, 169, 255, 0.3);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

.moranavelScreenEaseVistaNavLink {
    text-decoration: none;
    color: #E0E6F0;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Burger Menu */
.moranavelScreenEaseVistaMenuInput {
    display: none;
}

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

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

/* Hero Section */
.moranavelScreenEaseVistaHero {
    padding: 80px 0;
}

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

.moranavelScreenEaseVistaHeroImages {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.moranavelScreenEaseVistaImageCard {
    background: #0D1428;
    padding: 10px;
    border: 1px solid rgba(106, 169, 255, 0.2);
    border-radius: 10px;
    text-align: center;
}

.moranavelScreenEaseVistaImgDesc {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #6AA9FF;
}

.moranavelScreenEaseVistaHeroText {
    flex: 1;
}

.moranavelScreenEaseVistaSub {
    font-size: 1.4rem;
    color: #94A3B8;
    margin-bottom: 25px;
    font-style: italic;
}

.moranavelScreenEaseVistaBtnMain {
    display: inline-block;
    padding: 15px 40px;
    background-color: #6AA9FF;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 20px;
}

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

/* Target Section */
.moranavelScreenEaseVistaTarget {
    padding: 100px 0;
    background-color: #080F25;
}

.moranavelScreenEaseVistaIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.moranavelScreenEaseVistaTargetItem {
    flex: 0 1 calc(33.333% - 20px);
    background: #0D1428;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(106, 169, 255, 0.1);
    transition: transform 0.3s;
}

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

.moranavelScreenEaseVistaTargetLine {
    width: 50px;
    height: 4px;
    background: #6AA9FF;
    margin-bottom: 20px;
    border-radius: 2px;
    box-shadow: 0 0 10px #6AA9FF;
}

.moranavelScreenEaseVistaBadge {
    display: inline-block;
    margin-top: 15px;
    background: rgba(106, 169, 255, 0.2);
    color: #6AA9FF;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Price Section */
.moranavelScreenEaseVistaPrice {
    padding: 100px 0;
}

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

.moranavelScreenEaseVistaPriceCard {
    flex: 1;
    background: #0D1428;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(106, 169, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.moranavelScreenEaseVistaPriceFeatured {
    border: 2px solid #6AA9FF;
    transform: scale(1.05);
    background: #0F1A35;
    box-shadow: 0 10px 30px rgba(106, 169, 255, 0.1);
}

.moranavelScreenEaseVistaPriceTitle {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.moranavelScreenEaseVistaPriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #6AA9FF;
    margin-bottom: 25px;
}

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

.moranavelScreenEaseVistaPriceFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.moranavelScreenEaseVistaQuickLink {
    font-size: 0.8rem;
    color: #94A3B8;
    text-decoration: underline;
}

.moranavelScreenEaseVistaBtnPrice {
    padding: 12px 25px;
    border: 2px solid #6AA9FF;
    border-radius: 8px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.moranavelScreenEaseVistaBtnPrice:hover {
    background: #6AA9FF;
}

/* Benefit Section */
.moranavelScreenEaseVistaBenefit {
    padding: 100px 0;
    background: #080F25;
}

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

.moranavelScreenEaseVistaBenefitText, .moranavelScreenEaseVistaBenefitImg {
    flex: 1;
}

.moranavelScreenEaseVistaUl {
    list-style: none;
}

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

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

/* Reviews Section */
.moranavelScreenEaseVistaReviews {
    padding: 100px 0;
    text-align: center;
}

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

.moranavelScreenEaseVistaRadio {
    display: none;
}

.moranavelScreenEaseVistaSlides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.moranavelScreenEaseVistaSlideItem {
    width: 33.333%;
    padding: 0 20px;
}

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

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

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

.moranavelScreenEaseVistaDot {
    width: 15px;
    height: 15px;
    background: #1E293B;
    border: 2px solid #6AA9FF;
    border-radius: 50%;
    cursor: pointer;
}

#sl1:checked ~ .moranavelScreenEaseVistaSlides { transform: translateX(0); }
#sl2:checked ~ .moranavelScreenEaseVistaSlides { transform: translateX(-33.333%); }
#sl3:checked ~ .moranavelScreenEaseVistaSlides { transform: translateX(-66.666%); }

#sl1:checked ~ .moranavelScreenEaseVistaDots label[for="sl1"],
#sl2:checked ~ .moranavelScreenEaseVistaDots label[for="sl2"],
#sl3:checked ~ .moranavelScreenEaseVistaDots label[for="sl3"] {
    background: #6AA9FF;
}

/* FAQ Section */
.moranavelScreenEaseVistaFaq {
    padding: 100px 0;
    background: #080F25;
}

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

.moranavelScreenEaseVistaDetails {
    margin-bottom: 15px;
    border: 1px solid rgba(106, 169, 255, 0.2);
    border-radius: 8px;
    background: #0D1428;
}

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

.moranavelScreenEaseVistaSummary::after {
    content: '+';
    color: #6AA9FF;
    font-size: 1.5rem;
}

.moranavelScreenEaseVistaDetails[open] .moranavelScreenEaseVistaSummary::after {
    content: '−';
}

.moranavelScreenEaseVistaFaqP {
    padding: 0 20px 20px;
    color: #94A3B8;
}

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

.moranavelScreenEaseVistaAltBg {
    background: #0D1428;
}

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

.moranavelScreenEaseVistaFormBox {
    max-width: 600px;
    margin: 0 auto;
    background: #0D1428;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #6AA9FF;
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.1);
}

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

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

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

.moranavelScreenEaseVistaLabel {
    font-size: 0.9rem;
    color: #6AA9FF;
}

.moranavelScreenEaseVistaInput, .moranavelScreenEaseVistaTextarea {
    background: #050A18;
    border: 1px solid rgba(106, 169, 255, 0.3);
    padding: 12px 15px;
    color: #FFFFFF;
    border-radius: 6px;
    outline: none;
}

.moranavelScreenEaseVistaInput:focus, .moranavelScreenEaseVistaTextarea:focus {
    border-color: #6AA9FF;
    box-shadow: 0 0 8px rgba(106, 169, 255, 0.3);
}

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

.moranavelScreenEaseVistaCheckboxGrp {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.moranavelScreenEaseVistaCheckLabel {
    font-size: 0.85rem;
}

.moranavelScreenEaseVistaCheckLabel a {
    color: #6AA9FF;
}

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

.moranavelScreenEaseVistaSubmit:hover {
    box-shadow: 0 0 15px #6AA9FF;
}

/* Footer */
.moranavelScreenEaseVistaFooter {
    padding: 80px 0 40px;
    background: #030712;
    border-top: 1px solid rgba(106, 169, 255, 0.2);
}

.moranavelScreenEaseVistaFooterTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 40px;
}

.moranavelScreenEaseVistaFooterInfo {
    flex: 2;
}

.moranavelScreenEaseVistaFooterContacts {
    flex: 1;
}

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

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

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

.moranavelScreenEaseVistaFooterNav a {
    font-size: 0.8rem;
    color: #94A3B8;
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 992px) {
    .moranavelScreenEaseVistaHeroGrid, .moranavelScreenEaseVistaFlexBenefit {
        flex-direction: column;
    }
    .moranavelScreenEaseVistaPriceGrid {
        flex-direction: column;
        align-items: center;
    }
    .moranavelScreenEaseVistaPriceCard {
        width: 100%;
        max-width: 500px;
    }
    .moranavelScreenEaseVistaTargetItem {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .moranavelScreenEaseVistaBurger {
        display: flex;
    }
    .moranavelScreenEaseVistaNav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #050A18;
        transition: 0.3s;
        padding: 40px 20px;
    }
    .moranavelScreenEaseVistaNavList {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .moranavelScreenEaseVistaMenuInput:checked ~ .moranavelScreenEaseVistaNav {
        left: 0;
    }
    .moranavelScreenEaseVistaH1 { font-size: 2.2rem; }
    .moranavelScreenEaseVistaTargetItem { flex: 0 1 100%; }
    .moranavelScreenEaseVistaFooterTop { flex-direction: column; text-align: center; }
}