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

:root {
    --bg-color: #120014;
    --primary-lava: #FF4FD8;
    --text-white: #ffffff;
    --text-gray: #b1a2b5;
    --accent-glow: rgba(255, 79, 216, 0.4);
    --darker-lava: #8e2b7a;
    --border-lava: 2px solid #FF4FD8;
}

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

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

/* HEADER STYLE */
header.Mnopqrstuvwx {
    background: rgba(18, 0, 20, 0.95);
    border-bottom: 1px solid var(--primary-lava);
    box-shadow: 0 4px 20px var(--accent-glow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.Yzabcdefghij {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Klhgfdsaqwerty {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-lava);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.NavLinkItem {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.NavLinkItem:hover {
    color: var(--primary-lava);
}

/* BURGER MENU (NO JS) */
.MenuCheckbox {
    display: none;
}

.MenuBtnLabel {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.MenuBtnLabel span, .MenuBtnLabel span::before, .MenuBtnLabel span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-lava);
    transition: 0.3s;
}

.MenuBtnLabel span { top: 50%; transform: translateY(-50%); }
.MenuBtnLabel span::before { top: -8px; }
.MenuBtnLabel span::after { top: 8px; }

/* HERO SECTION */
.HeroWrapperCl {
    padding: 100px 0;
    background: radial-gradient(circle at center, #2b0030 0%, #120014 100%);
    position: relative;
}

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

.HeroImageGallery {
    flex: 1;
    min-width: 350px;
}

.HeroMainImg {
    width: 100%;
    border-radius: 20px;
    border: var(--border-lava);
    box-shadow: 0 0 30px var(--accent-glow);
    margin-bottom: 20px;
}

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

.HeroThumbImg {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--primary-lava);
    transition: transform 0.3s ease;
}

.HeroThumbImg:hover {
    transform: scale(1.05);
}

.HeroTextContainer {
    flex: 1.2;
    min-width: 350px;
}

.HeroTitleH1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-lava);
    text-shadow: 0 0 10px var(--accent-glow);
}

.HeroSubTitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.HeroDescription {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-white);
}

.HeroCtaButton {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--primary-lava);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    box-shadow: 0 0 15px var(--primary-lava);
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px var(--primary-lava); }
    50% { box-shadow: 0 0 30px var(--primary-lava); }
    100% { box-shadow: 0 0 15px var(--primary-lava); }
}

.HeroCtaButton:hover {
    background-color: #ff7be1;
    transform: translateY(-3px);
}

/* PRICES SECTION */
.PriceSectionWrap {
    padding: 80px 0;
    background: #0d000f;
    border-top: 2px solid var(--primary-lava);
    border-bottom: 2px solid var(--primary-lava);
}

.SectionTitleH2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-lava);
}

.PriceGridItems {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.PriceCardItem {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #1a011d;
    border: 1px solid #4d0042;
    padding: 40px 30px;
    border-radius: 15px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.PriceCardItem:hover {
    border-color: var(--primary-lava);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-10px);
}

.FeaturedCard {
    border: 2px solid var(--primary-lava);
    box-shadow: 0 0 25px var(--accent-glow);
    transform: scale(1.05);
}

.PriceCardTitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-white);
}

.PriceTag {
    text-align: center;
    margin-bottom: 25px;
}

.OldPrice {
    display: block;
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1rem;
}

.CurrentPrice {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-lava);
}

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

.PriceFeaturesList li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
}

.PriceFeaturesList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-lava);
}

.PriceOrderBtn {
    text-align: center;
    padding: 12px;
    border: 1px solid var(--primary-lava);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.PriceOrderBtn:hover {
    background: var(--primary-lava);
}

/* WHO IS IT FOR */
.WhoSectionWrap {
    padding: 100px 0;
}

.SectionIntroText {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-gray);
    font-size: 1.2rem;
}

.WhoListGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.WhoListItem {
    background: rgba(255, 79, 216, 0.05);
    padding: 25px;
    border-left: 4px solid var(--primary-lava);
    border-radius: 0 10px 10px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.WhoListIcon {
    color: var(--primary-lava);
    font-weight: bold;
    font-size: 1.4rem;
}

/* BENEFITS SECTION */
.BenefitsSectionWrap {
    padding: 80px 0;
    background: linear-gradient(to right, #1a011d, #120014);
}

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

.BenefitsTextSide {
    flex: 1;
    min-width: 350px;
}

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

.BenefitsUl li {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.BenefitsUl li strong {
    color: var(--primary-lava);
    display: block;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.BenefitsImageSide {
    flex: 1;
    min-width: 350px;
}

.BenefitsImage {
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

/* QUOTE SECTION */
.QuoteSectionWrap {
    padding: 100px 0;
    background: #0a000b;
}

.QuoteBoxContainer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border: 2px dashed var(--primary-lava);
    padding: 60px 40px;
    border-radius: 30px;
    position: relative;
}

.ExpertQuoteText {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 40px;
    line-height: 1.5;
}

.ExpertAvatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-lava);
    margin-bottom: 15px;
}

.ExpertName {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-lava);
}

.ExpertPosition {
    color: var(--text-gray);
    font-size: 1rem;
}

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

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

.FaqItem {
    background: #1a011d;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #33002b;
}

.FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-lava);
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.FaqSummary::after {
    content: '+';
    font-size: 1.5rem;
}

.FaqItem[open] .FaqSummary::after {
    content: '-';
}

.FaqContent {
    padding: 20px;
    border-top: 1px solid #33002b;
    color: var(--text-gray);
}

/* CONTACT FORM */
.ContactFormWrap {
    padding: 100px 0;
    background: #120014;
}

.FormLayout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.FormTextInfo {
    flex: 1;
    min-width: 300px;
}

.FormSubText {
    font-size: 1.1rem;
    margin: 20px 0;
    color: var(--text-gray);
}

.PhoneLink {
    color: var(--primary-lava);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

.MainContactForm {
    flex: 1.2;
    min-width: 300px;
    background: #1a011d;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.FormGroup {
    margin-bottom: 20px;
}

.FormLabel {
    display: block;
    margin-bottom: 8px;
    color: var(--text-white);
}

.FormInput, .FormTextarea {
    width: 100%;
    padding: 12px 15px;
    background: #0d000f;
    border: 1px solid #4d0042;
    color: white;
    border-radius: 5px;
    outline: none;
}

.FormInput:focus, .FormTextarea:focus {
    border-color: var(--primary-lava);
}

.FormTextarea {
    height: 120px;
    resize: vertical;
}

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

.CheckboxLabel {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.CheckboxLabel a {
    color: var(--primary-lava);
}

.FormSubmitBtn {
    width: 100%;
    padding: 15px;
    background: var(--primary-lava);
    border: none;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.FormSubmitBtn:hover {
    background: #ff7be1;
}

/* EXTRA TEXT SECTIONS */
.ExtraTextSectionOne, .ExtraTextSectionTwo, .ExtraTextSectionThree {
    padding: 80px 0;
}

.TextContentFull p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.InTextList {
    margin-top: 20px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.InTextList li {
    background: #1a011d;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--primary-lava);
    text-align: center;
}

/* FOOTER */
.FooterWrapperMain {
    background: #080009;
    padding: 60px 0 30px;
    border-top: 3px solid var(--primary-lava);
}

.FooterTopGrid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.FooterBrand .FooterLogo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-lava);
    display: block;
    margin-bottom: 15px;
}

.FooterContacts a {
    color: var(--primary-lava);
    text-decoration: none;
}

.FooterDivider {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid #33002b;
}

.FooterBottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

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

.FooterLinks a {
    color: var(--text-gray);
    text-decoration: none;
}

.FooterLinks a:hover {
    color: var(--primary-lava);
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .HeroTitleH1 { font-size: 2.5rem; }
    .HeroContentFlex, .BenefitsFlex, .FormLayout { flex-direction: column; }
    .HeroImageGallery, .HeroTextContainer, .BenefitsTextSide, .BenefitsImageSide, .FormTextInfo, .MainContactForm { width: 100%; }
}

@media (max-width: 768px) {
    .MenuBtnLabel { display: block; }
    .NavigationLk {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-color);
        transition: 0.4s;
    }
    .NavListItems {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .MenuCheckbox:checked ~ .NavigationLk { right: 0; }
    .MenuCheckbox:checked ~ .MenuBtnLabel span { background: transparent; }
    .MenuCheckbox:checked ~ .MenuBtnLabel span::before { transform: rotate(45deg); top: 0; }
    .MenuCheckbox:checked ~ .MenuBtnLabel span::after { transform: rotate(-45deg); top: 0; }
    
    .PriceCardItem.FeaturedCard { transform: scale(1); }
    .SectionTitleH2 { font-size: 2rem; }
}