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

html {
    scroll-behavior: smooth;
}

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

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

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

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

.VxlLogoTextBr {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E6FBFF; /* Світло-айс */
    user-select: none;
}

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

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

.VxlNavLinkItem:hover {
    color: #E6FBFF;
}

/* Burger Menu (No JS) */
.VxlCheckHidden {
    display: none;
}

.VxlBurgerIcon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.VxlBurgerIcon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #E6FBFF;
    transition: 0.3s;
}

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

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

.VxlHeroLeftImg, .VxlHeroRightTxt {
    flex: 1;
}

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

.VxlTitleH1Main {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #E6FBFF;
}

.VxlSubTitleText {
    font-size: 20px;
    color: rgba(230, 251, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 300;
}

.VxlDescriptionTxt {
    font-size: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.VxlBtnIcePrimary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #E6FBFF;
    color: #0A0D10;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 1px solid #E6FBFF;
}

.VxlBtnIcePrimary:hover {
    background-color: transparent;
    color: #E6FBFF;
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.4);
}

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

.VxlImgGallery {
    width: 100%;
    height: auto;
    border: 1px solid rgba(230, 251, 255, 0.2);
}

/* Reviews */
.VxlReviewsSection {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.VxlSectionTitleCent {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #E6FBFF;
}

.VxlReviewsGrid {
    display: flex;
    gap: 30px;
}

.VxlReviewCard {
    flex: 1;
    background: rgba(230, 251, 255, 0.05);
    padding: 30px;
    border-left: 3px solid #E6FBFF;
}

.VxlReviewQuote {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
}

.VxlReviewAuthor {
    font-weight: 700;
    color: #E6FBFF;
}

/* Expert Section */
.VxlExpertSectionCl {
    padding: 80px 0;
}

.VxlExpertBoxBg {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(230, 251, 255, 0.05) 0%, rgba(10, 13, 16, 1) 100%);
    border: 1px solid rgba(230, 251, 255, 0.1);
}

.VxlExpertAvatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 2px solid #E6FBFF;
}

.VxlExpertQuote {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #FFFFFF;
    font-weight: 300;
}

.VxlExpertName {
    font-size: 18px;
    font-weight: 700;
    color: #E6FBFF;
}

.VxlExpertTitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

/* Pricing Section */
.VxlPriceSectionCl {
    padding: 80px 0;
}

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

.VxlPriceCardItem {
    flex: 1;
    min-width: 250px;
    background: rgba(230, 251, 255, 0.03);
    border: 1px solid rgba(230, 251, 255, 0.1);
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.VxlPriceCardItem:hover {
    transform: translateY(-10px);
    border-color: #E6FBFF;
}

.VxlPriceFeatured {
    background: rgba(230, 251, 255, 0.08);
    border-color: rgba(230, 251, 255, 0.3);
}

.VxlPriceBadgeDisc {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #E6FBFF;
    color: #0A0D10;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    text-transform: uppercase;
}

.VxlPriceTitleH3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #E6FBFF;
}

.VxlPriceValue {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
}

.VxlPriceValue span {
    font-size: 16px;
    font-weight: 400;
}

.VxlPriceListFeatures {
    list-style: none;
    margin-bottom: 35px;
}

.VxlPriceListFeatures li {
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.VxlPriceListFeatures li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #E6FBFF;
}

.VxlBtnIceOutline {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid #E6FBFF;
    color: #E6FBFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.VxlBtnIceOutline:hover {
    background: #E6FBFF;
    color: #0A0D10;
}

/* Benefits Section */
.VxlBenefitsSectionCl {
    padding: 80px 0;
}

.VxlBenefitsGridWrap {
    display: flex;
    align-items: center;
    gap: 80px;
}

.VxlBenefitsTxtCol, .VxlBenefitsImgCol {
    flex: 1;
}

.VxlSectionTitleLeft {
    font-size: 32px;
    margin-bottom: 30px;
    color: #E6FBFF;
}

