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

body.xFMCR_BodyContainer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #050A18;
    color: #E0E6ED;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

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

ul {
    list-style: none;
}

/* HEADER */
.xFMCR_HeaderMain {
    background: rgba(5, 10, 24, 0.95);
    border-bottom: 1px solid rgba(106, 169, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(106, 169, 255, 0.1);
}

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

.xFMCR_LogoText {
    font-size: 1.5rem;
    font-weight: 800;
    color: #6AA9FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.xFMCR_NavList {
    display: flex;
    gap: 25px;
}

.xFMCR_NavLink {
    font-size: 0.9rem;
    font-weight: 500;
    color: #E0E6ED;
}

.xFMCR_NavLink:hover {
    color: #6AA9FF;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.5);
}

.xFMCR_MenuCheckbox, .xFMCR_BurgerBtn {
    display: none;
}

/* HERO SECTION */
.xFMCR_HeroSection {
    padding: 160px 0 80px;
}

.xFMCR_SectionBorderRed {
    border: 3px solid #FF4C4C;
    margin: 20px;
    border-radius: 12px;
    position: relative;
}

.xFMCR_HeroGrid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.xFMCR_HeroImageCol, .xFMCR_HeroTextCol {
    flex: 1;
    min-width: 300px;
}

.xFMCR_MainTitle {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.xFMCR_SubTitle {
    font-size: 1.2rem;
    color: #6AA9FF;
    margin-bottom: 25px;
    font-weight: 600;
}

.xFMCR_HeroDescription {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #B0C4DE;
}

/* BUTTONS */
.xFMCR_BtnPrimary {
    display: inline-block;
    background-color: #6AA9FF;
    color: #050A18;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
}

.xFMCR_BtnPrimary:hover {
    background-color: transparent;
    color: #6AA9FF;
    border-color: #6AA9FF;
    box-shadow: 0 0 20px rgba(106, 169, 255, 0.4);
}

.xFMCR_BtnSecondary {
    display: inline-block;
    background-color: transparent;
    color: #6AA9FF;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #6AA9FF;
}

.xFMCR_BtnSecondary:hover {
    background-color: #6AA9FF;
    color: #050A18;
}

/* REVIEWS SECTION */
.xFMCR_ReviewsSection {
    padding: 80px 0;
}

.xFMCR_SectionTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #FFFFFF;
}

.xFMCR_SliderWrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.xFMCR_SlidesContainer {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.xFMCR_ReviewCard {
    min-width: 100%;
    padding: 40px;
    background: #0D1426;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(106, 169, 255, 0.1);
}

.xFMCR_ReviewText {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.xFMCR_ReviewAuthor {
    display: block;
    color: #6AA9FF;
    font-weight: 600;
}

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

.xFMCR_ControlDot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1B2B48;
    cursor: pointer;
}

.xFMCR_RadioHidden {
    display: none;
}

#xFMCR_Slide1:checked ~ .xFMCR_SlidesContainer { transform: translateX(0); }
#xFMCR_Slide2:checked ~ .xFMCR_SlidesContainer { transform: translateX(-100%); }
#xFMCR_Slide3:checked ~ .xFMCR_SlidesContainer { transform: translateX(-200%); }

#xFMCR_Slide1:checked ~ .xFMCR_SliderControls label[for="xFMCR_Slide1"],
#xFMCR_Slide2:checked ~ .xFMCR_SliderControls label[for="xFMCR_Slide2"],
#xFMCR_Slide3:checked ~ .xFMCR_SliderControls label[for="xFMCR_Slide3"] {
    background: #6AA9FF;
    box-shadow: 0 0 10px #6AA9FF;
}

/* PRICE SECTION */
.xFMCR_PriceSection {
    padding: 80px 0;
}

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

.xFMCR_PriceCard {
    background: #0D1426;
    padding: 40px 30px;
    border-radius: 12px;
    width: calc(20% - 20px);
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(106, 169, 255, 0.1);
    transition: transform 0.3s ease;
}

.xFMCR_PriceCard:hover {
    transform: translateY(-10px);
}

.xFMCR_PriceCardFeatured {
    border: 2px solid #6AA9FF;
    background: #111E36;
}

.xFMCR_PriceName {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.xFMCR_PriceVal {
    font-size: 2rem;
    font-weight: 800;
    color: #6AA9FF;
    margin-bottom: 25px;
}

.xFMCR_PriceList {
    margin-bottom: 30px;
    text-align: center;
}

.xFMCR_PriceList li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #B0C4DE;
}

/* TARGET SECTION */
.xFMCR_TargetSection {
    padding: 80px 0;
}

.xFMCR_SectionIntro {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px;
    font-size: 1.2rem;
}

.xFMCR_TargetGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.xFMCR_TargetItem {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    background: #0D1426;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.xFMCR_TargetContent {
    padding: 30px;
}

.xFMCR_TargetContent h3 {
    margin-bottom: 15px;
    color: #6AA9FF;
}

.xFMCR_DetailedAudience {
    background: rgba(106, 169, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
}

.xFMCR_AudienceList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.xFMCR_AudienceList li {
    position: relative;
    padding-left: 25px;
}

.xFMCR_AudienceList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

/* EXPERT SECTION */
.xFMCR_ExpertSection {
    padding: 100px 0;
    background: radial-gradient(circle at center, #111E36 0%, #050A18 70%);
}

.xFMCR_ExpertCard {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    border-radius: 20px;
    background: rgba(13, 20, 38, 0.8);
    box-shadow: 0 0 50px rgba(106, 169, 255, 0.1);
    position: relative;
}

.xFMCR_QuoteIcon {
    font-size: 5rem;
    color: #6AA9FF;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 40px;
}

.xFMCR_ExpertQuote {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.4;
}

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

.xFMCR_ExpertName {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6AA9FF;
}

.xFMCR_ExpertTitle {
    font-size: 0.9rem;
    color: #B0C4DE;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BENEFITS SECTION */
.xFMCR_BenefitsSection {
    padding: 80px 0;
}

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

.xFMCR_BenefitsText, .xFMCR_BenefitsImgWrap {
    flex: 1;
    min-width: 300px;
}

.xFMCR_BenefitsList {
    margin: 30px 0;
}

.xFMCR_BenefitsList li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.xFMCR_BenefitsList strong {
    color: #6AA9FF;
}

/* FAQ SECTION */
.xFMCR_FaqSection {
    padding: 80px 0;
}

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

.xFMCR_FaqItem {
    background: #0D1426;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.xFMCR_FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    border-bottom: 1px solid rgba(106, 169, 255, 0.1);
}

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

.xFMCR_FaqSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #6AA9FF;
}

.xFMCR_FaqItem[open] .xFMCR_FaqSummary::after {
    content: '−';
}

.xFMCR_FaqContent {
    padding: 20px;
    color: #B0C4DE;
    font-size: 0.95rem;
}

/* TEXT SECTIONS */
.xFMCR_TextSection {
    padding: 100px 0;
}

.xFMCR_BgDarker {
    background: #03070F;
}

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

.xFMCR_TextContent p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #B0C4DE;
}

.xFMCR_CheckList {
    margin-top: 30px;
}

.xFMCR_CheckList li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.xFMCR_CheckList li::before {
    content: '●';
    color: #6AA9FF;
    font-size: 0.8rem;
}

/* FORM SECTION */
.xFMCR_FormSection {
    padding: 80px 0;
}

.xFMCR_FormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #0D1426;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(106, 169, 255, 0.2);
}

.xFMCR_FormSub {
    text-align: center;
    margin-bottom: 30px;
    color: #B0C4DE;
}

.xFMCR_FormGroup {
    margin-bottom: 20px;
}

.xFMCR_Label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.xFMCR_Input, .xFMCR_Textarea {
    width: 100%;
    padding: 12px 15px;
    background: #050A18;
    border: 1px solid rgba(106, 169, 255, 0.3);
    border-radius: 5px;
    color: white;
    font-family: inherit;
}

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

.xFMCR_Input:focus, .xFMCR_Textarea:focus {
    outline: none;
    border-color: #6AA9FF;
    box-shadow: 0 0 10px rgba(106, 169, 255, 0.2);
}

.xFMCR_CheckboxWrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.xFMCR_CheckboxLabel {
    font-size: 0.85rem;
    color: #B0C4DE;
}

.xFMCR_CheckboxLabel a {
    color: #6AA9FF;
    text-decoration: underline;
}

.xFMCR_BtnFull {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}

/* FOOTER */
.xFMCR_FooterMain {
    padding: 60px 0;
    background: #03070F;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
}

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

.xFMCR_FooterBrand p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #8B9BB4;
}

