/* ===========================
   ./assets/style.css (FULL)
   =========================== */

/* ---- Design Tokens ---- */
:root {
    --obsidian: #050607;
    --neon-cyan: #5AF3FF;
    --text-gray: #b0b0b0;
    --text-white: #ffffff;
    --neon-glow: 0 0 10px rgba(90, 243, 255, 0.5);
    --neon-strong: 0 0 20px rgba(90, 243, 255, 0.8);

    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.10);
    --line-soft: rgba(90, 243, 255, 0.10);
}

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

html { scroll-behavior: smooth; }

.BodyClassXyzA {
    background-color: var(--obsidian);
    color: var(--text-white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   HEADER
   =========================== */
.HeaderWrapperB {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 6, 7, 0.90);
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 5px 15px rgba(90, 243, 255, 0.20);
    backdrop-filter: blur(10px);
}

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

.LogoTextOnlyD2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--neon-glow);
    white-space: nowrap;
}

.NavMenuContI7 {
    display: flex;
    align-items: center;
}

.NavListItemsJ8 {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.NavListItemsJ8 li { display: block; }

.NavLinkAnchorM11 {
    display: inline-block;
    text-decoration: none;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
    padding: 8px 2px;
}

.NavLinkAnchorM11:hover {
    color: var(--neon-cyan);
    text-shadow: var(--neon-glow);
}

/* Burger */
.BurgerCheckF4 { display: none; }

.BurgerLabelG5 {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
}

.BurgerLineH6 {
    width: 30px;
    height: 3px;
    background: var(--neon-cyan);
    box-shadow: var(--neon-glow);
    border-radius: 2px;
}

/* ===========================
   HERO
   =========================== */
.HeroSectionT18 {
    padding: 150px 20px 80px;
    position: relative;
    overflow: hidden;
}

.CyberGridH32 {
    position: absolute;
    inset: 0;
    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;
}

.QuickLinksV20 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.QuickBtnW21 {
    padding: 8px 20px;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s;
    background: rgba(90, 243, 255, 0.02);
}

.QuickBtnW21:hover {
    background: var(--neon-cyan);
    color: var(--obsidian);
    box-shadow: var(--neon-glow);
}

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

.HeroImageColZ24 { flex: 1; }

.HeroImgTagA25 {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(90, 243, 255, 0.30);
    box-shadow: 18px 18px 0px rgba(90, 243, 255, 0.90);
    display: block;
}

.HeroTextColB26 { flex: 1; }

.HeroTitleH1C27 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-white);
}

.HeroSubTitleD28 {
    font-size: 20px;
    color: var(--neon-cyan);
    margin-bottom: 18px;
    font-weight: 600;
}

.HeroDescP_E29 {
    color: var(--text-gray);
    margin-bottom: 14px;
}

.HeroCtaWrapF30 { margin-top: 28px; }

.MainCtaBtnG31 {
    display: inline-block;
    padding: 18px 45px;
    background: var(--neon-cyan);
    color: var(--obsidian);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: var(--neon-glow);
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.MainCtaBtnG31:hover {
    box-shadow: var(--neon-strong);
    transform: translateY(-2px);
}

/* ===========================
   SECTION TITLES
   =========================== */
.SectionTitleJ34 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 0 20px;
}

.TitleH2K35 {
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.NeonLineL36 {
    width: 80px;
    height: 4px;
    background: var(--neon-cyan);
    margin: 0 auto;
    box-shadow: var(--neon-glow);
    border-radius: 3px;
}

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

.AudienceIntroM37 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-gray);
}

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

.AudienceItemO39 {
    flex: 1 1 calc(25% - 20px);
    min-width: 250px;
    padding: 28px;
    border: 1px solid rgba(90, 243, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    transition: 0.25s;
    border-radius: 14px;
}

.AudienceItemO39:hover {
    border-color: var(--neon-cyan);
    box-shadow: inset 0 0 15px rgba(90, 243, 255, 0.10);
}

.AudienceNumP40 {
    font-size: 40px;
    font-weight: 900;
    color: rgba(90, 243, 255, 0.12);
    position: absolute;
    top: 10px;
    right: 15px;
    user-select: none;
}

.AudienceTxtQ41 {
    font-size: 16px;
    position: relative;
    z-index: 1;
}

/* ===========================
   PRICING
   =========================== */
.PricingSecR42 {
    max-width: 1300px;
    margin: 100px auto;
    padding: 80px 20px;
    border: 1px solid rgba(90, 243, 255, 0.20);
    background: rgba(90, 243, 255, 0.02);
    border-radius: 18px;
}

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

.PriceCardT44 {
    flex: 1 1 230px;
    max-width: 320px;
    padding: 40px 25px;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: 0.25s;
    background: var(--obsidian);
    border-radius: 16px;
}

.PriceCardT44:hover {
    transform: translateY(-6px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 22px rgba(90,243,255,0.08);
}

.PriceFeaturedA51 {
    border: 2px solid var(--neon-cyan);
    box-shadow: var(--neon-glow);
}

.PriceNameU45 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--neon-cyan);
    font-weight: 700;
}

.PriceValueV46 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 18px;
}

.OldPriceW47 {
    display: block;
    font-size: 15px;
    text-decoration: line-through;
    color: var(--text-gray);
    font-weight: 400;
    margin-top: 6px;
}

.PriceListX48 {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
    padding-left: 0;
}

