/* RESET AND BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.BodyMainBlock {
    background-color: #0A0C10;
    color: #FFFFFF;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER STYLES */
.HdrContainerA {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
}

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

.LogoTextOnly {
    font-size: 28px;
    font-weight: 800;
    color: #CFFF35;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.NavLinkItemLt {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.NavLinkItemLt:hover {
    color: #CFFF35;
}

.PulsingLineD {
    height: 2px;
    background-color: #CFFF35;
    width: 100%;
    position: relative;
    box-shadow: 0 0 10px #CFFF35;
    animation: PulseLineAnim 2s infinite ease-in-out;
}

@keyframes PulseLineAnim {
    0% { opacity: 0.3; transform: scaleX(0.98); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0.3; transform: scaleX(0.98); }
}

/* BURGER MENU */
.MenuToggleInp {
    display: none;
}

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

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

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

.HeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.HeroImgObject {
    width: 100%;
    border-radius: 4px;
    display: block;
    object-fit: cover;
    box-shadow: 20px 20px 0px rgba(207, 255, 53, 0.1);
}

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

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

.HeroDescrPara {
    margin-bottom: 20px;
    color: #B0B0B0;
    font-size: 17px;
}

.PrimaryBtnLme {
    display: inline-block;
    background-color: #CFFF35;
    color: #0A0C10;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.PrimaryBtnLme:hover {
    box-shadow: 0 0 25px rgba(207, 255, 53, 0.6);
    transform: translateY(-2px);
}

