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

body.velviroxScreenEaseVista_BodyMain {
    background-color: #03070A;
    color: #FFFFFF;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
.velviroxScreenEaseVista_HeaderWrapper {
    background-color: rgba(3, 7, 10, 0.95);
    border-bottom: 2px solid #42FFD5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.velviroxScreenEaseVista_LogoText {
    font-size: 28px;
    font-weight: 800;
    color: #42FFD5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.velviroxScreenEaseVista_NavCheckbox {
    display: none;
}

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

.velviroxScreenEaseVista_BurgerBtn span {
    width: 25px;
    height: 3px;
    background-color: #42FFD5;
    transition: 0.3s;
}

.velviroxScreenEaseVista_NavList {
    list-style: none;
    display: flex;
    gap: 25px;
}

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

.velviroxScreenEaseVista_NavLink:hover {
    color: #42FFD5;
}

/* HERO SECTION */
.velviroxScreenEaseVista_HeroSection {
    padding: 80px 20px;
    background: radial-gradient(circle at top right, #0a1f1a, #03070A);
}

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

.velviroxScreenEaseVista_HeroFlexRow {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.velviroxScreenEaseVista_HeroImageSide {
    flex: 1;
    min-width: 300px;
}

.velviroxScreenEaseVista_MainHeroImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(66, 255, 213, 0.2);
    object-fit: cover;
}

.velviroxScreenEaseVista_HeroTextSide {
    flex: 1;
    min-width: 300px;
}

.velviroxScreenEaseVista_HeroH1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #42FFD5;
}

.velviroxScreenEaseVista_HeroSub {
    font-size: 20px;
    margin-bottom: 25px;
    color: #cccccc;
}

.velviroxScreenEaseVista_HeroPara {
    margin-bottom: 15px;
    font-size: 16px;
}

.velviroxScreenEaseVista_HeroCTA {
    display: inline-block;
    background-color: #42FFD5;
    color: #03070A;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(66, 255, 213, 0.4);
}

.velviroxScreenEaseVista_HeroCTA:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 255, 213, 0.6);
}

.velviroxScreenEaseVista_HeroPhotoGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.velviroxScreenEaseVista_HeroPhotoItem {
    flex: 1;
    min-width: 280px;
    background: #081014;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #1a2a2a;
}

.velviroxScreenEaseVista_GridImg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.velviroxScreenEaseVista_GridTitle {
    color: #42FFD5;
    margin-bottom: 10px;
}

/* REVIEWS */
.velviroxScreenEaseVista_ReviewsSection {
    padding: 100px 20px;
    background-color: #050b0f;
}

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

.velviroxScreenEaseVista_SectionTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #42FFD5;
}

.velviroxScreenEaseVista_ReviewsGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.velviroxScreenEaseVista_ReviewCard {
    flex: 1;
    min-width: 300px;
    background: #03070A;
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #42FFD5;
}

.velviroxScreenEaseVista_RevRating {
    color: #42FFD5;
    margin-bottom: 15px;
}

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

.velviroxScreenEaseVista_RevAuthor {
    font-weight: bold;
    color: #42FFD5;
}

/* FOR WHOM */
.velviroxScreenEaseVista_WhoInSection {
    padding: 100px 20px;
}

.velviroxScreenEaseVista_WhoInFlex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.velviroxScreenEaseVista_WhoInText {
    flex: 1;
    min-width: 300px;
}

.velviroxScreenEaseVista_CheckList {
    list-style: none;
}

.velviroxScreenEaseVista_CheckItem {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 18px;
}

.velviroxScreenEaseVista_CheckItem::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #42FFD5;
    font-weight: bold;
}

.velviroxScreenEaseVista_WhoInImage {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.velviroxScreenEaseVista_ProductImg {
    width: 100%;
    max-width: 450px;
    border-radius: 50% 20% 50% 20%;
    border: 3px solid #42FFD5;
}

.velviroxScreenEaseVista_PriceBadge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #42FFD5;
    color: #03070A;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
}

.velviroxScreenEaseVista_ServiceDetailing {
    margin-top: 80px;
}

.velviroxScreenEaseVista_DetailH3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #42FFD5;
}

.velviroxScreenEaseVista_DetailGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.velviroxScreenEaseVista_DetailBox {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: #081014;
    border: 1px solid #1a2a2a;
    border-radius: 10px;
    transition: 0.3s;
}

.velviroxScreenEaseVista_DetailBox:hover {
    border-color: #42FFD5;
}

.velviroxScreenEaseVista_DetailBox h4 {
    color: #42FFD5;
    margin-bottom: 10px;
}

