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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.BodyWrapperAlpha {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #000F2B; /* Dark navy as requested */
    color: #e5e7eb;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* HEADER STYLES */
.MainHeaderSection {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
}

.HeaderGlassLayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 15, 43, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #D9FAFF33; /* Ice line effect */
}

.HeaderInnerContainer {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.LogoBrandNameText {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #D9FAFF;
    text-transform: uppercase;
}

.NavigationMenuBlock {
    display: flex;
}

.NavListContainerItems {
    display: flex;
    gap: 25px;
}

.NavLinkItemText {
    font-size: 0.95rem;
    font-weight: 500;
    color: #94a3b8;
    position: relative;
    padding: 5px 0;
}

.NavLinkItemText:hover {
    color: #D9FAFF;
    text-shadow: 0 0 8px rgba(217, 250, 255, 0.6);
}

.BurgerHiddenInput {
    display: none;
}

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

.BurgerLineElement {
    width: 30px;
    height: 2px;
    background-color: #D9FAFF;
    transition: 0.3s;
}

/* HERO SECTION */
.HeroSectionLayoutContainer {
    padding: 160px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.HeroContentGridWrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.HeroImageColumnLeft {
    flex: 1;
    min-width: 350px;
}

.HeroMainVisualImage {
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(217, 250, 255, 0.1);
}

.HeroTextColumnRight {
    flex: 1.2;
    min-width: 350px;
}

.HeroPrimaryMainTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
}

.HeroLeadParagraphText {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #D9FAFF;
}

.HeroSecondaryParagraphText {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #94a3b8;
}

.HeroCallToActionButtons {
    display: flex;
    gap: 20px;
}

.PrimaryActionButtonIce {
    display: inline-block;
    padding: 18px 35px;
    background-color: #D9FAFF;
    color: #000F2B;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.PrimaryActionButtonIce:hover {
    box-shadow: 0 0 25px rgba(217, 250, 255, 0.5);
    transform: translateY(-2px);
}

.SecondaryActionButtonGhost {
    display: inline-block;
    padding: 18px 35px;
    background-color: transparent;
    color: #D9FAFF;
    border: 1px solid #D9FAFF;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.SecondaryActionButtonGhost:hover {
    background: rgba(217, 250, 255, 0.1);
}

/* EXPERT SECTION */
.ExpertSectionSpeechBlock {
    padding: 100px 20px;
    background: #00153D;
}

.ExpertInnerContentBox {
    max-width: 900px;
    margin: 0 auto;
}

.ExpertSpeechBubbleLayout {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 250, 255, 0.1);
    padding: 60px;
    border-radius: 10px;
}

.ExpertSpeechBubbleLayout::before {
    content: "“";
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: #D9FAFF;
    opacity: 0.15;
    font-family: serif;
}

.ExpertQuoteTextContent {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.5;
}

.ExpertAuthorSignatureBox {
    display: flex;
    flex-direction: column;
}

.ExpertAuthorNameLabel {
    font-weight: 700;
    color: #D9FAFF;
    font-size: 1.2rem;
}

.ExpertAuthorRoleTitle {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* INFO TEXT SECTIONS (3 Sections) */
.InformationalSectionTextOne, 
.InformationalSectionTextTwo, 
.InformationalSectionTextThree {
    padding: 100px 20px;
    border-bottom: 1px solid rgba(217, 250, 255, 0.05);
}

.InfoSectionContentGrid {
    max-width: 1200px;
    margin: 0 auto;
}

.InfoSectionHeaderTitle {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    text-align: center;
}

.InfoTwoColumnTextLayout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.InfoGenericParagraph {
    margin-bottom: 20px;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.InfoChecklistItemsList {
    margin-top: 10px;
}

.InfoChecklistItem {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: #D9FAFF;
}

.InfoChecklistItem::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #D9FAFF;
    font-weight: bold;
}

.SmallSubHeaderTitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #D9FAFF;
    text-transform: uppercase;
}

/* REGULAR PRACTICE */
.RegularPracticeBenefitSection {
    padding: 100px 20px;
    background: linear-gradient(180deg, #000F2B 0%, #001A4D 100%);
}

.BenefitContentGridWrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
}

.BenefitTextColumnLeft {
    flex: 1.2;
    min-width: 350px;
}

