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

html {
    scroll-behavior: smooth;
}

body.BodyContainerAtlas {
    background-color: #02110C;
    color: #e5e7eb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.ContainerSmallAtlas {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Header & Navigation */
.HeaderMainAtlas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 17, 12, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 156, 0.1);
}

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

.HeaderGlassLayerAtlas {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #00FF9C, transparent);
    opacity: 0.3;
}

.LogoTextAtlas {
    font-size: 28px;
    font-weight: 800;
    color: #00FF9C;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 156, 0.5);
}

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

.NavLinkAtlas {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #94a3b8;
}

.NavLinkAtlas:hover {
    color: #00FF9C;
    text-shadow: 0 0 8px rgba(0, 255, 156, 0.8);
}

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

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

.BurgerLabelAtlas span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #00FF9C;
    transition: 0.3s;
}

/* Hero Section */
.HeroBlockAtlas {
    padding-top: 140px;
    padding-bottom: 80px;
}

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

.HeroImageWrapAtlas {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 156, 0.2);
}

.HeroMainImgAtlas {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.HeroOverlayAtlas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(2, 17, 12, 0.8), transparent);
}

.HeroTextWrapAtlas {
    flex: 1.2;
}

.HeroTitleAtlas {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
}

.HeroSubAtlas {
    font-size: 20px;
    color: #00FF9C;
    margin-bottom: 20px;
    font-weight: 500;
}

.HeroDescAtlas {
    margin-bottom: 15px;
    color: #94a3b8;
}

.MainBtnAtlas {
    display: inline-block;
    padding: 15px 40px;
    background-color: #00FF9C;
    color: #02110C;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 255, 156, 0.4);
    animation: PulseGlowAtlas 3s infinite;
}

@keyframes PulseGlowAtlas {
    0% { box-shadow: 0 0 10px rgba(0, 255, 156, 0.4); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 156, 0.7); }
    100% { box-shadow: 0 0 10px rgba(0, 255, 156, 0.4); }
}

.MainBtnAtlas:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 255, 156, 0.9);
}

/* Expert Section */
.ExpertBlockAtlas {
    padding: 100px 0;
    background: rgba(0, 255, 156, 0.03);
}

.ExpertCardAtlas {
    background: #031c15;
    border: 1px solid rgba(0, 255, 156, 0.2);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.QuoteIconAtlas {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 80px;
    color: #00FF9C;
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.ExpertQuoteAtlas {
    font-size: 22px;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.ExpertInfoAtlas {
    display: flex;
    flex-direction: column;
}

.ExpertNameAtlas {
    font-weight: 700;
    font-size: 20px;
    color: #00FF9C;
}

.ExpertTitleAtlas {
    font-size: 14px;
    color: #94a3b8;
}

/* General Text Sections */
.TextSectionAtlas {
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 255, 156, 0.05);
}

.SectionTitleAtlas {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.TextParagraphAtlas {
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 17px;
}

.SubTitleAtlas {
    font-size: 24px;
    margin: 35px 0 20px;
    color: #00FF9C;
}

.BulletListAtlas {
    margin-bottom: 30px;
}

.BulletListAtlas li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.BulletListAtlas li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00FF9C;
    font-weight: bold;
}

/* Benefits Section */
.BenefitsBlockAtlas {
    padding: 100px 0;
}

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

.BenefitsTextSideAtlas {
    flex: 1.5;
}

.BenefitsImageSideAtlas {
    flex: 1;
}

.BenefitsImgAtlas {
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 156, 0.1);
}

.BenefitsIntroAtlas {
    font-size: 18px;
    margin-bottom: 40px;
    color: #e5e7eb;
}

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

.BenefitItemAtlas {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 15px;
    border-left: 3px solid #00FF9C;
}

.BenefitIconAtlas {
    font-size: 12px;
    color: #00FF9C;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 2px;
}

.BenefitNameAtlas {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

.BenefitDescAtlas {
    font-size: 14px;
    color: #94a3b8;
}

/* Pricing Section */
.PricingBlockAtlas {
    padding: 100px 0;
    background: #010a08;
}

.TextCenterAtlas {
    text-align: center;
}

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

.PriceCardAtlas {
    background: #031c15;
    border: 1px solid rgba(0, 255, 156, 0.1);
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
}

.PriceCardAtlas:hover {
    border-color: #00FF9C;
    transform: translateY(-10px);
}

.RecommendedCardAtlas {
    border: 2px solid #00FF9C;
    position: relative;
    transform: scale(1.05);
    background: #04261d;
}

.BadgeAtlas {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00FF9C;
    color: #02110C;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.PriceTierAtlas {
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #94a3b8;
}

.PriceValueAtlas {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
}

.PriceValueAtlas span {
    font-size: 18px;
    font-weight: 400;
    color: #00FF9C;
}

.PriceFeaturesAtlas {
    margin-bottom: 40px;
    flex-grow: 1;
}

.PriceFeaturesAtlas li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #e5e7eb;
    display: flex;
    align-items: center;
}

.PriceFeaturesAtlas li::before {
    content: '✓';
    margin-right: 10px;
    color: #00FF9C;
}

.PriceBtnAtlas {
    text-align: center;
    padding: 12px;
    border: 1px solid #00FF9C;
    border-radius: 30px;
    color: #00FF9C;
    font-weight: 600;
}

.PriceBtnAtlas:hover {
    background: #00FF9C;
    color: #02110C;
}

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

.FaqListAtlas {
    margin-top: 50px;
}

.FaqItemAtlas {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 156, 0.1);
    padding-bottom: 15px;
}

