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

html {
    scroll-behavior: smooth;
}

body.BodyBrenqiAlpha8122 {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0A0C10; /* Темний графіт */
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

.ContainerBrenqi8122 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.LimeText8122 {
    color: #CFFF35;
}

/* HEADER */
.HeaderBrenqiAlpha8122 {
    background-color: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(207, 255, 53, 0.1);
}

.HeaderInnerBrenqi8122 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.LogoBrenqi8122 {
    font-size: 24px;
    font-weight: 800;
    color: #CFFF35;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.NavListBrenqi8122 {
    display: flex;
    list-style: none;
    align-items: center;
}

.NavLinkBrenqi8122 {
    color: #E0E0E0;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.NavLinkBrenqi8122:hover {
    color: #CFFF35;
}

.NavBtnBrenqi8122 {
    background-color: #CFFF35;
    color: #0A0C10;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    margin-left: 30px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.NavBtnBrenqi8122:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(207, 255, 53, 0.4);
}

.HeaderPulseLine8122 {
    height: 2px;
    background-color: #CFFF35;
    width: 100%;
    position: absolute;
    bottom: 0;
    animation: PulseLineAnim8122 3s infinite ease-in-out;
}

@keyframes PulseLineAnim8122 {
    0% { opacity: 0.1; }
    50% { opacity: 0.8; }
    100% { opacity: 0.1; }
}

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

.BurgerBrenqi8122 {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
}

.BurgerBrenqi8122 span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #CFFF35;
    transition: 0.3s;
}

/* HERO SECTION */
.HeroBrenqiAlpha8122 {
    padding: 100px 0;
}

.HeroContentWrapper8122 {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.HeroImageSide8122 {
    flex: 1;
}

.HeroMainImg8122 {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 20px 20px 0px #CFFF35;
}

.HeroTextSide8122 {
    flex: 1;
}

.HeroTitleBrenqi8122 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.HeroSubTitle8122 {
    font-size: 20px;
    color: #CFFF35;
    margin-bottom: 20px;
    font-weight: 600;
}

.HeroDesc8122 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #B0B0B0;
}

.BtnMainBrenqi8122 {
    display: inline-block;
    padding: 18px 35px;
    background-color: #CFFF35;
    color: #0A0C10;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.BtnMainBrenqi8122:hover {
    box-shadow: 0 0 25px rgba(207, 255, 53, 0.6);
    transform: scale(1.05);
}

.HeroFeaturesGrid8122 {
    display: flex;
    gap: 30px;
}

.FeatureCardBrenqi8122 {
    flex: 1;
    background-color: #1a1d23;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

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

.FeatureImg8122 {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.FeatureCardTitle8122 {
    padding: 20px 20px 10px;
    color: #CFFF35;
    font-size: 20px;
}

.FeatureCardText8122 {
    padding: 0 20px 25px;
    font-size: 14px;
    color: #909090;
}

/* SECTION TITLES */
.SectionTitleBrenqi8122 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-weight: 800;
}

.SectionTitleBrenqi8122::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #CFFF35;
    margin: 15px auto 0;
}

/* PRICES */
.PriceBrenqiAlpha8122 {
    padding: 100px 0;
    background-color: #0D0F14;
}

.PriceGridBrenqi8122 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.PriceCardBrenqi8122 {
    flex: 1;
    min-width: 260px;
    background-color: #1a1d23;
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(207, 255, 53, 0.1);
    display: flex;
    flex-direction: column;
}

.PriceDiscountLabel8122 {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #CFFF35;
    color: #0A0C10;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.PriceName8122 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.PriceValue8122 {
    font-size: 32px;
    color: #CFFF35;
    font-weight: 800;
    margin-bottom: 25px;
}

.PriceListBrenqi8122 {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.PriceListBrenqi8122 li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: #B0B0B0;
}

.PriceBtnBrenqi8122 {
    display: block;
    text-align: center;
    padding: 15px;
    border: 2px solid #CFFF35;
    color: #CFFF35;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.PriceBtnBrenqi8122:hover {
    background-color: #CFFF35;
    color: #0A0C10;
}

.FeaturedPrice8122 {
    border: 2px solid #CFFF35;
    transform: scale(1.05);
    z-index: 2;
}

/* REVIEWS */
.ReviewsBrenqiAlpha8122 {
    padding: 100px 0;
}

