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

body.xandorMainBodyElement {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #07090C;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* CONTAINERS */
.xandorContainerFluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

/* HEADER */
header.xandorHeaderNavContainer {
    background-color: #07090C;
    border-bottom: 2px solid #4FF7FF;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

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

.xandorNavLinkItem {
    color: #E0E0E0;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
}

.xandorNavLinkItem:hover {
    color: #4FF7FF;
    text-shadow: 0 0 8px #4FF7FF;
}

.xandorMenuCheckboxInput, .xandorBurgerButtonLabel {
    display: none;
}

/* HERO SECTION */
.xandorHeroSectionWrapper {
    padding: 80px 0;
    border-bottom: 1px solid rgba(79, 247, 255, 0.1);
}

.xandorHeroGridlayout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.xandorHeroImagesColumn {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.xandorHeroPhotoItem {
    position: relative;
    border: 1px solid #1a1c22;
    padding: 10px;
    background: #0b0e14;
}

.xandorHeroImageTag {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: filter 0.5s ease;
}

.xandorHeroPhotoItem:hover .xandorHeroImageTag {
    filter: grayscale(0);
}

.xandorHeroPhotoDescription {
    margin-top: 10px;
    font-size: 13px;
    color: #4FF7FF;
    font-style: italic;
}

.xandorMainHeadingH1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.xandorHeroSubHeadline {
    font-size: 20px;
    color: #4FF7FF;
    margin-bottom: 20px;
    font-weight: 600;
}

.xandorHeroParagraph {
    margin-bottom: 20px;
    font-size: 17px;
    color: #B0B0B0;
}

.xandorPrimaryActionButton {
    display: inline-block;
    padding: 16px 35px;
    background-color: #4FF7FF;
    color: #07090C;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(79, 247, 255, 0.3);
}

.xandorPrimaryActionButton:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 25px rgba(79, 247, 255, 0.6);
    transform: translateY(-2px);
}

/* REVIEWS */
.xandorReviewsSectionWrapper {
    padding: 80px 0;
    background-color: #0b0e14;
}

.xandorSectionHeadingH2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 15px;
}

.xandorSectionHeadingH2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4FF7FF;
}

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

.xandorReviewCardItem {
    flex: 1;
    min-width: 250px;
    background: #07090C;
    padding: 30px;
    border-left: 4px solid #4FF7FF;
}

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

.xandorReviewAuthorName {
    display: block;
    color: #4FF7FF;
    font-weight: 600;
}

/* PRICING */
.xandorPricingSectionWrapper {
    padding: 80px 0;
}

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

.xandorPriceCardBox {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: #0b0e14;
    padding: 40px 30px;
    border: 1px solid rgba(79, 247, 255, 0.1);
    text-align: center;
}

.xandorPriceFeaturedCard {
    border: 2px solid #4FF7FF;
    transform: scale(1.05);
    z-index: 10;
}

.xandorPriceTitleH3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.xandorPriceTagValue {
    font-size: 32px;
    font-weight: 800;
    color: #4FF7FF;
    margin-bottom: 25px;
}

.xandorPriceFeaturesList {
    margin-bottom: 30px;
    text-align: left;
}

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

.xandorPriceFeaturesList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4FF7FF;
}

.xandorSecondaryPriceBtn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    font-weight: 600;
    text-transform: uppercase;
}

.xandorSecondaryPriceBtn:hover {
    background: rgba(79, 247, 255, 0.1);
}

/* BENEFITS */
.xandorBenefitsSectionWrapper {
    padding: 80px 0;
    background-color: #07090C;
}

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

.xandorBenefitsTextPart, .xandorBenefitsImagePart {
    flex: 1;
    min-width: 300px;
}

.xandorBenefitsIntro {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4FF7FF;
}

.xandorBenefitsCheckList li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.xandorBenefitsCheckList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4FF7FF;
    font-weight: 800;
}

.xandorBenefitsImg {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(79, 247, 255, 0.1);
}

/* TARGET AUDIENCE */
.xandorTargetSectionWrapper {
    padding: 80px 0;
    background-color: #0b0e14;
}

.xandorTargetContentGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.xandorTargetDescriptionList {
    flex: 2;
    min-width: 300px;
}

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

.xandorTargetPointsList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.xandorTargetPointsList li {
    background: #12151a;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid rgba(79, 247, 255, 0.05);
}

.xandorProductCardItem {
    background: #07090C;
    padding: 20px;
    border: 1px solid #4FF7FF;
}

.xandorProductPriceInfo {
    margin-top: 20px;
}

.xandorProductTitle {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
}

.xandorProductCost {
    display: block;
    color: #4FF7FF;
    font-size: 20px;
    font-weight: 800;
    margin: 5px 0 15px;
}