.VxlBenefitsIntro {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.VxlBenefitsListItems {
    list-style: none;
}

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

.VxlBenItem span {
    color: #E6FBFF;
    font-weight: 700;
}

.VxlShadowIce {
    box-shadow: 20px 20px 0px rgba(230, 251, 255, 0.05);
}

/* Target Audience */
.VxlTargetSectionCl {
    padding: 80px 0;
    background: #0D1115;
}

.VxlSectionSubCent {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    color: rgba(255, 255, 255, 0.6);
}

.VxlTargetGridLinks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.VxlTargetCard {
    background: rgba(10, 13, 16, 0.5);
    padding: 40px;
    border: 1px solid rgba(230, 251, 255, 0.05);
    position: relative;
}

.VxlTargetLineTop {
    position: absolute;
    top: 0;
    left: 40px;
    width: 60px;
    height: 2px;
    background: #E6FBFF;
}

.VxlTargetCardTitle {
    font-size: 20px;
    margin-bottom: 15px;
    color: #E6FBFF;
}

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

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

.VxlFaqItem {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(230, 251, 255, 0.1);
}

.VxlFaqSummary {
    padding: 20px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #E6FBFF;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.VxlFaqSummary::after {
    content: "+";
    font-size: 24px;
}

details[open] .VxlFaqSummary::after {
    content: "−";
}

.VxlFaqContent {
    padding-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* Large Text Sections */
.VxlLargeTextSection {
    padding: 100px 0;
}

.VxlBgDarker {
    background-color: #080B0E;
}

.VxlTextContentFlow p {
    margin-bottom: 25px;
    font-size: 17px;
    max-width: 850px;
    color: rgba(255, 255, 255, 0.85);
}

.VxlGenericList {
    margin: 30px 0 30px 20px;
    list-style: square;
    color: #E6FBFF;
}

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

.VxlSmallSub {
    font-size: 22px;
    margin-bottom: 20px;
    color: #E6FBFF;
}

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

.VxlFormBoxWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(230, 251, 255, 0.02);
    padding: 50px;
    border: 1px solid rgba(230, 251, 255, 0.1);
}

.VxlFormTitle {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
}

.VxlFormSub {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.VxlFormGroup {
    margin-bottom: 20px;
}

.VxlFormLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #E6FBFF;
}

.VxlFormInput, .VxlFormTextarea {
    width: 100%;
    background: #0A0D10;
    border: 1px solid rgba(230, 251, 255, 0.2);
    padding: 12px 15px;
    color: white;
    font-family: inherit;
    border-radius: 2px;
}

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

.VxlFormInput:focus, .VxlFormTextarea:focus {
    outline: none;
    border-color: #E6FBFF;
}

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

.VxlFormCheckLabel {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.VxlFormCheckLabel a {
    color: #E6FBFF;
}

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

.VxlBtnSubmit:hover {
    box-shadow: 0 0 20px rgba(230, 251, 255, 0.3);
}

/* Footer */
.VxlFooterMain {
    background: #050709;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(230, 251, 255, 0.05);
}

.VxlFooterTopRow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.VxlFooterTagline {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.VxlFooterContacts p {
    font-size: 14px;
    margin-bottom: 10px;
}

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

.VxlFooterBottomRow {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.VxlCopyrightTxt {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.VxlFooterNavPolicy a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.VxlFooterNavPolicy a:hover {
    color: #E6FBFF;
}

/* Responsive */
@media (max-width: 992px) {
    .VxlHeroGridWrapper, .VxlBenefitsGridWrap {
        flex-direction: column;
        text-align: center;
    }
    .VxlHeroLeftImg, .VxlBenefitsImgCol {
        order: 2;
    }
    .VxlHeroRightTxt, .VxlBenefitsTxtCol {
        order: 1;
    }
    .VxlReviewsGrid {
        flex-direction: column;
    }
    .VxlPriceGridMain {
        justify-content: center;
    }
    .VxlPriceCardItem {
        max-width: 400px;
    }
    .VxlFooterTopRow {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .VxlBurgerIcon {
        display: flex;
    }
    .VxlNavMenuLinks {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0A0D10;
        transition: 0.4s;
        padding: 50px 20px;
    }
    .VxlUlNavList {
        flex-direction: column;
        align-items: center;
    }
    .VxlNavLinkItem {
        margin: 20px 0;
        font-size: 18px;
    }
    #VxlMobileMenuBtn:checked ~ .VxlNavMenuLinks {
        left: 0;
    }
    .VxlTitleH1Main {
        font-size: 32px;
    }
    .VxlHeroGalleryRow {
        flex-wrap: wrap;
    }
    .VxlGalleryItem {
        width: calc(50% - 10px);
    }
    .VxlFooterBottomRow {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .VxlFooterNavPolicy a {
        display: block;
        margin: 10px 0;
    }
}