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

html {
    scroll-behavior: smooth;
}

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

.varxenoCoreEaseMatrixContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* HEADER */
.varxenoCoreEaseMatrixHeader {
    background-color: rgba(5, 10, 24, 0.95);
    border-bottom: 2px solid #6AA9FF;
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.varxenoCoreEaseMatrixLogo {
    font-size: 24px;
    font-weight: 800;
    color: #6AA9FF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.varxenoCoreEaseMatrixNavLink:hover {
    color: #6AA9FF;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.8);
}

.varxenoCoreEaseMatrixMenuToggle, .varxenoCoreEaseMatrixBurger {
    display: none;
}

/* HERO SECTION */
.varxenoCoreEaseMatrixHeroSection {
    padding: 100px 0;
    position: relative;
    border: 3px solid #FF0000; /* Variant 4 requirement */
    margin: 20px;
}

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

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

.varxenoCoreEaseMatrixHeroImg {
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.2);
    object-fit: cover;
}

.varxenoCoreEaseMatrixHeroContent {
    flex: 1.2;
    min-width: 300px;
}

.varxenoCoreEaseMatrixHeroTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #6AA9FF;
}

.varxenoCoreEaseMatrixHeroSub {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #B0C4DE;
}

.varxenoCoreEaseMatrixHeroDesc {
    margin-bottom: 20px;
    font-size: 16px;
    color: #D1D1D1;
}

.varxenoCoreEaseMatrixCtaBtn {
    display: inline-block;
    background-color: #6AA9FF;
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(106, 169, 255, 0.4);
}

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

/* SECTION COMMON */
.varxenoCoreEaseMatrixSectionTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #6AA9FF;
    position: relative;
}

.varxenoCoreEaseMatrixSectionTitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #6AA9FF;
    margin: 15px auto 0;
}

/* REVIEWS */
.varxenoCoreEaseMatrixReviewsSection {
    padding: 80px 0;
    background-color: rgba(10, 20, 45, 0.5);
}

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

.varxenoCoreEaseMatrixReviewCard {
    flex: 1;
    min-width: 300px;
    background: #0D1630;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #6AA9FF;
    transition: transform 0.3s;
}

.varxenoCoreEaseMatrixReviewCard:hover {
    transform: translateY(-10px);
}

.varxenoCoreEaseMatrixReviewText {
    font-style: italic;
    margin-bottom: 20px;
    color: #E0E0E0;
}

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

/* PRICE SECTION */
.varxenoCoreEaseMatrixPriceSection {
    padding: 80px 0;
}

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

.varxenoCoreEaseMatrixPriceCard {
    flex: 1;
    max-width: 380px;
    min-width: 280px;
    background: #0D1630;
    border: 1px solid #1A2B5A;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.varxenoCoreEaseMatrixPriceCardFeatured {
    border: 2px solid #6AA9FF;
    box-shadow: 0 0 30px rgba(106, 169, 255, 0.2);
    transform: scale(1.05);
}

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

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

.varxenoCoreEaseMatrixPriceValue {
    font-size: 32px;
    font-weight: 800;
    color: #6AA9FF;
}

.varxenoCoreEaseMatrixDiscount {
    font-size: 14px;
    background: #FF0000;
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
    vertical-align: middle;
}

.varxenoCoreEaseMatrixPriceList {
    margin-bottom: 30px;
    flex-grow: 1;
}

.varxenoCoreEaseMatrixPriceList li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.varxenoCoreEaseMatrixPriceList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

.varxenoCoreEaseMatrixPriceBtn {
    text-align: center;
    border: 2px solid #6AA9FF;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
}

.varxenoCoreEaseMatrixPriceBtnMain {
    background-color: #6AA9FF;
    color: white;
}

.varxenoCoreEaseMatrixQuickLinks {
    text-align: center;
    margin-top: 50px;
}

.varxenoCoreEaseMatrixQuickLinks a {
    color: #6AA9FF;
    text-decoration: underline;
    margin: 0 10px;
}

/* FOR WHOM (TARGET) */
.varxenoCoreEaseMatrixTargetSection {
    padding: 80px 0;
}

.varxenoCoreEaseMatrixTargetGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.varxenoCoreEaseMatrixTargetItem {
    padding: 30px;
    border: 1px dashed #6AA9FF; /* Interesting styling requirement */
    border-radius: 10px;
    background: rgba(106, 169, 255, 0.05);
    transition: 0.3s;
}

.varxenoCoreEaseMatrixTargetItem:hover {
    border-style: solid;
    background: rgba(106, 169, 255, 0.1);
}

.varxenoCoreEaseMatrixTargetItemTitle {
    color: #6AA9FF;
    margin-bottom: 10px;
    font-size: 20px;
}

.varxenoCoreEaseMatrixTargetIntro {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 40px;
    color: #B0C4DE;
}