/* DECORATIVE LINE */
.SectionLineDr {
    height: 1px;
    background: linear-gradient(90deg, transparent, #CFFF35, transparent);
    margin: 60px 0;
    opacity: 0.2;
}

/* FOR WHOM SECTION */
.SecTitleHtwoG {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

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

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

.WhoListItemKj {
    display: flex;
    align-items: flex-start;
    background: #15181E;
    padding: 25px;
    border-left: 4px solid #CFFF35;
}

.IconMarkerLm {
    width: 12px;
    height: 12px;
    background-color: #CFFF35;
    margin-right: 15px;
    margin-top: 6px;
    flex-shrink: 0;
    clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
}

.ListParaTextL {
    font-size: 16px;
}

/* PRICING BLOCK */
.PriceGridOpq {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.PriceCardRst {
    background: #15181E;
    padding: 40px;
    border: 1px solid #2A2E35;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.PriceCardRst:hover {
    border-color: #CFFF35;
}

.FeatureCardAb {
    position: relative;
    border: 1px solid #CFFF35;
    transform: scale(1.05);
}

.PopularTag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #CFFF35;
    color: #0A0C10;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 800;
}

.PriceNameUvw {
    font-size: 22px;
    margin-bottom: 15px;
}

.PriceValXyz {
    font-size: 38px;
    font-weight: 800;
    color: #CFFF35;
    margin-bottom: 30px;
}

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

.PriceFeatList li {
    padding: 10px 0;
    border-bottom: 1px solid #2A2E35;
    color: #B0B0B0;
    font-size: 15px;
}

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

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

/* BENEFITS BLOCK */
.SplitLayoutEf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.BeneListItemIj {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.GeneralImgSty {
    width: 100%;
    border-radius: 2px;
}

/* QUOTE SECTION */
.QuoteSectionKl {
    padding: 60px 0;
    background-color: #15181E;
}

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

.QuoteTextOp {
    font-size: 28px;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.4;
}

.QuoteAuthorQr {
    color: #CFFF35;
    font-size: 18px;
    font-weight: 700;
}

.AuthorRoleSt {
    color: #B0B0B0;
    font-weight: 400;
}

/* LARGE TEXT SECTIONS */
.LargeTextSectionSt {
    padding: 80px 0;
}

.ThreeColTextUv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.LongParaTextWx {
    color: #B0B0B0;
    margin-bottom: 15px;
    font-size: 16px;
    text-align: justify;
}

.ImgTextSideYz {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.SubHeaderGh {
    color: #CFFF35;
    margin: 30px 0 20px;
    font-size: 24px;
}

.InTextListCd {
    list-style: none;
    margin-bottom: 30px;
}

.InTextItemEf {
    padding: 10px 0;
    border-bottom: 1px solid #1a1c22;
    display: flex;
    align-items: center;
}

.InTextItemEf::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #CFFF35;
    margin-right: 15px;
    transform: rotate(45deg);
}

/* FAQ SECTION */
.FaqAccordionKl {
    max-width: 800px;
    margin: 0 auto;
}

.FaqDetailMn {
    margin-bottom: 15px;
    border: 1px solid #2A2E35;
}

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

.FaqSummaryOp::after {
    content: '+';
    color: #CFFF35;
    font-size: 24px;
}

.FaqDetailMn[open] .FaqSummaryOp::after {
    content: '-';
}

.FaqContentQr {
    padding: 0 20px 20px;
    color: #B0B0B0;
}

/* FORM SECTION */
.FormCardWrapperUv {
    background: #15181E;
    padding: 60px;
    max-width: 700px;
    margin: 0 auto;
    border-top: 5px solid #CFFF35;
}

.ContactFormWx {
    margin-top: 40px;
}

.InputGroupYz {
    margin-bottom: 25px;
}

.LabelStyleAb {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #CFFF35;
    text-transform: uppercase;
    font-weight: 700;
}

.InputFieldCd, .TextAreaFieldEf {
    width: 100%;
    background: #0A0C10;
    border: 1px solid #2A2E35;
    padding: 15px;
    color: #FFF;
    font-family: inherit;
}

.InputFieldCd:focus, .TextAreaFieldEf:focus {
    border-color: #CFFF35;
    outline: none;
}

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

.CheckInputIj {
    accent-color: #CFFF35;
    width: 18px;
    height: 18px;
}

.CheckLabelKl {
    font-size: 14px;
    color: #B0B0B0;
}

.InFormLink {
    color: #CFFF35;
}

.SubmitBtnLmeMn {
    width: 100%;
    background-color: #CFFF35;
    color: #0A0C10;
    padding: 20px;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
}

.SubmitBtnLmeMn:hover {
    box-shadow: 0 0 30px rgba(207, 255, 53, 0.4);
}

/* FOOTER */
.FooterBaseBlockOp {
    background: #050608;
    padding: 80px 0 40px;
    margin-top: 100px;
}

.FooterTopPartQr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1a1c22;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.FooterLogoSt {
    font-size: 24px;
    font-weight: 800;
    color: #CFFF35;
}

.FooterContactsUv {
    text-align: right;
}

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

.CopyTextAb {
    color: #555;
    font-size: 14px;
}

.FooterLinksCd {
    display: flex;
    gap: 20px;
}

.FootNavLinkEf {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.FootNavLinkEf:hover {
    color: #CFFF35;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .HeroContainer, .SplitLayoutEf, .ImgTextSideYz {
        grid-template-columns: 1fr;
    }
    .PriceGridOpq {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .FeatureCardAb {
        transform: scale(1);
    }
    .ThreeColTextUv {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .NavMenuLinks {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #0A0C10;
        height: calc(100vh - 80px);
        transition: 0.5s;
    }

    .NavListItemsB {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }

    .BurgerBtnWrap {
        display: flex;
    }

    .MenuToggleInp:checked ~ .NavMenuLinks {
        left: 0;
    }

    .MainTitleHone {
        font-size: 36px;
    }

    .WhoNeedsListI {
        grid-template-columns: 1fr;
    }

    .FormCardWrapperUv {
        padding: 30px;
    }

    .FooterTopPartQr {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .FooterContactsUv {
        text-align: center;
    }

    .FooterBottomPartYz {
        flex-direction: column;
        text-align: center;
    }
}

/* EXTRA DECORATION FOR LENGTH */
.DecorativeArrow {
    width: 60px;
    height: 60px;
    border-right: 4px solid #CFFF35;
    border-bottom: 4px solid #CFFF35;
    margin: 40px auto;
    transform: rotate(45deg);
    opacity: 0.5;
}