/* 
Visual preset: aqua-minimal
Palette: #0f172a, #22d3ee, #a7f3d0, #e2e8f0 
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.BodyClassMainAlpha {
    background-color: #0f172a;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.HeaderContainerAlpha {
    background-color: rgba(15, 23, 42, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}

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

.LogoTextElement {
    font-size: 1.8rem;
    font-weight: 800;
    color: #22d3ee;
    letter-spacing: 1px;
}

.NavigationListAlpha {
    display: flex;
    list-style: none;
}

.NavigationItemAlpha {
    margin-left: 30px;
}

.NavLinkElementAlpha {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.NavLinkElementAlpha:hover {
    color: #22d3ee;
}

.BurgerCheckboxInput, .BurgerButtonIcon {
    display: none;
}

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

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

.HeroTextContentPart {
    flex: 1;
}

.HeroImageContentPart {
    flex: 1;
}

.HeroPrimaryHeading {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    background: linear-gradient(90deg, #22d3ee, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.HeroSecondaryText {
    margin-bottom: 35px;
    opacity: 0.8;
}

.HeroCallToActionBtn {
    display: inline-block;
    background-color: #22d3ee;
    color: #0f172a;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
    transition: all 0.3s ease;
}

.HeroCallToActionBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(34, 211, 238, 0.6);
}

.HeroImageWrapper {
    position: relative;
}

.HeroMainImageElement {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.FloatingFactCardOne, .FloatingFactCardTwo {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #22d3ee;
    display: flex;
    flex-direction: column;
}

.FloatingFactCardOne {
    top: 10%;
    right: -20px;
}

.FloatingFactCardTwo {
    bottom: 10%;
    left: -20px;
}

.FactCardTitle {
    font-size: 0.8rem;
    color: #a7f3d0;
    text-transform: uppercase;
}

.FactCardValue {
    font-size: 1.2rem;
    font-weight: 700;
}

.HorizontalSeparatorLine {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.3), transparent);
    margin: 40px 0;
}

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

.SectionHeadingGlobal {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.SectionSubheadingGlobal {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #cbd5e1;
}

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

.AudienceCardItem {
    flex: 0 0 calc(33.333% - 20px);
    background: rgba(30, 41, 59, 0.5);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(226, 232, 240, 0.1);
    transition: border-color 0.3s ease;
}

.AudienceCardItem:hover {
    border-color: #22d3ee;
}

.CardIconPlaceholder {
    font-size: 2rem;
    font-weight: 800;
    color: #a7f3d0;
    margin-bottom: 20px;
    opacity: 0.5;
}

.CardHeadingTitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

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

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

.BenefitsTextContent {
    flex: 1;
}

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

.BenefitsMainImage {
    width: 100%;
    border-radius: 20px;
    filter: brightness(0.8);
}

.BenefitsFeatureList {
    list-style: none;
    margin-top: 30px;
}

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

.BenefitListItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-weight: bold;
}

.BenefitStrongText {
    color: #22d3ee;
}

.FloatingQuoteCard {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: #22d3ee;
    color: #0f172a;
    padding: 25px;
    border-radius: 15px;
    max-width: 300px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.FloatingQuoteText {
    font-style: italic;
    font-weight: 600;
    margin-bottom: 10px;
}

.FloatingQuoteAuthor {
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
}

/* TEXT SECTIONS */
.TextSectionVariantOne, .TextSectionVariantTwo {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.GeneralParagraphText {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.DetailedInfoList {
    margin: 30px 0;
    padding-left: 20px;
}

.DetailedListItem {
    margin-bottom: 12px;
    color: #a7f3d0;
}

.SubSectionHeading {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #22d3ee;
}

/* FAQ SECTION */
.FaqSectionLayout {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.FaqAccordionItem {
    background: rgba(30, 41, 59, 0.4);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.05);
}

.FaqQuestionSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

.FaqQuestionSummary:hover {
    background: rgba(34, 211, 238, 0.1);
}

.QuestionIcon {
    background: #22d3ee;
    color: #0f172a;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.8rem;
}

.FaqAnswerContent {
    padding: 0 20px 20px 60px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

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

.PricingCardsWrapper {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.PricingCardItem {
    flex: 1;
    background: #1e293b;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.05);
}

.PricingCardItem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 20px 20px 0 0;
}

.CardColorCyan::before { background: #22d3ee; }
.CardColorEmerald::before { background: #a7f3d0; }
.CardColorSky::before { background: #38bdf8; }

.PriceCardHeader {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.PriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

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

.PriceFeaturesList li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.PriceFeaturesList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a7f3d0;
}

.PriceSelectBtn {
    text-align: center;
    padding: 15px;
    background: transparent;
    border: 2px solid #22d3ee;
    color: #22d3ee;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.PriceSelectBtn:hover {
    background: #22d3ee;
    color: #0f172a;
}

/* EXPERT QUOTE */
.ExpertQuoteSection {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ExpertMainQuote {
    font-size: 2rem;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.4;
}

.ExpertInfoDivider {
    width: 60px;
    height: 2px;
    background: #a7f3d0;
    margin: 0 auto 20px;
}

.ExpertNameSignature {
    font-size: 1.4rem;
    font-weight: 700;
    color: #22d3ee;
}

.ExpertRoleTitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 5px;
}

/* FORM SECTION */
.FormSectionLayout {
    padding: 100px 20px;
    background: rgba(34, 211, 238, 0.02);
}

.FormWrapperInner {
    max-width: 600px;
    margin: 0 auto;
}

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

.FormRowAlpha {
    margin-bottom: 25px;
}

.FormInputLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #a7f3d0;
}

.FormInputField, .FormTextAreaField {
    width: 100%;
    padding: 15px;
    background: #1e293b;
    border: 1px solid rgba(226, 232, 240, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
}

.FormInputField:focus, .FormTextAreaField:focus {
    outline: none;
    border-color: #22d3ee;
}

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

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

.PolicyLinkInline {
    color: #22d3ee;
    text-decoration: underline;
}

.FormSubmitButtonElement {
    width: 100%;
    padding: 18px;
    background: #22d3ee;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.FormSubmitButtonElement:hover {
    background: #0ea5e9;
}

/* FOOTER */
.FooterContainerAlpha {
    padding: 60px 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.05);
    text-align: center;
}

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

.FooterBrandName {
    margin-bottom: 15px;
    font-weight: 600;
}

.FooterContactMail {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.FooterMailLink {
    color: #22d3ee;
    text-decoration: none;
}

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

.FooterBottomLink {
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.FooterBottomLink:hover {
    color: #e2e8f0;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .HeroContentContainer, .BenefitsContentWrapper {
        flex-direction: column;
    }
    .HeroPrimaryHeading { font-size: 2.8rem; }
    .AudienceCardItem { flex: 0 0 calc(50% - 15px); }
    .PricingCardsWrapper { flex-direction: column; }
}

@media (max-width: 768px) {
    .BurgerButtonIcon {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }
    .BurgerLineElement {
        width: 30px;
        height: 3px;
        background: #22d3ee;
        border-radius: 3px;
    }
    .NavigationMenuAlpha {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        padding: 20px;
        border-bottom: 1px solid #22d3ee;
    }
    .NavigationListAlpha {
        flex-direction: column;
    }
    .NavigationItemAlpha {
        margin: 10px 0;
    }
    .BurgerCheckboxInput:checked ~ .NavigationMenuAlpha {
        display: block;
    }
    .AudienceCardItem { flex: 0 0 100%; }
    .HeroImageWrapper { display: none; }
}