/* RESET AND CORE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.BodyWrapperAlphaContent {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #020B14 0%, #001E2A 100%);
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    color: #c4b5fd;
    font-weight: 700;
}

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

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

/* HEADER STYLES */
.HeaderMainContainerAlpha {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 11, 20, 0.85);
    backdrop-filter: blur(10px);
}

.HeaderInnerFlexBoxBeta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.HeaderLogoTextGamma {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ffe0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 224, 0.5);
}

.HeaderNavigationMenuEta {
    display: flex;
}

.HeaderNavListTheta {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.HeaderNavLinkKappa {
    color: #f8fafc;
    font-size: 0.95rem;
    font-weight: 500;
}

.HeaderNavLinkKappa:hover {
    color: #00ffe0;
}

#HeaderCtaButtonUnique {
    background: transparent;
    border: 1px solid #00ffe0;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 255, 224, 0.2);
}

#HeaderCtaButtonUnique:hover {
    background: #00ffe0;
    color: #020B14;
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.6);
}

.HeaderDecorativeGradientLineLambda {
    height: 3px;
    background: linear-gradient(90deg, #020B14, #4f46e5, #00ffe0, #020B14);
    width: 100%;
    opacity: 0.7;
}

/* MOBILE MENU */
.HeaderCheckboxHiddenEpsilon {
    display: none;
}

.HeaderBurgerIconZeta {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.HeaderBurgerIconZeta span {
    width: 25px;
    height: 3px;
    background: #00ffe0;
    transition: 0.3s;
}

/* HERO SECTION */
.HeroSectionWrapperMu {
    padding: 180px 2rem 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.HeroContainerFlexNu {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.HeroTextContentColumnXi {
    flex: 1;
}

.HeroTitleH1Omicron {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #f8fafc, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.HeroSubtitlePi {
    font-size: 1.25rem;
    color: #00ffe0;
    margin-bottom: 2rem;
    font-weight: 500;
}

.HeroDescriptionRho {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.HeroCtaWrapperSigma {
    margin-top: 2.5rem;
}

.HeroMainButtonTau {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #4f46e5;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

.HeroMainButtonTau:hover {
    background: #00ffe0;
    color: #020B14;
    box-shadow: 0 0 30px rgba(0, 255, 224, 0.6);
    transform: translateY(-3px);
}

.HeroImageColumnWrapperUpsilon {
    flex: 1;
    position: relative;
}

.HeroImageRelativeBoxPhi {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.HeroMainImageChi {
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 224, 0.2);
    box-shadow: 0 0 40px rgba(0, 30, 42, 0.5);
    object-fit: cover;
}

.HeroFloatingCardPsi {
    position: absolute;
    background: rgba(17, 24, 39, 0.9);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #4f46e5;
    width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.CardPositionOne { top: 10%; right: -20px; }
.CardPositionTwo { bottom: 20%; left: -30px; border-color: #00ffe0; }
.CardPositionThree { top: 50%; right: -40px; }

.FloatingCardTitle {
    display: block;
    color: #00ffe0;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.FloatingCardText {
    font-size: 0.8rem;
    color: #f8fafc;
}

/* EXPERT SECTION */
.ExpertSectionWrapperOmega {
    padding: 80px 2rem;
    background: rgba(0, 30, 42, 0.3);
}

.ExpertContentContainerAlpha {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(2, 11, 20, 0.8));
    padding: 3rem;
    border-radius: 100px 30px 30px 100px;
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.ExpertProfileCircleBeta {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #4f46e5;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}

.ExpertAvatarImageGamma {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ExpertQuoteContentDelta {
    flex: 1;
}

.ExpertQuoteTextEpsilon {
    font-size: 1.4rem;
    font-style: italic;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    position: relative;
}

.ExpertQuoteTextEpsilon::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -40px;
    opacity: 0.2;
    color: #00ffe0;
}

.ExpertSignatureZeta {
    color: #00ffe0;
    font-weight: 600;
    font-size: 1.1rem;
}

/* INFO SECTIONS */
.InfoContentSectionEta {
    padding: 100px 2rem;
}

.AltBackground {
    background: rgba(17, 24, 39, 0.5);
}

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

.InfoSectionHeadingIota {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.InfoTextGridKappa {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.InfoTextBlockLambda p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.InfoCheckListNu {
    list-style: none;
}

.InfoListItemXi {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(196, 181, 253, 0.1);
    display: flex;
    align-items: center;
}

.InfoListItemXi::before {
    content: '→';
    margin-right: 1rem;
    color: #00ffe0;
    font-weight: bold;
}

/* SERVICES PACKAGES */
.ServicesSectionWrapperOmicron {
    padding: 100px 2rem;
    background: #020B14;
}

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

.ServicesMainTitleRho {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.ServicesGridSigma {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.ServiceCardTau {
    background: #111827;
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.ServiceCardTau:hover {
    transform: translateY(-10px);
    border-color: #00ffe0;
}

.FeaturedCardDelta {
    background: linear-gradient(180deg, #111827 0%, rgba(79, 70, 229, 0.1) 100%);
    border-color: #4f46e5;
    position: relative;
    transform: scale(1.05);
}

.ServicePackNamePhi {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ServicePackDescChi {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.ServicePriceBoxPsi {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ffe0;
    margin-bottom: 2rem;
}

.ServiceFeaturesListOmega {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.ServiceFeatureItemAlpha {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.ServiceFeatureItemAlpha::before {
    content: '✓';
    color: #4f46e5;
    margin-right: 0.8rem;
    font-weight: bold;
}

.ServiceOrderBtnGamma {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    border: 2px solid #4f46e5;
    border-radius: 8px;
    color: #f8fafc;
    font-weight: 700;
}

.ServiceOrderBtnGamma:hover {
    background: #4f46e5;
}

.GlowEffect {
    background: #4f46e5;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
    border: none;
}

/* BENEFITS SECTION */
.BenefitsSectionWrapperEpsilon {
    padding: 100px 2rem;
}

.BenefitsContainerFlexZeta {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.BenefitsTextContentEta {
    flex: 1.2;
}

.BenefitsTitleTheta {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.BenefitsIntroIota {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #cbd5e1;
}

.BenefitsIconGridKappa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.BenefitIconBoxLambda {
    background: rgba(0, 30, 42, 0.4);
    padding: 1.5rem;
    border-radius: 15px;
}

.BenefitIconWrapperMu {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.BenefitIconImgNu {
    border-radius: 12px;
}

.BenefitIconTitleXi {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #00ffe0;
}

.BenefitIconTextOmicron {
    font-size: 0.85rem;
}

.BenefitsImageWrapperPi {
    flex: 0.8;
}

.BenefitsMainImgRho {
    border-radius: 50% 20% 50% 20%;
    border: 2px solid #4f46e5;
}

/* AUDIENCE SECTION */
.AudienceSectionWrapperSigma {
    padding: 100px 2rem;
    background: rgba(17, 24, 39, 0.3);
}

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

.AudienceMainTitleUpsilon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.AudienceIntroPhi {
    margin-bottom: 4rem;
    font-size: 1.2rem;
    color: #94a3b8;
}

.AudienceCardsGridChi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.AudienceItemCardPsi {
    background: #111827;
    padding: 3rem 2rem;
    border-radius: 20px;
    border-bottom: 4px solid #4f46e5;
    transition: 0.3s;
}

.AudienceItemCardPsi:hover {
    transform: translateY(-5px);
    border-bottom-color: #00ffe0;
}

.AudienceCardIconOmega {
    margin: 0 auto 1.5rem;
    border-radius: 50%;
}

.AudienceCardTitleAlpha {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.AudienceCardTextBeta {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* FAQ SECTION */
.FaqSectionWrapperGamma {
    padding: 100px 2rem;
}

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

.FaqMainTitleEpsilon {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.FaqAccordionWrapperZeta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.FaqDetailsBoxEta {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.FaqSummaryTitleTheta {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    color: #f8fafc;
}

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

.FaqNumberIota {
    color: #00ffe0;
    margin-right: 1rem;
    font-family: monospace;
    font-size: 1.2rem;
}

.FaqContentTextKappa {
    padding: 0 1.5rem 1.5rem 3.8rem;
    color: #cbd5e1;
    font-size: 1rem;
}

/* FORM SECTION */
.ContactFormSectionLambda {
    padding: 100px 2rem;
    background: linear-gradient(0deg, #020B14 0%, rgba(79, 70, 229, 0.05) 100%);
}

.ContactFormContainerMu {
    max-width: 700px;
    margin: 0 auto;
    background: #111827;
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 255, 224, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.ContactFormHeaderNu {
    text-align: center;
    margin-bottom: 3rem;
}

.ContactFormTitleXi {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ContactFormSubtitleOmicron {
    color: #94a3b8;
}

.FormGroupRho {
    margin-bottom: 1.5rem;
}

.FormLabelSigma {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #00ffe0;
}

.FormFieldInputTau, .FormFieldTextareaUpsilon {
    width: 100%;
    padding: 1rem;
    background: #020B14;
    border: 1px solid #1e293b;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.FormFieldInputTau:focus, .FormFieldTextareaUpsilon:focus {
    border-color: #4f46e5;
}

.FormCheckboxGroupPhi {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 2rem 0;
}

.FormCheckboxInputChi {
    margin-top: 0.3rem;
}

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

.FormCheckboxLabelPsi a {
    color: #00ffe0;
    text-decoration: underline;
}

.FormSubmitButtonAlpha {
    width: 100%;
    padding: 1.2rem;
    background: #00ffe0;
    color: #020B14;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.FormSubmitButtonAlpha:hover {
    box-shadow: 0 0 25px rgba(0, 255, 224, 0.7);
    transform: translateY(-2px);
}

/* FOOTER SECTION */
.FooterMainContainerAlpha {
    padding: 80px 2rem 40px;
    background: #01080e;
    border-top: 1px solid rgba(79, 70, 229, 0.2);
}

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

.FooterBrandGamma {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00ffe0;
    margin-bottom: 1.5rem;
}

.FooterCopyDelta {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.FooterContactEpsilon {
    margin-bottom: 3rem;
    font-size: 1rem;
}

.FooterMailLinkZeta, .FooterPhoneLinkEta {
    color: #c4b5fd;
    font-weight: 600;
}

.FooterNavLinksTheta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

.FooterBottomLinkIota {
    font-size: 0.8rem;
    color: #475569;
}

.FooterBottomLinkIota:hover {
    color: #00ffe0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .HeroContainerFlexNu {
        flex-direction: column;
        text-align: center;
    }
    .HeroTitleH1Omicron {
        font-size: 2.8rem;
    }
    .ExpertContentContainerAlpha {
        flex-direction: column;
        border-radius: 30px;
        text-align: center;
    }
    .ExpertQuoteTextEpsilon::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .InfoTextGridKappa {
        grid-template-columns: 1fr;
    }
    .BenefitsContainerFlexZeta {
        flex-direction: column;
    }
    .ServiceCardTau {
        max-width: 100%;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .HeaderBurgerIconZeta {
        display: flex;
    }
    .HeaderNavigationMenuEta {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #020B14;
        transition: 0.4s;
        flex-direction: column;
        padding: 2rem;
    }
    .HeaderNavListTheta {
        flex-direction: column;
        gap: 1.5rem;
    }
    .HeaderCheckboxHiddenEpsilon:checked ~ .HeaderNavigationMenuEta {
        left: 0;
    }
    .HeaderCheckboxHiddenEpsilon:checked ~ .HeaderBurgerIconZeta span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .HeaderCheckboxHiddenEpsilon:checked ~ .HeaderBurgerIconZeta span:nth-child(2) {
        opacity: 0;
    }
    .HeaderCheckboxHiddenEpsilon:checked ~ .HeaderBurgerIconZeta span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
    }
    .ContactFormContainerMu {
        padding: 2rem;
    }
    .HeroFloatingCardPsi {
        display: none;
    }
}