/* QUOTE */
.xandorQuoteSectionWrapper {
    padding: 100px 0;
    background: radial-gradient(circle at center, #12151a 0%, #07090C 100%);
}

.xandorQuoteBoxDecoration {
    text-align: center;
}

.xandorExpertQuoteText {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 300;
    line-height: 1.4;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.xandorQuoteAuthorLine {
    width: 50px;
    height: 2px;
    background: #4FF7FF;
    margin: 0 auto 15px;
}

.xandorQuoteAuthorName {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.xandorQuoteAuthorRole {
    display: block;
    font-size: 14px;
    color: #4FF7FF;
    text-transform: uppercase;
}

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

.xandorFAQAccordionList {
    margin-top: 40px;
}

.xandorFAQItemDetails {
    background: #0b0e14;
    margin-bottom: 15px;
    border: 1px solid rgba(79, 247, 255, 0.1);
}

.xandorFAQSummaryTitle {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #FFFFFF;
    list-style: none;
    position: relative;
}

.xandorFAQSummaryTitle::-webkit-details-marker {
    display: none;
}

.xandorFAQSummaryTitle::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #4FF7FF;
    font-size: 20px;
}

.xandorFAQItemDetails[open] .xandorFAQSummaryTitle::after {
    content: '−';
}

.xandorFAQAnswerContent {
    padding: 0 20px 20px;
    color: #B0B0B0;
    font-size: 15px;
}

/* FORM */
.xandorFormSectionWrapper {
    padding: 80px 0;
    background-color: #0b0e14;
}

.xandorFormSubTitle {
    text-align: center;
    margin-bottom: 40px;
    color: #4FF7FF;
}

.xandorMainContactForm {
    background: #07090C;
    padding: 40px;
    border: 1px solid #1a1c22;
}

.xandorFormFieldGroup {
    margin-bottom: 20px;
}

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

.xandorTextInputField, .xandorTextAreaField {
    width: 100%;
    background: #0b0e14;
    border: 1px solid #1a1c22;
    padding: 12px 15px;
    color: #FFFFFF;
    outline: none;
}

.xandorTextInputField:focus, .xandorTextAreaField:focus {
    border-color: #4FF7FF;
}

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

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

.xandorCheckboxInput {
    margin-top: 5px;
}

.xandorCheckboxLabel {
    font-size: 13px;
}

.xandorPolicyLinkInForm {
    color: #4FF7FF;
    text-decoration: underline;
}

.xandorSubmitFormButton {
    width: 100%;
    padding: 15px;
    background: #4FF7FF;
    border: none;
    color: #07090C;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.xandorSubmitFormButton:hover {
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.4);
}

/* ARTICLES */
.xandorTextArticleSection {
    padding: 80px 0;
}

.xandorAltBgSection {
    background-color: #0b0e14;
}

.xandorArticleHeading {
    font-size: 30px;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.xandorArticleParagraph {
    margin-bottom: 20px;
    color: #B0B0B0;
}

.xandorArticleBulletList {
    margin: 20px 0 30px 20px;
    list-style: disc;
    color: #4FF7FF;
}

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

.xandorArticleBulletList li span {
    color: #B0B0B0;
}

.xandorArticleSubGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.xandorSubGridItem {
    padding: 20px;
    background: #07090C;
    border: 1px solid rgba(79, 247, 255, 0.05);
}

.xandorSubHeadingH4 {
    color: #4FF7FF;
    margin-bottom: 10px;
}

/* FOOTER */
.xandorMainFooterContainer {
    padding: 60px 0 30px;
    background-color: #030405;
    border-top: 1px solid #1a1c22;
}

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

.xandorFooterLogo {
    font-size: 22px;
    font-weight: 800;
    color: #4FF7FF;
    display: block;
    margin-bottom: 10px;
}

.xandorFooterSlogan {
    font-size: 14px;
    color: #B0B0B0;
}

.xandorFooterContactInfo p {
    margin-bottom: 5px;
    font-size: 14px;
}

.xandorFooterContactInfo a {
    color: #4FF7FF;
}

.xandorFooterDivider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.xandorFooterBottomRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.xandorCopyrightText {
    font-size: 13px;
    color: #666;
}

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

.xandorFooterLegalLinks a {
    font-size: 12px;
    color: #999;
}

.xandorFooterLegalLinks a:hover {
    color: #4FF7FF;
}

/* RESPONSIVE MENU */
@media (max-width: 991px) {
    .xandorNavigationMenuLinks {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #07090C;
        transition: 0.4s;
        padding-top: 50px;
    }

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

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

    .xandorBurgerButtonLabel span {
        width: 30px;
        height: 2px;
        background: #4FF7FF;
        transition: 0.3s;
    }

    .xandorMobileMenuToggle:checked ~ .xandorNavigationMenuLinks {
        left: 0;
    }
}

@media (max-width: 768px) {
    .xandorHeroGridlayout {
        flex-direction: column-reverse;
    }
    .xandorHeroImagesColumn {
        width: 100%;
    }
    .xandorPriceFeaturedCard {
        transform: scale(1);
    }
}