.xFMCR_FooterContacts a {
    color: #6AA9FF;
    font-weight: 600;
}

.xFMCR_FooterLinks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.xFMCR_FooterLink {
    font-size: 0.85rem;
    color: #8B9BB4;
}

.xFMCR_FooterLink:hover {
    color: #6AA9FF;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
    .xFMCR_PriceCard {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .xFMCR_MainTitle {
        font-size: 2.2rem;
    }

    .xFMCR_HeaderFlex {
        padding: 0 20px;
    }

    .xFMCR_BurgerBtn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
    }

    .xFMCR_BurgerBtn span {
        display: block;
        height: 3px;
        width: 100%;
        background: #6AA9FF;
        border-radius: 3px;
    }

    .xFMCR_NavMenu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #050A18;
        transition: 0.3s;
        padding: 40px 20px;
    }

    .xFMCR_NavList {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .xFMCR_MenuCheckbox:checked ~ .xFMCR_NavMenu {
        left: 0;
    }

    .xFMCR_PriceCard {
        width: calc(50% - 20px);
    }

    .xFMCR_HeroGrid, .xFMCR_BenefitsGrid {
        flex-direction: column-reverse;
    }

    .xFMCR_HeroImageCol {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .xFMCR_PriceCard {
        width: 100%;
    }

    .xFMCR_FormWrapper {
        padding: 30px 20px;
    }

    .xFMCR_ExpertQuote {
        font-size: 1.4rem;
    }
}