/* EXPERT BLOCK */
.varxenoCoreEaseMatrixExpertSection {
    padding: 80px 0;
    background: linear-gradient(135deg, #050A18 0%, #0D1630 100%);
}

.varxenoCoreEaseMatrixExpertBox {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 30px;
    background: #0D1630;
    box-shadow: 20px 20px 60px #03060d, -20px -20px 60px #070e23;
    text-align: center;
}

.varxenoCoreEaseMatrixExpertQuote {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    color: #FFFFFF;
}

.varxenoCoreEaseMatrixExpertName {
    font-size: 24px;
    font-weight: bold;
    color: #6AA9FF;
}

.varxenoCoreEaseMatrixExpertRole {
    color: #B0C4DE;
    font-size: 16px;
}

/* BENEFITS (REGULAR PRACTICE) */
.varxenoCoreEaseMatrixBenefitsSection {
    padding: 80px 0;
}

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

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

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

.varxenoCoreEaseMatrixBenefitsImg {
    border-radius: 20px;
    filter: drop-shadow(0 0 20px rgba(106, 169, 255, 0.3));
}

.varxenoCoreEaseMatrixBenefitsList li {
    margin-bottom: 20px;
    font-size: 18px;
}

.varxenoCoreEaseMatrixBenefitsList strong {
    color: #6AA9FF;
}

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

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

.varxenoCoreEaseMatrixFaqItem {
    background: #0D1630;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #1A2B5A;
}

.varxenoCoreEaseMatrixFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #6AA9FF;
    list-style: none;
    position: relative;
}

.varxenoCoreEaseMatrixFaqSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
}

.varxenoCoreEaseMatrixFaqItem[open] .varxenoCoreEaseMatrixFaqSummary::after {
    content: '-';
}

.varxenoCoreEaseMatrixFaqContent {
    padding: 0 20px 20px;
    color: #D1D1D1;
}

/* EXTRA TEXT SECTIONS */
.varxenoCoreEaseMatrixInfoSection {
    padding: 100px 0;
}

.varxenoCoreEaseMatrixAltBg {
    background-color: #081026;
}

.varxenoCoreEaseMatrixInfoSection p {
    margin-bottom: 25px;
    font-size: 18px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.varxenoCoreEaseMatrixCustomList {
    max-width: 800px;
    margin: 30px auto;
}

.varxenoCoreEaseMatrixCustomList li {
    padding: 15px;
    background: rgba(106, 169, 255, 0.1);
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #6AA9FF;
}

/* FORM */
.varxenoCoreEaseMatrixFormSection {
    padding: 100px 0;
    background: #050A18;
}

.varxenoCoreEaseMatrixFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0D1630;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.varxenoCoreEaseMatrixFormSub {
    text-align: center;
    margin-bottom: 30px;
    color: #B0C4DE;
}

.varxenoCoreEaseMatrixFormGroup {
    margin-bottom: 20px;
}

.varxenoCoreEaseMatrixLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.varxenoCoreEaseMatrixInput, .varxenoCoreEaseMatrixTextarea {
    width: 100%;
    padding: 15px;
    background: #050A18;
    border: 1px solid #1A2B5A;
    color: white;
    border-radius: 8px;
}

.varxenoCoreEaseMatrixInput:focus, .varxenoCoreEaseMatrixTextarea:focus {
    outline: none;
    border-color: #6AA9FF;
    box-shadow: 0 0 10px rgba(106, 169, 255, 0.3);
}

.varxenoCoreEaseMatrixCheckboxGroup {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.varxenoCoreEaseMatrixCheckboxGroup a {
    color: #6AA9FF;
    text-decoration: underline;
}

.varxenoCoreEaseMatrixSubmitBtn {
    width: 100%;
    padding: 18px;
    background-color: #6AA9FF;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.varxenoCoreEaseMatrixSubmitBtn:hover {
    box-shadow: 0 0 20px #6AA9FF;
}

/* FOOTER */
.varxenoCoreEaseMatrixFooter {
    background: #02050D;
    padding: 60px 0 30px;
    border-top: 1px solid #1A2B5A;
}

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

.varxenoCoreEaseMatrixFooterBrand {
    font-size: 24px;
    font-weight: 800;
    color: #6AA9FF;
}

.varxenoCoreEaseMatrixFooterContact p {
    margin-bottom: 10px;
    color: #B0C4DE;
}

.varxenoCoreEaseMatrixFooterBottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1A2B5A;
    color: #666;
    font-size: 14px;
}

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

.varxenoCoreEaseMatrixFooterLinks a {
    color: #B0C4DE;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .varxenoCoreEaseMatrixHeroTitle { font-size: 36px; }
    .varxenoCoreEaseMatrixPriceCardFeatured { transform: scale(1); }
}

@media (max-width: 768px) {
    .varxenoCoreEaseMatrixBurger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }
    .varxenoCoreEaseMatrixBurger span {
        display: block;
        width: 30px;
        height: 3px;
        background: #6AA9FF;
        transition: 0.3s;
    }
    .varxenoCoreEaseMatrixNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0D1630;
        padding-top: 100px;
        transition: 0.5s;
    }
    .varxenoCoreEaseMatrixNavList {
        flex-direction: column;
        align-items: center;
    }
    .varxenoCoreEaseMatrixMenuToggle:checked ~ .varxenoCoreEaseMatrixNav {
        right: 0;
    }
    .varxenoCoreEaseMatrixHeroGrid, .varxenoCoreEaseMatrixBenefitsGrid {
        flex-direction: column;
    }
    .varxenoCoreEaseMatrixHeroImg {
        margin: 0 auto;
    }
}