/* Базові налаштування та Кольорова палітра */
:root {
    --bg-main: #000F2B;
    --ice-blue: #D9FAFF;
    --ice-glow: rgba(217, 250, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(217, 250, 255, 0.2);
    --text-white: #FFFFFF;
    --text-muted: #A0B0C0;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body.BodyClassZenvor9603 {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header.HeaderClassZenvor9603 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--ice-blue);
}

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

.LogoTextClassZenvor9603 {
    font-size: 24px;
    font-weight: 800;
    color: var(--ice-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.NavLinkClassZenvor9603 {
    text-decoration: none;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color var(--transition-speed);
}

.NavLinkClassZenvor9603:hover {
    color: var(--ice-blue);
    text-shadow: 0 0 8px var(--ice-glow);
}

/* Burger Menu */
.MenuToggleZenvor9603 {
    display: none;
}

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

.BurgerLabelZenvor9603 span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--ice-blue);
    transition: 0.3s;
}

/* Hero Section */
.HeroSectionZenvor9603 {
    padding: 140px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.HeroLeftColumnZenvor9603 {
    flex: 1;
}

.HeroMainImageZenvor9603 {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--ice-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
}

.HeroRightColumnZenvor9603 {
    flex: 1;
}

.HeroTitleClassZenvor9603 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--ice-blue);
}

.HeroSubtitleClassZenvor9603 {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.HeroDescriptionZenvor9603 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #CBD5E0;
}

.HeroCtaButtonZenvor9603 {
    display: inline-block;
    padding: 16px 40px;
    background: var(--ice-blue);
    color: var(--bg-main);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--transition-speed);
}

.HeroCtaButtonZenvor9603:hover {
    box-shadow: 0 0 20px var(--ice-blue);
    transform: translateY(-2px);
}

.HeroGalleryZenvor9603 {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.GalleryItemZenvor9603 {
    flex: 1;
}

.SmallGalImgZenvor9603 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s;
}

.SmallGalImgZenvor9603:hover {
    transform: scale(1.05);
    border-color: var(--ice-blue);
}

/* Audience Section */
.AudienceSectionZenvor9603 {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.2);
}

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

.AudienceTitleZenvor9603 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--ice-blue);
}

.AudienceBannerZenvor9603 {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    border: 1px solid var(--glass-border);
}

.AudienceIntroZenvor9603 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #E2E8F0;
}

.AudienceListZenvor9603 {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.AudienceListItemZenvor9603 {
    background: var(--glass-bg);
    padding: 20px;
    border-left: 3px solid var(--ice-blue);
    transition: background 0.3s;
}

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

/* Pricing Section */
.PricingSectionZenvor9603 {
    padding: 100px 20px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.PricingTitleZenvor9603 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--ice-blue);
}

.PricingSubtitleZenvor9603 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-muted);
}

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

.PriceCardZenvor9603 {
    flex: 1;
    min-width: 220px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}

.PriceCardZenvor9603:hover {
    border-color: var(--ice-blue);
}

.FeaturedCardZenvor9603 {
    border: 1px solid var(--ice-blue);
    transform: scale(1.05);
    background: rgba(217, 250, 255, 0.05);
}

.PriceCardTitleZenvor9603 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.PriceValueZenvor9603 {
    font-size: 32px;
    font-weight: 800;
    color: var(--ice-blue);
    margin-bottom: 30px;
    text-align: center;
}

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

.PriceFeaturesZenvor9603 li {
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #CBD5E0;
}

.PriceFeaturesZenvor9603 li::before {
    content: "❄";
    position: absolute;
    left: 0;
    color: var(--ice-blue);
}

.PriceButtonZenvor9603 {
    text-align: center;
    padding: 12px;
    background: transparent;
    color: var(--ice-blue);
    border: 1px solid var(--ice-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.PriceButtonZenvor9603:hover {
    background: var(--ice-blue);
    color: var(--bg-main);
    box-shadow: 0 0 10px var(--ice-glow);
}

/* Benefits Section */
.BenefitsSectionZenvor9603 {
    padding: 100px 20px;
}

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

.BenefitsTextColZenvor9603 {
    flex: 1;
}

.BenefitsImgColZenvor9603 {
    flex: 1;
}

.BenefitsTitleZenvor9603 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--ice-blue);
}

.BenefitsParaZenvor9603 {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.BenefitsListZenvor9603 {
    list-style: none;
}

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

.BenefitsItemZenvor9603::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--ice-blue);
    font-weight: bold;
}

.BenefitsImageZenvor9603 {
    width: 100%;
    height: auto;
    border-radius: 4px;
    filter: grayscale(0.3);
    border: 1px solid var(--glass-border);
}

