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

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

/* DECOR: CYBER GRID BACKGROUND (CSS ONLY, NO IMAGE) */
body.valeromilScreenEaseVistaMainBody::before {
    content: "";
    position: fixed;
    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;
    pointer-events: none;
}

/* HEADER STYLE */
.valeromilScreenEaseVistaHeaderWrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 6, 7, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #5AF3FF;
    box-shadow: 0 5px 20px rgba(90, 243, 255, 0.2);
}

.valeromilScreenEaseVistaHeaderInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.valeromilScreenEaseVistaLogoText {
    font-size: 28px;
    font-weight: 800;
    color: #5AF3FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.8);
}

/* NAVIGATION */
.valeromilScreenEaseVistaNavMenu {
    display: flex;
    gap: 25px;
}

.valeromilScreenEaseVistaNavLink {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

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

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

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

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

/* HERO SECTION */
.valeromilScreenEaseVistaHeroSection {
    padding: 100px 20px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.valeromilScreenEaseVistaHeroRedOutline {
    border: 3px solid #ff4444;
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
    margin: 40px 20px;
    border-radius: 20px;
}

.valeromilScreenEaseVistaHeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.valeromilScreenEaseVistaHeroImageCol {
    flex: 1;
}

.valeromilScreenEaseVistaHeroImg {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.4);
    object-fit: cover;
}

.valeromilScreenEaseVistaHeroTextCol {
    flex: 1;
}

.valeromilScreenEaseVistaHeroTitle {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.valeromilScreenEaseVistaHeroSubtitle {
    font-size: 20px;
    color: #5AF3FF;
    margin-bottom: 30px;
    font-weight: 600;
}

.valeromilScreenEaseVistaHeroParagraph {
    margin-bottom: 15px;
    font-size: 16px;
    color: #cccccc;
}

.valeromilScreenEaseVistaCtaButton {
    display: inline-block;
    padding: 18px 40px;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: 800;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.5);
    border: none;
}

.valeromilScreenEaseVistaCtaButton:hover {
    background-color: #ffffff;
    box-shadow: 0 0 25px rgba(90, 243, 255, 1);
    transform: translateY(-3px);
}

/* PRICE SECTION */
.valeromilScreenEaseVistaPriceSection {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.valeromilScreenEaseVistaSectionHeader {
    text-align: center;
    margin-bottom: 50px;
}

.valeromilScreenEaseVistaSectionTitle {
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.valeromilScreenEaseVistaSectionTitle::before {
    content: "■";
    color: #5AF3FF;
    margin-right: 15px;
    font-size: 24px;
}

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

.valeromilScreenEaseVistaPriceCard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(90, 243, 255, 0.3);
    padding: 40px;
    border-radius: 15px;
    flex: 1 1 250px;
    max-width: 350px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.valeromilScreenEaseVistaPriceCard:hover {
    background: rgba(90, 243, 255, 0.05);
    border-color: #5AF3FF;
    transform: scale(1.02);
}

.valeromilScreenEaseVistaPriceCardFeatured {
    border: 2px solid #5AF3FF;
    position: relative;
    background: rgba(90, 243, 255, 0.02);
}

.valeromilScreenEaseVistaBadge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #5AF3FF;
    color: #050607;
    padding: 5px 15px;
    font-weight: 800;
    font-size: 12px;
    border-radius: 20px;
}

.valeromilScreenEaseVistaCardTitle {
    font-size: 24px;
    margin-bottom: 10px;
}

.valeromilScreenEaseVistaCardCost {
    font-size: 32px;
    font-weight: 800;
    color: #5AF3FF;
    margin-bottom: 25px;
}

.valeromilScreenEaseVistaCardFeatures {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.valeromilScreenEaseVistaFeatureItem {
    margin-bottom: 10px;
    font-size: 14px;
    color: #bbbbbb;
    display: flex;
    align-items: center;
}

.valeromilScreenEaseVistaFeatureItem::before {
    content: "→";
    color: #5AF3FF;
    margin-right: 10px;
}

.valeromilScreenEaseVistaPriceBtn {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: 0.3s;
}

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

/* TARGET SECTION */
.valeromilScreenEaseVistaTargetSection {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.01);
}

.valeromilScreenEaseVistaTargetImageContainer {
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.valeromilScreenEaseVistaTargetImg {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #5AF3FF;
}

.valeromilScreenEaseVistaTargetContent {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.valeromilScreenEaseVistaTargetIntro {
    font-size: 18px;
    margin: 20px 0 40px;
}

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

.valeromilScreenEaseVistaTargetListItem {
    padding: 20px;
    background: rgba(5, 6, 7, 0.5);
    border-left: 4px solid #5AF3FF;
    font-size: 15px;
}

/* BENEFITS SECTION */
.valeromilScreenEaseVistaBenefitsSection {
    padding: 100px 20px;
}

.valeromilScreenEaseVistaBenefitsContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.valeromilScreenEaseVistaBenefitsText {
    flex: 1.2;
}

.valeromilScreenEaseVistaBenefitsImage {
    flex: 0.8;
}

.valeromilScreenEaseVistaBenefitsImg {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(0.5);
    transition: 0.5s;
}

.valeromilScreenEaseVistaBenefitsImg:hover {
    filter: grayscale(0);
    box-shadow: 0 0 30px #5AF3FF;
}

.valeromilScreenEaseVistaBenefitsList {
    list-style: none;
    margin-top: 40px;
}

.valeromilScreenEaseVistaBenefitItem {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.valeromilScreenEaseVistaBenefitIcon {
    width: 40px;
    height: 40px;
    background: #5AF3FF;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #5AF3FF;
}

.valeromilScreenEaseVistaBenefitTitle {
    font-size: 20px;
    color: #5AF3FF;
    margin-bottom: 5px;
}

/* EXPERT SECTION */
.valeromilScreenEaseVistaExpertSection {
    padding: 100px 20px;
    background: #0a0b0d;
    border-top: 1px solid rgba(90, 243, 255, 0.2);
    border-bottom: 1px solid rgba(90, 243, 255, 0.2);
}

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

.valeromilScreenEaseVistaExpertQuote {
    font-size: 26px;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
}

.valeromilScreenEaseVistaExpertQuote::before {
    content: "“";
    font-size: 100px;
    color: rgba(90, 243, 255, 0.2);
    position: absolute;
    top: -50px;
    left: -20px;
}

.valeromilScreenEaseVistaExpertName {
    font-size: 24px;
    color: #5AF3FF;
    margin-top: 20px;
}

.valeromilScreenEaseVistaExpertRole {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

.valeromilScreenEaseVistaExpertDetails {
    margin-top: 50px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 10px;
}

.valeromilScreenEaseVistaExpertDetailsTitle {
    margin-bottom: 20px;
    font-size: 18px;
    color: #5AF3FF;
}

.valeromilScreenEaseVistaExpertDetailsList {
    list-style: none;
}

.valeromilScreenEaseVistaExpertDetailsItem {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.valeromilScreenEaseVistaExpertDetailsItem::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

/* FAQ SECTION */
.valeromilScreenEaseVistaFaqSection {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.valeromilScreenEaseVistaFaqList {
    margin-top: 40px;
}

.valeromilScreenEaseVistaFaqItem {
    margin-bottom: 15px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.valeromilScreenEaseVistaFaqSummary {
    padding: 20px;
    background: rgba(90, 243, 255, 0.05);
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
}

.valeromilScreenEaseVistaFaqSummary::after {
    content: "+";
    color: #5AF3FF;
}

.valeromilScreenEaseVistaFaqItem[open] .valeromilScreenEaseVistaFaqSummary {
    background: rgba(90, 243, 255, 0.15);
}

.valeromilScreenEaseVistaFaqAnswer {
    padding: 20px;
    background: rgba(5, 6, 7, 0.8);
    border-top: 1px solid rgba(90, 243, 255, 0.1);
}

/* FORM SECTION */
.valeromilScreenEaseVistaFormSection {
    padding: 100px 20px;
}

.valeromilScreenEaseVistaFormContainer {
    max-width: 600px;
    margin: 0 auto;
    background: #0a0b0d;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #5AF3FF;
    box-shadow: 0 0 50px rgba(90, 243, 255, 0.15);
}

.valeromilScreenEaseVistaFormTitle {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.valeromilScreenEaseVistaFormSubtitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
}

.valeromilScreenEaseVistaInputGroup {
    margin-bottom: 25px;
}

.valeromilScreenEaseVistaLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #5AF3FF;
}

.valeromilScreenEaseVistaInput,
.valeromilScreenEaseVistaTextarea {
    width: 100%;
    background: #050607;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    border-radius: 5px;
    font-family: inherit;
}

.valeromilScreenEaseVistaInput:focus,
.valeromilScreenEaseVistaTextarea:focus {
    outline: none;
    border-color: #5AF3FF;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.3);
}

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

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

.valeromilScreenEaseVistaCheckboxLabel {
    font-size: 13px;
    color: #ccc;
}

.valeromilScreenEaseVistaCheckboxLabel a {
    color: #5AF3FF;
}

.valeromilScreenEaseVistaSubmitBtn {
    width: 100%;
    padding: 18px;
    background: #5AF3FF;
    color: #050607;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.valeromilScreenEaseVistaSubmitBtn:hover {
    background: #ffffff;
    box-shadow: 0 0 20px #5AF3FF;
}

/* EXTRA TEXT SECTIONS */
.valeromilScreenEaseVistaExtraSection {
    padding: 100px 20px;
}

.valeromilScreenEaseVistaBgAlt {
    background: rgba(90, 243, 255, 0.02);
}

.valeromilScreenEaseVistaExtraContent {
    max-width: 1000px;
    margin: 0 auto;
}

.valeromilScreenEaseVistaExtraText {
    font-size: 17px;
    margin-bottom: 25px;
    color: #ddd;
}

.valeromilScreenEaseVistaSubTitle {
    color: #5AF3FF;
    margin: 40px 0 20px;
}

.valeromilScreenEaseVistaExtraList {
    margin-bottom: 30px;
    padding-left: 20px;
}

.valeromilScreenEaseVistaExtraList li {
    margin-bottom: 10px;
    color: #bbb;
}

/* FOOTER */
.valeromilScreenEaseVistaFooter {
    background: #050607;
    border-top: 2px solid #5AF3FF;
    padding: 60px 20px;
}

.valeromilScreenEaseVistaFooterInner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.valeromilScreenEaseVistaFooterInfo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.valeromilScreenEaseVistaCopyright {
    font-size: 18px;
    font-weight: 700;
    color: #5AF3FF;
}

.valeromilScreenEaseVistaFooterContact a {
    color: #fff;
    text-decoration: none;
}

.valeromilScreenEaseVistaFooterGeo {
    font-size: 14px;
    color: #666;
}

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

.valeromilScreenEaseVistaFooterLink {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.valeromilScreenEaseVistaFooterLink:hover {
    color: #5AF3FF;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .valeromilScreenEaseVistaHeroContainer {
        flex-direction: column;
        text-align: center;
    }
    .valeromilScreenEaseVistaHeroTitle {
        font-size: 38px;
    }
    .valeromilScreenEaseVistaBenefitsContainer {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .valeromilScreenEaseVistaBurgerBtn {
        display: flex;
    }
    .valeromilScreenEaseVistaNavMenu {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 68px);
        background: #050607;
        flex-direction: column;
        padding: 40px;
        transition: 0.4s;
        z-index: 999;
    }
    .valeromilScreenEaseVistaMenuToggleInput:checked ~ .valeromilScreenEaseVistaNavMenu {
        left: 0;
    }
    .valeromilScreenEaseVistaMenuToggleInput:checked ~ .valeromilScreenEaseVistaBurgerBtn span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    .valeromilScreenEaseVistaMenuToggleInput:checked ~ .valeromilScreenEaseVistaBurgerBtn span:nth-child(2) {
        opacity: 0;
    }
    .valeromilScreenEaseVistaMenuToggleInput:checked ~ .valeromilScreenEaseVistaBurgerBtn span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .valeromilScreenEaseVistaPriceCard {
        max-width: 100%;
    }
}