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

html {
    scroll-behavior: smooth;
}

body.XenvoBodyMain {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0A0D10; /* Dark Graphite */
    color: #E6FBFF; /* Ice Light */
    line-height: 1.6;
    overflow-x: hidden;
}

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

img.XvImgResponsv {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

img.XvImgRoundIc {
    border-radius: 50%;
    object-fit: cover;
}

/* HEADER */
header.XenvoHeaderGl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 13, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(230, 251, 255, 0.2);
}

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

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

.XenvoNavLists {
    display: flex;
    list-style: none;
}

.XenvoNavLinkS {
    color: #E6FBFF;
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.XenvoNavLinkS:hover {
    color: #A0E9FF;
}

/* BURGER MENU (CSS ONLY) */
.XenvoMenuTogg {
    display: none;
}

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

.XenvoBurgerIc span {
    width: 25px;
    height: 2px;
    background-color: #E6FBFF;
    transition: 0.3s;
}

/* HERO SECTION */
section.XenvoHeroWrapp {
    padding: 140px 0 80px;
}

.XenvoHeroFlexR {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.XenvoHeroImgL {
    flex: 1;
}

.XenvoHeroTxtR {
    flex: 1;
}

h1.XenvoMainTitl {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #E6FBFF;
    font-weight: 700;
}

.XenvoHeroSubti {
    font-size: 20px;
    color: #A0E9FF;
    margin-bottom: 20px;
    font-style: italic;
}

.XenvoHeroDescr {
    margin-bottom: 15px;
    opacity: 0.9;
}

.XenvoHeroBtnAr {
    margin-top: 30px;
}

.XenvoHeroGrid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.XenvoHeroCardS {
    background: rgba(255, 255, 255, 0.03);
    padding: 0;
    border: 1px solid rgba(230, 251, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.XenvoHeroCardS h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
}

.XenvoHeroCardS p {
    padding: 0 20px 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* REVIEWS */
section.XenvoReviewWra {
    padding: 80px 0;
    background-color: #0d1116;
}

.XenvoSecTitlCe {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.XenvoRevCardUn {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #161B22;
    padding: 30px;
    border-left: 4px solid #E6FBFF;
    border-radius: 4px;
}

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

.XenvoRevUserIn {
    display: flex;
    align-items: center;
    gap: 15px;
}

.XenvoRevNameSt {
    font-weight: 600;
}

/* PRICE */
section.XenvoPriceWrapp {
    padding: 80px 0;
}

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

.XenvoPriceItemB {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: #0A0D10;
    border: 1px solid rgba(230, 251, 255, 0.2);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.XenvoPriceItemB:hover {
    transform: translateY(-10px);
    border-color: #E6FBFF;
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.1);
}

.XvPricFeature {
    border: 2px solid #E6FBFF;
    background: rgba(230, 251, 255, 0.05);
}

.XenvoPricNameS {
    font-size: 22px;
    margin-bottom: 15px;
}

.XenvoPricValSt {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #A0E9FF;
}

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

.XenvoPricListS li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(230, 251, 255, 0.05);
    font-size: 15px;
}

.XenvoPriceQuick {
    margin-bottom: 20px;
}

.XenvoPriceLnkS {
    color: #A0E9FF;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px dashed;
}

/* TARGET AUDIENCE */
section.XenvoTargetWra {
    padding: 80px 0;
    background: #0d1116;
}

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

.XenvoTargTextL {
    flex: 1.2;
}

.XenvoTargImgRig {
    flex: 0.8;
}

.XenvoTargIntroS {
    font-size: 18px;
    margin-bottom: 25px;
    color: #A0E9FF;
}

ul.XenvoTargListUl {
    list-style: none;
    margin-bottom: 30px;
}

ul.XenvoTargListUl li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

ul.XenvoTargListUl li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #E6FBFF;
}

.XenvoTargPriceI {
    background: rgba(230, 251, 255, 0.05);
    padding: 20px;
    border-radius: 4px;
}

/* QUOTE */
section.XenvoQuoteWrapp {
    padding: 100px 0;
}

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

.XenvoQuoteMainT {
    font-size: 28px;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 40px;
    position: relative;
}

.XenvoQuoteMainT::before {
    content: "«";
    font-size: 80px;
    position: absolute;
    top: -40px;
    left: -20px;
    opacity: 0.1;
}

.XenvoQuoteAuthr {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.XenvoQuoteAuthr img {
    margin-bottom: 15px;
}

.XenvoQuoteNameS {
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
}

.XenvoQuotePositS {
    font-size: 14px;
    opacity: 0.7;
}

/* BENEFITS */
section.XenvoBenefWrapp {
    padding: 80px 0;
    background: #0d1116;
}

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

.XenvoBenefImgLe {
    flex: 1;
}

.XenvoBenefTxtRi {
    flex: 1;
}

.XenvoSecTitlLe {
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

ul.XenvoBenefListU {
    list-style: none;
}

ul.XenvoBenefListU li {
    margin-bottom: 20px;
    font-size: 16px;
}

ul.XenvoBenefListU li strong {
    color: #A0E9FF;
    display: block;
    margin-bottom: 5px;
}

/* FAQ */
section.XenvoFaqWrappIn {
    padding: 80px 0;
}

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

details.XenvoFaqItemDe {
    background: #161B22;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

summary.XenvoFaqSummry {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    outline: none;
    list-style: none;
    position: relative;
    border-bottom: 1px solid rgba(230, 251, 255, 0.05);
}

summary.XenvoFaqSummry::-webkit-details-marker {
    display: none;
}

summary.XenvoFaqSummry::after {
    content: "+";
    position: absolute;
    right: 20px;
}

details[open] summary::after {
    content: "-";
}

.XenvoFaqContnt {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
}

/* FORM */
section.XenvoFormWrapp {
    padding: 80px 0;
    background: #0d1116;
}

.XenvoFormInBlock {
    max-width: 600px;
    margin: 0 auto;
    background: #0A0D10;
    padding: 50px;
    border: 1px solid rgba(230, 251, 255, 0.1);
    border-radius: 12px;
}

.XenvoFormSubTi {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.8;
}

.XenvoFormInpuGr {
    margin-bottom: 20px;
}

.XenvoFormLabelS {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.XenvoFormInpTyp, .XenvoFormTextAr {
    width: 100%;
    background: #161B22;
    border: 1px solid rgba(230, 251, 255, 0.2);
    padding: 12px;
    color: #E6FBFF;
    border-radius: 4px;
    outline: none;
}

.XenvoFormInpTyp:focus, .XenvoFormTextAr:focus {
    border-color: #E6FBFF;
}

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

.XenvoFormCheckB {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
}

.XenvoFormCheckB a {
    color: #A0E9FF;
}

.XenvoFormBtnAr {
    text-align: center;
}

/* BUTTONS */
.XenvoBtnIcePri {
    display: inline-block;
    padding: 15px 35px;
    background-color: #E6FBFF;
    color: #0A0D10;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.XenvoBtnIcePri:hover {
    background-color: #A0E9FF;
    box-shadow: 0 0 15px rgba(160, 233, 255, 0.5);
}

/* EXTRA TEXT SECTIONS */
section.XenvoExtraText1, section.XenvoExtraText2, section.XenvoExtraText3 {
    padding: 80px 0;
}

.XenvoLongParaS {
    margin-bottom: 25px;
    max-width: 900px;
}

ul.XenvoTextListSt {
    margin: 20px 0 30px 20px;
}

ul.XenvoTextListSt li {
    margin-bottom: 10px;
}

/* FOOTER */
footer.XenvoFooterGl {
    padding: 60px 0 30px;
    background: #050709;
    border-top: 1px solid rgba(230, 251, 255, 0.1);
}

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

.XenvoFootLogS {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.XenvoFootContS {
    opacity: 0.7;
    font-size: 14px;
}

.XenvoFootCopyR {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.5;
}

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

.XvFootLnkItem {
    color: #E6FBFF;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.XvFootLnkItem:hover {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .XenvoHeroFlexR, .XenvoTargContFl, .XenvoBenefFlexR {
        flex-direction: column;
        text-align: center;
    }

    .XenvoHeroGrid3 {
        grid-template-columns: 1fr;
    }

    h1.XenvoMainTitl {
        font-size: 36px;
    }

    .XenvoHeroTxtR, .XenvoTargTextL, .XenvoBenefTxtRi {
        order: 1;
    }

    .XenvoHeroImgL, .XenvoTargImgRig, .XenvoBenefImgLe {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .XenvoSecTitlLe {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .XenvoBurgerIc {
        display: flex;
    }

    .XenvoNavBlock {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0A0D10;
        display: none;
        padding: 20px;
        border-bottom: 1px solid rgba(230, 251, 255, 0.2);
    }

    .XenvoNavLists {
        flex-direction: column;
        align-items: center;
    }

    .XenvoNavLinkS {
        margin: 10px 0;
    }

    #XenvoMenuTogg:checked ~ .XenvoNavBlock {
        display: block;
    }

    .XenvoFormInBlock {
        padding: 30px 20px;
    }
}