/* Expert Section */
.ExpertSectionZenvor9603 {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #000F2B, #001A4D);
}

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

.ExpertQuoteZenvor9603 {
    position: relative;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.QuoteTextZenvor9603 {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.5;
    color: var(--ice-blue);
}

.QuoteAuthorZenvor9603 {
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
}

.QuoteRoleZenvor9603 {
    font-size: 14px;
    color: var(--text-muted);
}

/* Extra Sections */
.ExtraSectionZenvor9603 {
    padding: 80px 20px;
}

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

.GlassBgZenvor9603 {
    background: var(--glass-bg);
}

.ExtraTitleZenvor9603 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--ice-blue);
}

.ExtraTextZenvor9603 {
    margin-bottom: 20px;
    color: #CBD5E0;
}

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

.ExtraListZenvor9603 li {
    margin-bottom: 10px;
}

.ExtraSubGridZenvor9603 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.SubGridItemZenvor9603 {
    padding: 25px;
    border: 1px solid var(--glass-border);
}

.SubGridTitleZenvor9603 {
    margin-bottom: 15px;
    color: var(--ice-blue);
}

.ErgoGridZenvor9603 {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.ErgoBoxZenvor9603 {
    flex: 1;
}

.ErgoImgZenvor9603 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
}

.ErgoLabelZenvor9603 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--ice-blue);
}

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

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

.FaqTitleZenvor9603 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--ice-blue);
}

.FaqItemZenvor9603 {
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.FaqSummaryZenvor9603 {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.FaqSummaryZenvor9603::after {
    content: "+";
    color: var(--ice-blue);
    font-size: 20px;
}

.FaqItemZenvor9603[open] .FaqSummaryZenvor9603::after {
    content: "-";
}

.FaqContentZenvor9603 {
    padding: 0 20px 20px;
    color: #CBD5E0;
}

/* Form Section */
.FormSectionZenvor9603 {
    padding: 100px 20px;
    background: rgba(217, 250, 255, 0.02);
}

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

.FormTitleZenvor9603 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--ice-blue);
}

.FormSubtitleZenvor9603 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.InputGroupZenvor9603 {
    margin-bottom: 20px;
}

.LabelClassZenvor9603 {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--ice-blue);
}

.InputClassZenvor9603, .TextareaClassZenvor9603 {
    width: 100%;
    padding: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    font-size: 16px;
}

.InputClassZenvor9603:focus, .TextareaClassZenvor9603:focus {
    outline: none;
    border-color: var(--ice-blue);
    box-shadow: 0 0 5px var(--ice-glow);
}

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

.CheckboxInputZenvor9603 {
    margin-top: 5px;
}

.CheckboxLabelZenvor9603 {
    font-size: 13px;
    color: var(--text-muted);
}

.CheckboxLabelZenvor9603 a {
    color: var(--ice-blue);
}

.SubmitButtonZenvor9603 {
    width: 100%;
    padding: 16px;
    background: var(--ice-blue);
    color: var(--bg-main);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.SubmitButtonZenvor9603:hover {
    box-shadow: 0 0 20px var(--ice-blue);
    transform: translateY(-2px);
}

/* Footer */
.FooterClassZenvor9603 {
    padding: 60px 20px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

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

.FooterCopyZenvor9603 {
    margin-bottom: 15px;
    font-size: 14px;
}

.FooterContactZenvor9603 {
    font-size: 14px;
    margin-bottom: 10px;
}

.FooterContactZenvor9603 a {
    color: var(--ice-blue);
    text-decoration: none;
}

.FooterLinksZenvor9603 {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.FooterLinkItemZenvor9603 {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.FooterLinkItemZenvor9603:hover {
    color: var(--ice-blue);
}

/* Responsive */
@media (max-width: 992px) {
    .HeroContainerZenvor9603 {
        flex-direction: column;
    }
    .BenefitsContainerZenvor9603 {
        flex-direction: column;
    }
    .AudienceListZenvor9603 {
        grid-template-columns: 1fr;
    }
    .ErgoGridZenvor9603 {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .BurgerLabelZenvor9603 {
        display: flex;
    }
    .NavContainerZenvor9603 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        height: 0;
        overflow: hidden;
        transition: 0.3s;
    }
    .NavListClassZenvor9603 {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }
    .MenuToggleZenvor9603:checked ~ .NavContainerZenvor9603 {
        height: auto;
        border-bottom: 1px solid var(--ice-blue);
    }
    .HeroTitleClassZenvor9603 {
        font-size: 32px;
    }
    .PriceCardZenvor9603 {
        min-width: 100%;
    }
    .FeaturedCardZenvor9603 {
        transform: scale(1);
    }
}