.PriceListItemY49 {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

.PriceListItemY49::before {
    content: "⚡";
    margin-right: 8px;
    color: var(--neon-cyan);
}

.PriceBtnZ50 {
    display: block;
    padding: 12px;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s;
    border-radius: 10px;
}

.PriceBtnZ50:hover {
    background: var(--neon-cyan);
    color: var(--obsidian);
    box-shadow: var(--neon-glow);
}

.FeaturedBtnB52 {
    background: var(--neon-cyan);
    color: var(--obsidian);
}

/* ===========================
   BENEFITS
   =========================== */
.BenefitsSecC53 {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

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

.BenefitsTextColE55 { flex: 1; }

.BenefitsIntroF56 {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.BenefitsListG57 { list-style: none; }

.BenefitsItemH58 {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-white);
}

.BenefitsItemH58::after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--neon-glow);
}

.BenefitsImgColI59 { flex: 1; }

.BenefitsImgJ60 {
    width: 100%;
    border-radius: 14px;
    filter: grayscale(0.35) contrast(1.12);
    border: 1px solid rgba(90,243,255,.18);
    display: block;
}

/* ===========================
   EXPERT
   =========================== */
.ExpertSecK61 {
    background: rgba(90, 243, 255, 0.03);
    padding: 80px 20px;
    border-top: 1px solid rgba(90,243,255,.10);
    border-bottom: 1px solid rgba(90,243,255,.10);
}

.ExpertQuoteBoxL62 {
    max-width: 860px;
    margin: 0 auto 40px;
    text-align: center;
}

.ExpertQuoteM63 {
    font-size: 24px;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 16px;
}

.ExpertNameN64 {
    color: var(--neon-cyan);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.ExpertDetailsO65 {
    max-width: 860px;
    margin: 0 auto;
}

.ExpertDetailsItemP66 {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    border-left: 3px solid var(--neon-cyan);
    border-radius: 10px;
    overflow: hidden;
}

.ExpertSummaryQ67 {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 700;
}

.ExpertDetailsTxtR68 {
    padding: 15px 20px;
    color: var(--text-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.ContentFullT70 p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.SubTitleH3U71 {
    color: var(--neon-cyan);
    margin: 30px 0 15px;
}

.ContentListV72 {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-gray);
}

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

/* ===========================
   FAQ
   =========================== */
.FaqSecY75 {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
}

.FaqAccordionZ76 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.FaqItemA77 {
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    overflow: hidden;
}

.FaqSummaryB78 {
    padding: 20px;
    cursor: pointer;
    background: rgba(90, 243, 255, 0.02);
    font-weight: 800;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.FaqSummaryB78::after {
    content: "+";
    color: var(--neon-cyan);
    font-size: 18px;
    font-weight: 900;
}

.FaqContentC79 {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--text-gray);
}

/* ===========================
   FORM
   =========================== */
.FormSecD80 {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--obsidian), #0a0e12);
}

.FormContE81 {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(5, 6, 7, 0.8);
    padding: 50px;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.10);
    border-radius: 16px;
}

.FormSubP_F82 {
    color: var(--text-gray);
    margin-top: 10px;
    margin-bottom: 30px;
}

.FormRowH84 { margin-bottom: 20px; }

.FormLabelI85 {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--neon-cyan);
    font-weight: 700;
}

.FormInputJ86,
.FormTextareaK87 {
    width: 100%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 15px;
    color: #fff;
    outline: none;
    transition: 0.25s;
    border-radius: 10px;
}

.FormInputJ86:focus,
.FormTextareaK87:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.2);
}

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

.CheckRowL88 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 8px;
}

.PolicyLinkP92 {
    color: var(--neon-cyan);
    text-decoration: none;
}

.PolicyLinkP92:hover { text-shadow: var(--neon-glow); }

.SubmitBtnQ93 {
    width: 100%;
    padding: 18px;
    background: var(--neon-cyan);
    border: none;
    color: var(--obsidian);
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
    border-radius: 10px;
}

.SubmitBtnQ93:hover {
    box-shadow: var(--neon-strong);
    transform: translateY(-1px);
}

/* ===========================
   FOOTER
   =========================== */
.FooterWrapperR94 {
    padding: 60px 20px;
    border-top: 1px solid rgba(90, 243, 255, 0.20);
    text-align: center;
    background: var(--obsidian);
}

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

.FooterBrandT96 {
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--text-white);
}

.FooterMailU97,
.FooterPhoneW99 {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.MailLinkV98 {
    color: var(--neon-cyan);
    text-decoration: none;
}

.MailLinkV98:hover { text-shadow: var(--neon-glow); }

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

.FooterLnkY101 {
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
    transition: 0.25s;
}

.FooterLnkY101:hover { color: var(--neon-cyan); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 992px) {
    .HeroContainerY23,
    .BenefitsContE81 {
        flex-direction: column;
    }

    .HeroTitleH1C27 { font-size: 36px; }

    .AudienceItemO39 { flex: 1 1 calc(50% - 20px); }

    .HeroImgTagA25 { box-shadow: 12px 12px 0px rgba(90, 243, 255, 0.85); }
}

@media (max-width: 768px) {
    .BurgerLabelG5 { display: flex; }

    .NavMenuContI7 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--obsidian);
        flex-direction: column;
        display: none;
        padding: 20px;
        border-bottom: 1px solid var(--neon-cyan);
    }

    .NavListItemsJ8 {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    /* Toggle MUST be exactly this id in HTML: id="BurgerToggleE3" */
    #BurgerToggleE3:checked ~ .NavMenuContI7 { display: flex; }

    .FormContE81 { padding: 30px 20px; }
}

@media (max-width: 520px) {
    .AudienceItemO39 { flex: 1 1 100%; }
    .HeroSectionT18 { padding: 130px 16px 70px; }
}