/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.BodyAlphaOneTwoThree {
    background-color: #050607;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
.HeaderWrapperMain {
    background: rgba(5, 6, 7, 0.9);
    border-bottom: 2px solid #5AF3FF;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.LogoTextBrandName {
    font-size: 1.8rem;
    font-weight: 800;
    color: #5AF3FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.5);
}

.NavListItemsWrap {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

.NavLinkItemText:hover {
    color: #5AF3FF;
    text-shadow: 0 0 8px rgba(90, 243, 255, 0.8);
}

/* Mobile Menu Burger (No JS) */
.MobileMenuCheckbox {
    display: none;
}

.BurgerMenuButton {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.BurgerMenuButton span {
    display: block;
    width: 100%;
    height: 3px;
    background: #5AF3FF;
    position: absolute;
    transition: 0.3s;
}

.BurgerMenuButton span:nth-child(1) { top: 0; }
.BurgerMenuButton span:nth-child(2) { top: 8px; }
.BurgerMenuButton span:nth-child(3) { top: 16px; }

/* Hero Section */
.HeroBlockSectionWrap {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.HeroLayoutContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.HeroImageColumnLeft {
    flex: 1;
}

.HeroVisualElementImg {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.2);
    border: 1px solid rgba(90, 243, 255, 0.3);
    object-fit: cover;
}

.HeroTextColumnRight {
    flex: 1.5;
}

.HeroMainHeadlineText {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
}

.HeroSubHeadlineText {
    font-size: 1.25rem;
    color: #5AF3FF;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.HeroCtaButtonPrimary {
    display: inline-block;
    padding: 18px 40px;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.4s;
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.4);
}

.HeroCtaButtonPrimary:hover {
    background-color: #ffffff;
    box-shadow: 0 0 25px rgba(90, 243, 255, 0.8);
    transform: translateY(-2px);
}

.CyberGridBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(90, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* Audience Section */
.AudienceSectionWrapper {
    background-color: #0a0c0e;
    padding: 80px 20px;
}

.AudienceWideBannerImg {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto 60px;
    border-radius: 10px;
    border: 1px solid rgba(90, 243, 255, 0.2);
}

.AudienceContentContainer {
    max-width: 1100px;
    margin: 0 auto;
}

.AudienceSectionTitle {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.AudienceSectionTitle::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #5AF3FF;
    margin: 0 auto 15px;
    box-shadow: 0 0 10px #5AF3FF;
}

.AudienceIntroductoryText {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #aaaaaa;
}

.AudienceFeatureListGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
}

.AudienceListItemElement {
    flex: 1 1 calc(50% - 30px);
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-left: 3px solid #5AF3FF;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.AudienceIconMarker {
    width: 12px;
    height: 12px;
    background: #5AF3FF;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 8px #5AF3FF;
}

.AudienceListText {
    font-size: 1.05rem;
}

/* Pricing Section */
.PricingSectionMainWrap {
    padding: 100px 20px;
}

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

.PricingSectionHeadline {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

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

.PriceCardSingleItem {
    flex: 1 1 280px;
    background: #0f1215;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.PriceCardSingleItem:hover {
    border-color: #5AF3FF;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(90, 243, 255, 0.1);
}

.FeaturedPriceCard {
    border: 2px solid #5AF3FF;
    background: #0d1a1d;
    transform: scale(1.05);
}

.PriceCardTitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #5AF3FF;
}

.PriceCardValue {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.PriceCardDetailsList {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
}

.PriceDetailItem {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #bbbbbb;
    padding-left: 20px;
    position: relative;
}

.PriceDetailItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

.PriceCardOrderButton {
    padding: 15px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.PriceCardOrderButton:hover {
    background: #5AF3FF;
    color: #050607;
}

/* Benefits Section */
.BenefitsSectionWrapper {
    background: #050607;
    padding: 100px 20px;
    border-top: 1px solid rgba(90, 243, 255, 0.2);
}

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

.BenefitsTextContentPart {
    flex: 1.2;
}

.BenefitsImagePart {
    flex: 0.8;
}

.BenefitsVisualElementImg {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(0.5);
    transition: 0.5s;
}

.BenefitsVisualElementImg:hover {
    filter: grayscale(0);
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.3);
}

.BenefitsMainHeadline {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.BenefitsAdvancedList {
    list-style: none;
    margin-top: 40px;
}

.BenefitListItem {
    margin-bottom: 30px;
}

.BenefitItemTitle {
    color: #5AF3FF;
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.BenefitItemTitle::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #5AF3FF;
    margin-left: 15px;
}

.BenefitItemDesc {
    color: #999999;
}

/* Quote Slider (No JS) */
.QuotesSliderSectionWrap {
    padding: 80px 20px;
    background: #0a0c0e;
}

.QuotesContainerBox {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.QuotesSectionHeadline {
    margin-bottom: 50px;
    font-size: 2rem;
}

.SliderWrapperNoJS {
    position: relative;
    overflow: hidden;
}

.SlideInputRadio {
    display: none;
}

.SliderInnerContent {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.SingleSlideElement {
    min-width: 100%;
    padding: 40px;
    background: rgba(90, 243, 255, 0.05);
    border-radius: 15px;
}

.QuoteTextContent {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #eeeeee;
}

.QuoteAuthorName {
    font-size: 1.1rem;
    color: #5AF3FF;
    font-weight: 600;
}

#SlideControlOne:checked ~ .SliderInnerContent { transform: translateX(0); }
#SlideControlTwo:checked ~ .SliderInnerContent { transform: translateX(-100%); }
#SlideControlThree:checked ~ .SliderInnerContent { transform: translateX(-200%); }

.SliderControlsNav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.SliderNavDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(90, 243, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

#SlideControlOne:checked ~ .SliderControlsNav label:nth-child(1),
#SlideControlTwo:checked ~ .SliderControlsNav label:nth-child(2),
#SlideControlThree:checked ~ .SliderControlsNav label:nth-child(3) {
    background: #5AF3FF;
    box-shadow: 0 0 10px #5AF3FF;
}

/* FAQ Section */
.FaqSectionWrapperMain {
    padding: 100px 20px;
}

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

.FaqSectionTitleHeadline {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
}

.FaqDetailsElement {
    margin-bottom: 15px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.FaqSummaryTitle {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.FaqSummaryTitle::after {
    content: '+';
    color: #5AF3FF;
    font-size: 1.5rem;
}

.FaqDetailsElement[open] .FaqSummaryTitle::after {
    content: '−';
}

.FaqAnswerContent {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(90, 243, 255, 0.1);
}

/* Extra Info Sections */
.ExtraInfoSectionAlpha, .ExtraInfoSectionBeta, .ExtraInfoSectionGamma {
    padding: 80px 20px;
}

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

.ExtraSectionTitle {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #5AF3FF;
}

.ExtraSectionTextFlow p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cccccc;
}

.ExtraCheckList {
    list-style: none;
    margin-top: 25px;
}

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

.ExtraCheckList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5AF3FF;
    font-weight: bold;
}

.ExtraInnerSubTitle {
    margin: 35px 0 20px;
    font-size: 1.5rem;
}

/* Contact Form */
.ContactFormSectionMain {
    padding: 100px 20px;
    background: linear-gradient(180deg, #050607 0%, #0a0e12 100%);
}

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

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

.FormMainHeadlineText {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.FormSubHeadlineText {
    color: #888888;
}

.FormWrapperBox {
    background: #0f1215;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(90, 243, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.FormInputGroup {
    margin-bottom: 25px;
}

.FormLabelText {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #5AF3FF;
}

.FormInputStyle, .FormTextareaStyle {
    width: 100%;
    padding: 15px;
    background: #050607;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 4px;
    font-size: 1rem;
    transition: 0.3s;
}

.FormInputStyle:focus, .FormTextareaStyle:focus {
    outline: none;
    border-color: #5AF3FF;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.3);
}

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

.FormCheckboxLabel {
    font-size: 0.9rem;
    color: #999999;
}

.FormInlineLink {
    color: #5AF3FF;
    text-decoration: none;
}

.FormSubmitButtonPrimary {
    width: 100%;
    padding: 18px;
    background: #5AF3FF;
    border: none;
    color: #050607;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.4s;
    text-transform: uppercase;
}

.FormSubmitButtonPrimary:hover {
    background: #ffffff;
    box-shadow: 0 0 20px #5AF3FF;
}

/* Footer */
.FooterWrapperMain {
    background: #050607;
    border-top: 1px solid #5AF3FF;
    padding: 60px 20px 30px;
}

.FooterContainerBox {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.FooterBrandInfo {
    text-align: center;
}

.FooterCopyrightText {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.FooterEmailContact, .FooterPhoneContact {
    color: #888888;
}

.FooterMailLink {
    color: #5AF3FF;
    text-decoration: none;
}

.FooterLegalLinksWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.FooterLegalLinkItem {
    color: #666666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.FooterLegalLinkItem:hover {
    color: #5AF3FF;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .HeroLayoutContainer, .BenefitsContentLayout {
        flex-direction: column;
    }
    
    .HeroTextColumnRight {
        text-align: center;
    }
    
    .HeroMainHeadlineText {
        font-size: 2.5rem;
    }
    
    .HeroImageColumnLeft {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .BurgerMenuButton {
        display: block;
    }

    .NavigationMenuLink {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #050607;
        transition: 0.4s;
        padding: 40px 20px;
    }

    .NavListItemsWrap {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .MobileMenuCheckbox:checked ~ .NavigationMenuLink {
        left: 0;
    }

    .MobileMenuCheckbox:checked ~ .BurgerMenuButton span:nth-child(1) { transform: rotate(45deg); top: 8px; }
    .MobileMenuCheckbox:checked ~ .BurgerMenuButton span:nth-child(2) { opacity: 0; }
    .MobileMenuCheckbox:checked ~ .BurgerMenuButton span:nth-child(3) { transform: rotate(-45deg); top: 8px; }

    .AudienceListItemElement {
        flex: 1 1 100%;
    }

    .PriceCardSingleItem {
        transform: none !important;
    }
}