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

body.NexusBodyMainContent {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #111827;
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
.NexusHeaderWrapperMain {
    background-color: #111827;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(79, 70, 229, 0.2);
}

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

.NexusTextLogoBrandName {
    font-size: 26px;
    font-weight: 800;
    color: #4f46e5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.NexusNavigationLinksList {
    display: flex;
}

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

.NexusNavLinkSingleItem {
    text-decoration: none;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.NexusNavLinkSingleItem:hover {
    color: #c4b5fd;
}

/* MOBILE BURGER */
.NexusHiddenToggleInput {
    display: none;
}

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

.NexusBurgerMenuIconLabel span {
    width: 30px;
    height: 3px;
    background-color: #f8fafc;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .NexusBurgerMenuIconLabel {
        display: flex;
    }

    .NexusNavigationLinksList {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #111827;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .NexusNavUlElementItems {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }

    .NexusHiddenToggleInput:checked ~ .NexusNavigationLinksList {
        max-height: 500px;
        border-bottom: 2px solid #4f46e5;
    }
}

/* HERO SECTION */
.NexusHeroSectionContainer {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.NexusHeroImageColumnLeft {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.NexusHeroImageOverlayGrad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.4) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.NexusHeroMainImgElement {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.NexusHeroMainTitleH1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #f8fafc;
}

.NexusHeroSubtitleTextP {
    font-size: 20px;
    color: #c4b5fd;
    margin-bottom: 20px;
    font-weight: 500;
}

.NexusHeroDescriptionPara {
    font-size: 16px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.NexusHeroCtaButtonWrapper {
    margin-top: 35px;
}

.NexusHeroMainCtaButton {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4f46e5;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.6);
    transition: all 0.3s ease;
}

.NexusHeroMainCtaButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.9);
    background-color: #4338ca;
}

/* THREE TEXT SECTIONS */
.NexusThreeSectionsWrapper {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.NexusTextContentBlockOne, .NexusTextContentBlockTwo, .NexusTextContentBlockThree {
    margin-bottom: 80px;
}

.NexusSectionHeadingH2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #f8fafc;
    border-left: 5px solid #4f46e5;
    padding-left: 20px;
}

.NexusLongDescriptionPara {
    font-size: 17px;
    margin-bottom: 20px;
    color: #cbd5e1;
    text-align: justify;
}

.NexusContentListElements {
    margin: 20px 0 20px 40px;
}

.NexusListItemGeneric {
    margin-bottom: 10px;
    color: #c4b5fd;
    font-weight: 500;
}

.NexusSubHeaderTitleH3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #f8fafc;
}

/* PRICING */
.NexusPricingSectionWrapper {
    background-color: #1e293b;
    padding: 100px 20px;
}

.NexusCenterTextAlign {
    text-align: center;
    border: none;
    padding: 0;
    margin-bottom: 50px;
}

.NexusPricingCardsContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.NexusPriceCardElementItem {
    background-color: #111827;
    border: 1px solid rgba(79, 70, 229, 0.3);
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.NexusPriceCardHighlightRec {
    border: 2px solid #4f46e5;
    position: relative;
    transform: scale(1.05);
    background-color: #0f172a;
}

.NexusPriceRecommendedBadge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4f46e5;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.NexusPriceCardHeaderTitle {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.NexusPriceValueAmount {
    font-size: 34px;
    font-weight: 800;
    color: #4f46e5;
    text-align: center;
    margin-bottom: 30px;
}

.NexusPriceFeaturesList {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.NexusFeatureCheckItem {
    margin-bottom: 12px;
    font-size: 15px;
    color: #cbd5e1;
    position: relative;
    padding-left: 25px;
}

.NexusFeatureCheckItem::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
}

.NexusPriceSelectBtnLink {
    display: block;
    text-align: center;
    padding: 12px;
    background-color: transparent;
    border: 2px solid #4f46e5;
    color: #f8fafc;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.NexusPriceSelectBtnLink:hover {
    background-color: #4f46e5;
    color: #fff;
}

.NexusPriceBtnGlowEffect {
    background-color: #4f46e5;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

/* FAQ */
.NexusFaqSectionContainer {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.NexusFaqAccordionWrapper {
    margin-top: 40px;
}

.NexusFaqDetailsElement {
    border-bottom: 1px solid rgba(196, 181, 253, 0.2);
    padding: 20px 0;
}

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

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

.NexusFaqSummaryTitle::after {
    content: "+";
    font-size: 24px;
    color: #4f46e5;
}

.NexusFaqDetailsElement[open] .NexusFaqSummaryTitle::after {
    content: "−";
}

.NexusFaqContentText {
    padding-top: 15px;
    color: #cbd5e1;
    font-size: 16px;
}

/* WHO IT IS FOR */
.NexusWhoSectionContainer {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.NexusSectionIntroParaText {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #cbd5e1;
}

.NexusTimelineVerticalWrapper {
    position: relative;
    padding-left: 50px;
}

.NexusTimelineVerticalWrapper::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4f46e5, #c4b5fd);
}

.NexusTimelinePointItem {
    position: relative;
    margin-bottom: 40px;
}

.NexusTimelinePointMarker {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #111827;
    border: 3px solid #4f46e5;
    border-radius: 50%;
    z-index: 2;
}

.NexusTimelineContentBox {
    background-color: #1e293b;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.NexusTimelineTitleH4 {
    font-size: 20px;
    color: #f8fafc;
    margin-bottom: 10px;
}

.NexusTimelineDescText {
    color: #cbd5e1;
}

/* BENEFITS SECTION */
.NexusBenefitsSectionContainer {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.NexusBenefitsMainDescription {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.NexusBenefitsPointsList {
    list-style: none;
    margin-bottom: 40px;
}

.NexusBenefitSinglePoint {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.NexusBenefitSinglePoint::before {
    content: "◈";
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-size: 20px;
}

.NexusSummaryResultCardBox {
    background-color: #4f46e5;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.NexusSummaryCardTitle {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

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

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

/* QUOTE SECTION */
.NexusQuoteSectionWrapper {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.NexusQuoteCardDisplay {
    max-width: 900px;
    background-color: #1e293b;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    text-align: center;
    position: relative;
}

.NexusQuoteIconGraphic {
    font-size: 80px;
    color: rgba(79, 70, 229, 0.2);
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: serif;
    line-height: 1;
}

.NexusQuoteTextContent {
    font-size: 24px;
    font-style: italic;
    color: #f8fafc;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.NexusQuoteAuthorInfo {
    margin-top: 20px;
}

.NexusAuthorNameTitle {
    font-size: 20px;
    font-weight: 700;
    color: #4f46e5;
}

.NexusAuthorRoleLabel {
    font-size: 14px;
    color: #c4b5fd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FORM SECTION */
.NexusFormSectionContainer {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #111827, #0f172a);
}

.NexusFormCardWrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1e293b;
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.NexusFormSubtitleParaText {
    margin-bottom: 40px;
    color: #cbd5e1;
}

.NexusContactFormMainElement {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.NexusFormFieldRowItem {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.NexusFormInputLabel {
    font-size: 14px;
    font-weight: 600;
    color: #c4b5fd;
}

.NexusFormTextInputField, .NexusFormTextAreaField {
    padding: 15px;
    background-color: #111827;
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.NexusFormTextInputField:focus, .NexusFormTextAreaField:focus {
    border-color: #4f46e5;
}

.NexusFormTextAreaField {
    min-height: 120px;
    resize: vertical;
}

.NexusFormCheckboxRow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.NexusFormCheckLabel a {
    color: #4f46e5;
    text-decoration: none;
}

.NexusFormSubmitWrapper {
    margin-top: 10px;
}

.NexusFormSubmitButtonAction {
    width: 100%;
    padding: 18px;
    background-color: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
    transition: all 0.3s;
}

.NexusFormSubmitButtonAction:hover {
    background-color: #4338ca;
    box-shadow: 0 0 25px rgba(79, 70, 229, 0.8);
}

.NexusMedicDisclaimerText {
    margin-top: 30px;
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
}

/* FOOTER */
.NexusMainFooterWrapper {
    background-color: #111827;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(79, 70, 229, 0.2);
}

.NexusFooterTopRowBox {
    margin-bottom: 30px;
}

.NexusFooterProjectBrand {
    font-size: 22px;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 10px;
}

.NexusFooterContactInfoPara {
    color: #cbd5e1;
    font-size: 14px;
}

.NexusFooterContactInfoPara a {
    color: #c4b5fd;
    text-decoration: none;
}

.NexusFooterCopyrightRow {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 20px;
}

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

.NexusFooterLegalLinkItem {
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.NexusFooterLegalLinkItem:hover {
    color: #4f46e5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .NexusHeroMainTitleH1 {
        font-size: 32px;
    }
    .NexusSectionHeadingH2 {
        font-size: 28px;
    }
    .NexusPricingCardsContainer {
        flex-direction: column;
        align-items: center;
    }
    .NexusPriceCardHighlightRec {
        transform: scale(1);
    }
}