.FaqSummaryAtlas {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

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

.FaqIconAtlas {
    width: 30px;
    height: 30px;
    background: #00FF9C;
    color: #02110C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.FaqContentAtlas {
    margin-top: 15px;
    padding-left: 45px;
    color: #94a3b8;
    font-size: 16px;
}

/* Target Audience / Cloud */
.TargetAudienceAtlas {
    padding: 80px 0;
    background: rgba(0, 255, 156, 0.02);
}

.TargetIntroAtlas {
    font-size: 18px;
    margin-bottom: 30px;
    color: #94a3b8;
}

.TagCloudAtlas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.TagItemAtlas {
    padding: 10px 25px;
    background: rgba(0, 255, 156, 0.1);
    border: 1px solid rgba(0, 255, 156, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: #00FF9C;
    transition: 0.3s;
}

.TagItemAtlas:hover {
    background: #00FF9C;
    color: #02110C;
    transform: scale(1.1);
}

/* Form Section */
.ContactBlockAtlas {
    padding: 100px 0;
}

.FormCardAtlas {
    background: linear-gradient(135deg, #031c15 0%, #02110C 100%);
    border: 1px solid rgba(0, 255, 156, 0.2);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.FormTitleAtlas {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.FormSubAtlas {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 40px;
}

.MainFormAtlas {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.FormGroupAtlas {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.FormGroupAtlas label {
    font-size: 14px;
    color: #00FF9C;
    font-weight: 600;
}

.FormInputAtlas, .FormTextareaAtlas {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 156, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.FormInputAtlas:focus, .FormTextareaAtlas:focus {
    border-color: #00FF9C;
    box-shadow: 0 0 10px rgba(0, 255, 156, 0.2);
}

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

.CheckboxGroupAtlas {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #94a3b8;
}

.CheckboxGroupAtlas a {
    color: #00FF9C;
    text-decoration: underline;
}

.SubmitBtnAtlas {
    background: #00FF9C;
    color: #02110C;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.SubmitBtnAtlas:hover {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Footer */
.FooterMainAtlas {
    padding: 80px 0 40px;
    background: #010806;
    border-top: 1px solid rgba(0, 255, 156, 0.1);
}

.FooterGridAtlas {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.FooterInfoAtlas {
    max-width: 400px;
}

.FooterInfoAtlas p {
    margin-top: 20px;
    color: #94a3b8;
}

.FooterContactsAtlas {
    text-align: right;
    color: #94a3b8;
}

.FooterDisclaimerAtlas {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.FooterBottomAtlas {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #64748b;
}

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

.FooterLinksAtlas a:hover {
    color: #00FF9C;
}

/* Responsive */
@media (max-width: 992px) {
    .HeroContentAtlas {
        flex-direction: column;
        text-align: center;
    }
    .HeroMainImgAtlas {
        height: 400px;
    }
    .BenefitsFlexAtlas {
        flex-direction: column;
    }
    .PricingGridAtlas {
        flex-wrap: wrap;
    }
    .PriceCardAtlas {
        max-width: 45%;
        flex: auto;
    }
}

@media (max-width: 768px) {
    .BurgerLabelAtlas {
        display: flex;
    }
    .NavContainerAtlas {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #02110C;
        transition: 0.4s;
        padding: 40px;
    }
    .NavListAtlas {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .BurgerInputAtlas:checked ~ .NavContainerAtlas {
        left: 0;
    }
    .BurgerInputAtlas:checked ~ .BurgerLabelAtlas span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .BurgerInputAtlas:checked ~ .BurgerLabelAtlas span:nth-child(2) {
        opacity: 0;
    }
    .BurgerInputAtlas:checked ~ .BurgerLabelAtlas span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .HeroTitleAtlas {
        font-size: 32px;
    }
    .BenefitsGridAtlas {
        grid-template-columns: 1fr;
    }
    .PriceCardAtlas {
        max-width: 100%;
        flex: auto;
    }
    .RecommendedCardAtlas {
        transform: none;
    }
    .FooterGridAtlas {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .FooterContactsAtlas {
        text-align: center;
    }
    .FooterBottomAtlas {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .FormCardAtlas {
        padding: 30px;
    }
}