.BenefitImageColumnRight {
    flex: 0.8;
    min-width: 350px;
}

.BenefitVisualContentImage {
    border-radius: 8px;
    border: 1px solid rgba(217, 250, 255, 0.2);
}

.BenefitSectionMainTitle {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.BenefitIntroductoryText {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #94a3b8;
}

.BenefitPointsDetailedList {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.BenefitSinglePointItem {
    display: flex;
    gap: 20px;
}

.BenefitMarkerIconPoint {
    width: 12px;
    height: 12px;
    background-color: #D9FAFF;
    flex-shrink: 0;
    margin-top: 8px;
    border-radius: 50%;
    box-shadow: 0 0 10px #D9FAFF;
}

.BenefitStrongLabel {
    display: block;
    color: #D9FAFF;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.BenefitPointTextContainer {
    color: #cbd5e1;
}

/* PRICING */
.PricingSectionPackagesContainer {
    padding: 120px 20px;
    background: #000F2B;
}

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

.PricingSectionMainTitle {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.PricingSectionSubDescription {
    font-size: 1.1rem;
    color: #94a3b8;
}

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

.PricingSingleCardBox {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(217, 250, 255, 0.1);
    padding: 50px 40px;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

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

.FeaturedCardIce {
    background: rgba(217, 250, 255, 0.05);
    border-color: rgba(217, 250, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.FeaturedCardIce::after {
    content: "РЕКОМЕНДОВАНО";
    position: absolute;
    top: 20px;
    right: -35px;
    background: #D9FAFF;
    color: #000F2B;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 40px;
    transform: rotate(45deg);
}

.PriceTagHighlight {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.PriceValueText {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
}

.PriceFeaturesListItems {
    margin-bottom: 40px;
    text-align: left;
}

.PriceFeatureSingle {
    padding: 10px 0;
    border-bottom: 1px solid rgba(217, 250, 255, 0.05);
    font-size: 0.95rem;
    color: #cbd5e1;
}

.PriceCardActionButtonLink {
    display: block;
    width: 100%;
    padding: 15px;
    border: 1px solid #D9FAFF;
    color: #D9FAFF;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 2px;
}

.PriceCardActionButtonLink:hover {
    background: #D9FAFF;
    color: #000F2B;
}

.FeaturedButton {
    background: #D9FAFF;
    color: #000F2B;
}

/* FAQ */
.FaqSectionInteractionBlock {
    padding: 100px 20px;
    background: #00153D;
}

.FaqContentConstraintsBox {
    max-width: 900px;
    margin: 0 auto;
}

.FaqSectionMainTitle {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.FaqIntroductoryIntroParagraph {
    text-align: center;
    margin-bottom: 50px;
    color: #94a3b8;
}

.FaqAccordionContainerItems {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.FaqSingleItemDetail {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 250, 255, 0.1);
    border-radius: 4px;
}

.FaqSummaryQuestionToggle {
    padding: 20px 30px;
    font-weight: 600;
    cursor: pointer;
    color: #D9FAFF;
    list-style: none;
    position: relative;
    outline: none;
}

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

.FaqSummaryQuestionToggle::after {
    content: "+";
    position: absolute;
    right: 30px;
    font-size: 1.5rem;
}

.FaqSingleItemDetail[open] .FaqSummaryQuestionToggle::after {
    content: "−";
}

.FaqAnswerExpandedContent {
    padding: 0 30px 25px;
    color: #94a3b8;
    font-size: 1rem;
}

/* FOR WHOM (TIMELINE) */
.ForWhoSectionTimelineLayout {
    padding: 120px 20px;
}

.ForWhoInnerContentBox {
    max-width: 1000px;
    margin: 0 auto;
}

.ForWhoSectionMainTitle {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
}

.ForWhoIntroductionLead {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 80px;
}

.VerticalTimelineContainerBox {
    position: relative;
    padding-left: 60px;
}

.VerticalTimelineContainerBox::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #D9FAFF 0%, rgba(217, 250, 255, 0) 100%);
}

.TimelinePointSingleItem {
    position: relative;
    margin-bottom: 60px;
}

.TimelineNumberMarker {
    position: absolute;
    left: -60px;
    width: 42px;
    height: 42px;
    background: #000F2B;
    border: 2px solid #D9FAFF;
    color: #D9FAFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 50%;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(217, 250, 255, 0.4);
}

.TimelineItemHeadingTitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.TimelineItemParagraphText {
    color: #94a3b8;
    max-width: 600px;
}

/* FORM SECTION */
.LeadFormCaptureSection {
    padding: 100px 20px;
    background: #00153D;
}

.FormSectionContentConstraints {
    max-width: 700px;
    margin: 0 auto;
}

.FormTextHeaderInfo {
    text-align: center;
    margin-bottom: 50px;
}

.FormPrimaryHeaderTitle {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.FormSubHeaderTextDescription {
    color: #94a3b8;
}

.FormMainWrapperBox {
    background: rgba(255, 255, 255, 0.02);
    padding: 50px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    border-radius: 4px;
}

.FormInputRowGroup {
    margin-bottom: 25px;
}

.FormInputLabelText {
    display: block;
    margin-bottom: 10px;
    color: #D9FAFF;
    font-size: 0.9rem;
    font-weight: 600;
}

.FormGenericInputText, .FormGenericTextArea {
    width: 100%;
    background: rgba(0, 15, 43, 0.5);
    border: 1px solid rgba(217, 250, 255, 0.2);
    padding: 15px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 2px;
}

.FormGenericInputText:focus, .FormGenericTextArea:focus {
    outline: none;
    border-color: #D9FAFF;
    box-shadow: 0 0 10px rgba(217, 250, 255, 0.2);
}

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

.FormCheckboxPolicyGroup {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 35px;
}

.FormHiddenCheckboxInput {
    margin-top: 5px;
    cursor: pointer;
}

.FormCheckboxCustomLabel {
    font-size: 0.85rem;
    color: #94a3b8;
}

.InlinePolicyLinkText {
    color: #D9FAFF;
    text-decoration: underline;
}

.FormSubmitActionButtonPrimary {
    width: 100%;
    padding: 20px;
    background: #D9FAFF;
    color: #000F2B;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.FormSubmitActionButtonPrimary:hover {
    box-shadow: 0 0 30px rgba(217, 250, 255, 0.4);
    transform: scale(1.02);
}

/* FOOTER */
.MainFooterNavigationSection {
    background: #00071A;
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(217, 250, 255, 0.05);
}

.FooterInnerContentLayout {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.FooterTopBrandRow {
    margin-bottom: 30px;
}

.FooterBrandLogoName {
    font-size: 1.5rem;
    color: #D9FAFF;
    font-weight: 700;
}

.FooterContactInfoArea {
    margin-bottom: 40px;
    color: #94a3b8;
}

.FooterPlainLink {
    color: #ffffff;
}

.FooterPlainLink:hover {
    color: #D9FAFF;
}

.FooterCopyrightStatementRow {
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: #64748b;
}

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

.FooterLegalAnchorText {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.FooterLegalAnchorText:hover {
    color: #D9FAFF;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .HeroPrimaryMainTitle {
        font-size: 2.8rem;
    }
    .NavigationMenuBlock {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #000F2B;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        z-index: 999;
    }
    .NavListContainerItems {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .BurgerMenuButton {
        display: flex;
    }
    .BurgerHiddenInput:checked ~ .NavigationMenuBlock {
        left: 0;
    }
    .HeroContentGridWrapper, .BenefitContentGridWrapper {
        flex-direction: column;
    }
    .HeroImageColumnLeft, .HeroTextColumnRight, .BenefitTextColumnLeft, .BenefitImageColumnRight {
        flex: none;
        width: 100%;
        min-width: auto;
    }
    .HeroImageColumnLeft {
        order: 2;
    }
    .HeroTextColumnRight {
        order: 1;
        text-align: center;
    }
    .HeroCallToActionButtons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .HeroPrimaryMainTitle {
        font-size: 2.2rem;
    }
    .PricingCardsFlexLayout {
        flex-direction: column;
        align-items: center;
    }
    .PricingSingleCardBox {
        width: 100%;
    }
    .FormMainWrapperBox {
        padding: 30px 20px;
    }
    .InfoSectionHeaderTitle {
        font-size: 1.8rem;
    }
}