.ReviewsListBrenqi8122 {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.ReviewItemBrenqi8122 {
    flex: 1;
    min-width: 300px;
    background-color: #1a1d23;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #CFFF35;
}

.ReviewText8122 {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 20px;
}

.ReviewAuthor8122 {
    font-weight: 700;
    color: #CFFF35;
}

/* AUDIENCE */
.AudienceBrenqiAlpha8122 {
    padding: 100px 0;
    background-color: #0D0F14;
}

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

.AudienceIntro8122 {
    max-width: 800px;
    margin: 0 auto;
    color: #B0B0B0;
}

.AudienceGridBrenqi8122 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.AudienceItem8122 {
    padding: 20px;
    position: relative;
}

.AudienceNum8122 {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: rgba(207, 255, 53, 0.1);
    line-height: 1;
    margin-bottom: 10px;
}

.AudienceText8122 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.AudienceLine8122 {
    height: 2px;
    background: linear-gradient(90deg, #CFFF35, transparent);
    margin-top: 15px;
}

.AudienceCta8122 {
    margin-top: 60px;
    text-align: center;
}

.CtaPromoText8122 {
    font-size: 24px;
    color: #CFFF35;
    font-weight: 700;
}

/* EXPERT */
.ExpertBrenqiAlpha8122 {
    padding: 100px 0;
}

.ExpertQuoteBox8122 {
    display: flex;
    align-items: center;
    background-color: #1a1d23;
    padding: 60px;
    border-radius: 20px;
    gap: 40px;
}

.ExpertImage8122 {
    flex-shrink: 0;
}

.ExpertPic8122 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #CFFF35;
    object-fit: cover;
}

.ExpertQuote8122 {
    font-size: 22px;
    line-height: 1.5;
    font-style: italic;
    color: #E0E0E0;
}

.ExpertCite8122 {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    color: #CFFF35;
    font-style: normal;
    font-weight: 700;
}

/* BENEFITS */
.BenefitsBrenqiAlpha8122 {
    padding: 100px 0;
    background-color: #0D0F14;
}

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

.BenefitsTextSide8122 {
    flex: 1;
}

.BenefitsTextSide8122 .SectionTitleBrenqi8122 {
    text-align: left;
}

.BenefitsTextSide8122 .SectionTitleBrenqi8122::after {
    margin: 15px 0 0;
}

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

.BenefitsList8122 li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
    font-size: 16px;
}

.BenefitsList8122 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #CFFF35;
    font-weight: 800;
}

.BenefitsImageSide8122 {
    flex: 1;
}

.BenefitsImg8122 {
    width: 100%;
    border-radius: 10px;
}

/* FAQ */
.FaqBrenqiAlpha8122 {
    padding: 100px 0;
}

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

.FaqItem8122 {
    background-color: #1a1d23;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.FaqSummary8122 {
    padding: 20px 30px;
    cursor: pointer;
    font-weight: 700;
    color: #CFFF35;
    list-style: none;
    position: relative;
}

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

.FaqSummary8122::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 24px;
}

details[open] .FaqSummary8122::after {
    content: '-';
}

.FaqContent8122 {
    padding: 0 30px 25px;
    color: #B0B0B0;
}

/* EXTRA TEXT SECTIONS */
.ExtraTextBrenqiAlpha8122 {
    padding: 80px 0;
}

.AltBg8122 {
    background-color: #0D0F14;
}

.ExtraTextContent8122 {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    color: #B0B0B0;
}

.ExtraTextContent8122 p {
    margin-bottom: 25px;
}

.InTextList8122 {
    margin-top: 20px;
    padding-left: 20px;
}

.InTextList8122 li {
    margin-bottom: 10px;
    color: #CFFF35;
}

/* FORM SECTION */
.FormBrenqiAlpha8122 {
    padding: 100px 0;
}

.FormWrapper8122 {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1a1d23;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(207, 255, 53, 0.2);
}

.FormTitle8122 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.FormSubTitle8122 {
    text-align: center;
    color: #B0B0B0;
    margin-bottom: 40px;
}

.FormFieldGroup8122 {
    margin-bottom: 25px;
}

.FormLabel8122 {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #CFFF35;
}

.FormInput8122, .FormTextarea8122 {
    width: 100%;
    background-color: #0A0C10;
    border: 1px solid #333;
    padding: 15px;
    color: #E0E0E0;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.FormInput8122:focus, .FormTextarea8122:focus {
    border-color: #CFFF35;
}

.FormTextarea8122 {
    height: 120px;
    resize: none;
}

.FormCheckboxGroup8122 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
}

.CheckboxLabel8122 a {
    color: #CFFF35;
}

.FormBrenqiAlpha8122 .BtnMainBrenqi8122 {
    width: 100%;
}

/* FOOTER */
.FooterBrenqiAlpha8122 {
    padding: 80px 0 40px;
    background-color: #050608;
    border-top: 1px solid #1a1d23;
}

.FooterTop8122 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.FooterLogo8122 {
    font-size: 28px;
    font-weight: 900;
    color: #CFFF35;
}

.FooterContact8122 p {
    margin-bottom: 5px;
    font-size: 14px;
}

.FooterContact8122 a {
    color: #E0E0E0;
    text-decoration: none;
}

.FooterDivider8122 {
    height: 1px;
    background-color: rgba(255,255,255,0.05);
    margin-bottom: 40px;
}

.FooterBottom8122 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.Copyright8122 {
    font-size: 14px;
    color: #666;
}

.FooterLinks8122 a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: color 0.3s;
}

.FooterLinks8122 a:hover {
    color: #CFFF35;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .HeroContentWrapper8122 {
        flex-direction: column;
    }
    .HeroFeaturesGrid8122 {
        flex-direction: column;
    }
    .BenefitsRow8122 {
        flex-direction: column;
    }
    .ExpertQuoteBox8122 {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .BurgerBrenqi8122 {
        display: flex;
    }
    .NavBrenqiAlpha8122 {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #0A0C10;
        transition: 0.3s;
        z-index: 999;
    }
    .NavListBrenqi8122 {
        flex-direction: column;
        padding-top: 50px;
    }
    .NavLinkBrenqi8122, .NavBtnBrenqi8122 {
        margin: 15px 0;
        font-size: 18px;
    }
    .MenuToggleInput8122:checked ~ .NavBrenqiAlpha8122 {
        right: 0;
    }
    .HeroTitleBrenqi8122 {
        font-size: 32px;
    }
    .SectionTitleBrenqi8122 {
        font-size: 28px;
    }
    .FormWrapper8122 {
        padding: 30px 20px;
    }
}