/* QUOTE */
.velviroxScreenEaseVista_QuoteSection {
    padding: 100px 20px;
    background: linear-gradient(90deg, #03070A, #0a1a17, #03070A);
}

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

.velviroxScreenEaseVista_Blockquote {
    font-size: 24px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.velviroxScreenEaseVista_Blockquote::before {
    content: '"';
    font-size: 80px;
    color: #42FFD5;
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: -20px;
}

.velviroxScreenEaseVista_AuthorName {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #42FFD5;
}

.velviroxScreenEaseVista_AuthorTitle {
    color: #888;
}

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

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

.velviroxScreenEaseVista_BenefitsText {
    flex: 1;
    min-width: 300px;
}

.velviroxScreenEaseVista_SectionTitleLeft {
    font-size: 36px;
    margin-bottom: 25px;
    color: #42FFD5;
}

.velviroxScreenEaseVista_BenePara {
    margin-bottom: 20px;
}

.velviroxScreenEaseVista_BeneList {
    list-style: none;
}

.velviroxScreenEaseVista_BeneList li {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 2px solid #42FFD5;
}

.velviroxScreenEaseVista_BeneList li strong {
    color: #42FFD5;
}

.velviroxScreenEaseVista_BenefitsImage {
    flex: 1;
    min-width: 300px;
}

.velviroxScreenEaseVista_BeneImg {
    width: 100%;
    border-radius: 20px;
}

/* PRICE PACKAGES */
.velviroxScreenEaseVista_PriceSection {
    padding: 100px 20px;
    background-color: #050b0f;
}

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

.velviroxScreenEaseVista_PriceCard {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: #03070A;
    border: 1px solid #1a2a2a;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.velviroxScreenEaseVista_PriceCard:hover {
    transform: scale(1.05);
}

.velviroxScreenEaseVista_PriceCardFeatured {
    border: 2px solid #42FFD5;
    box-shadow: 0 0 20px rgba(66, 255, 213, 0.2);
}

.velviroxScreenEaseVista_PriceCardTitle {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    color: #42FFD5;
}

.velviroxScreenEaseVista_PriceValue {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
}

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

.velviroxScreenEaseVista_PriceList li {
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
    color: #ccc;
}

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

.velviroxScreenEaseVista_PriceBtn:hover {
    background: #42FFD5;
    color: #03070A;
}

.velviroxScreenEaseVista_PriceBtnFeatured {
    display: block;
    text-align: center;
    background: #42FFD5;
    color: #03070A;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* EXTRA TEXT SECTIONS */
.velviroxScreenEaseVista_ExtraSection {
    padding: 80px 20px;
}

.velviroxScreenEaseVista_ExtraH2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #42FFD5;
}

.velviroxScreenEaseVista_ExtraP {
    margin-bottom: 20px;
    font-size: 17px;
    color: #ddd;
}

.velviroxScreenEaseVista_ExtraUl {
    margin-bottom: 25px;
    list-style: square;
    padding-left: 20px;
}

.velviroxScreenEaseVista_ExtraUl li {
    margin-bottom: 10px;
}

/* FAQ */
.velviroxScreenEaseVista_FaqSection {
    padding: 100px 20px;
    background: #050b0f;
}

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

.velviroxScreenEaseVista_FaqItem {
    background: #03070A;
    border: 1px solid #1a2a2a;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.velviroxScreenEaseVista_FaqSum {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #42FFD5;
    list-style: none;
    position: relative;
}

.velviroxScreenEaseVista_FaqSum::after {
    content: '▼';
    position: absolute;
    right: 20px;
    font-size: 12px;
}

.velviroxScreenEaseVista_FaqAns {
    padding: 0 20px 20px;
    color: #ccc;
}

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

.velviroxScreenEaseVista_ContainerSmall {
    max-width: 600px;
    margin: 0 auto;
}

.velviroxScreenEaseVista_MainForm {
    background: #081014;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #1a2a2a;
}

.velviroxScreenEaseVista_FormGroup {
    margin-bottom: 20px;
}

.velviroxScreenEaseVista_Label {
    display: block;
    margin-bottom: 8px;
    color: #42FFD5;
}

.velviroxScreenEaseVista_Input, .velviroxScreenEaseVista_Textarea {
    width: 100%;
    background: #03070A;
    border: 1px solid #1a2a2a;
    padding: 12px;
    color: #fff;
    border-radius: 5px;
}

.velviroxScreenEaseVista_Input:focus, .velviroxScreenEaseVista_Textarea:focus {
    outline: none;
    border-color: #42FFD5;
}

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

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

.velviroxScreenEaseVista_CheckboxLabel a {
    color: #42FFD5;
}

.velviroxScreenEaseVista_SubmitBtn {
    width: 100%;
    background: #42FFD5;
    color: #03070A;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.velviroxScreenEaseVista_SubmitBtn:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 20px rgba(66, 255, 213, 0.4);
}

/* FOOTER */
.velviroxScreenEaseVista_FooterWrapper {
    background-color: #010406;
    padding: 60px 20px 20px;
    border-top: 1px solid #1a2a2a;
    text-align: center;
}

.velviroxScreenEaseVista_FooterTop {
    margin-bottom: 40px;
}

.velviroxScreenEaseVista_FooterLogo {
    font-size: 32px;
    font-weight: 800;
    color: #42FFD5;
    margin-bottom: 15px;
}

.velviroxScreenEaseVista_FooterBottom {
    border-top: 1px solid #1a2a2a;
    padding-top: 20px;
}

.velviroxScreenEaseVista_Copy {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

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

.velviroxScreenEaseVista_FooterLinks a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.velviroxScreenEaseVista_FooterLinks a:hover {
    color: #42FFD5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .velviroxScreenEaseVista_BurgerBtn {
        display: flex;
    }

    .velviroxScreenEaseVista_NavigationMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #03070A;
        max-height: 0;
        overflow: hidden;
        transition: 0.5s;
    }

    .velviroxScreenEaseVista_NavCheckbox:checked ~ .velviroxScreenEaseVista_NavigationMenu {
        max-height: 500px;
        border-bottom: 1px solid #42FFD5;
    }

    .velviroxScreenEaseVista_NavList {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .velviroxScreenEaseVista_HeroH1 {
        font-size: 32px;
    }

    .velviroxScreenEaseVista_HeroFlexRow {
        flex-direction: column-reverse;
    }
}