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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #060708; /* Глибокий чорний карбон */
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* HEADER */
.ZyXwVuTsRqPoNm {
    background-color: #0a0b0d;
    border-bottom: 2px solid #FFC55E; /* Амбер-лінія */
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.LogoBrandNameTs {
    font-size: 24px;
    font-weight: 800;
    color: #FFC55E;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.NavMenuWrapperPo {
    display: flex;
}

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

.NavLinkItemXy {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.NavLinkItemXy:hover {
    color: #FFC55E;
}

/* BURGER MENU (No JS) */
.MenuToggleInputXy {
    display: none;
}

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

.MenuBtnIconRk span {
    width: 25px;
    height: 3px;
    background-color: #FFC55E;
    border-radius: 2px;
}

@media (max-width: 992px) {
    .MenuBtnIconRk {
        display: flex;
    }

    .NavMenuWrapperPo {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0a0b0d;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
        border-bottom: 2px solid #FFC55E;
    }

    .NavListItemsUv {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .MenuToggleInputXy:checked ~ .NavMenuWrapperPo {
        display: flex;
    }
}

/* HERO SECTION */
.HeroSectionOuterAs {
    padding: 80px 0;
    position: relative;
}

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

.HeroImageSideGh {
    flex: 1;
    display: flex;
    justify-content: center;
}

.HeroImgElementJk {
    box-shadow: 0 0 30px rgba(255, 197, 94, 0.1);
    border: 1px solid #1a1a1a;
    object-fit: cover;
}

.HeroTextSideLm {
    flex: 1.2;
}

.HeroTitleTextNp {
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.HeroSubtitleTextQr {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 35px;
}

.HeroInfoBlockSt {
    margin-bottom: 25px;
    border-left: 3px solid #FFC55E;
    padding-left: 20px;
}

.HeroSmallTitleUv {
    color: #FFC55E;
    font-size: 20px;
    margin-bottom: 8px;
}

.HeroParagraphWx {
    font-size: 16px;
    color: #b0b0b0;
}

.BtnPrimaryAmberYz {
    display: inline-block;
    padding: 15px 35px;
    background-color: #FFC55E;
    color: #060708;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255, 197, 94, 0.3);
}

.BtnPrimaryAmberYz:hover {
    background-color: #ffd285;
    box-shadow: 0 0 20px #FFC55E;
    transform: translateY(-2px);
}

/* SECTION TITLES */
.SectionTitleGoldEf {
    font-size: 34px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.SectionTitleGoldEf::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFC55E;
}

/* REVIEWS */
.ReviewsSectionOuterAb {
    padding: 100px 0;
    background-color: #08090b;
}

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

.ReviewCardItemIj {
    background-color: #111214;
    padding: 30px;
    border-radius: 10px;
    flex: 1 1 350px;
    max-width: 400px;
    border: 1px solid #1a1a1a;
    transition: 0.3s;
}

.ReviewCardItemIj:hover {
    border-color: #FFC55E;
}

.ReviewTextContentKl {
    font-style: italic;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.ReviewAuthorInfoMn {
    color: #FFC55E;
    font-weight: 600;
}

/* PRICE LIST */
.PriceSectionOuterOp {
    padding: 100px 0;
}

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

.PriceCardBoxSt {
    background-color: #111214;
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    border: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
}

.FeaturedPriceCard {
    border: 2px solid #FFC55E;
    transform: scale(1.05);
    background-color: #151618;
}

.PriceNameTextUv {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ffffff;
}

.PriceValueNumWx {
    font-size: 28px;
    font-weight: 800;
    color: #FFC55E;
    margin-bottom: 25px;
}

.OldPriceSt {
    display: block;
    font-size: 16px;
    text-decoration: line-through;
    color: #666;
    font-weight: 400;
}

.PriceFeaturesListYz {
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.PriceFeaturesListYz li {
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
    color: #b0b0b0;
    font-size: 14px;
}

.PriceFeaturesListYz li::before {
    content: '→';
    color: #FFC55E;
    margin-right: 10px;
}

.BtnSecondaryDarkAb {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #FFC55E;
    color: #FFC55E;
    font-weight: 600;
    border-radius: 4px;
}

.BtnSecondaryDarkAb:hover {
    background-color: #FFC55E;
    color: #060708;
}

/* FOR WHOM */
.ForWhomSectionOuterCd {
    padding: 100px 0;
    background-color: #08090b;
}

.ForWhomIntroTextEf {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.ForWhomItemBoxIj {
    flex: 1 1 280px;
    background-color: #111214;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.AmberLineDecorKl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFC55E, transparent);
}

.ForWhomItemTextMn {
    color: #e0e0e0;
}

/* PRACTITIONER */
.PractitionerSectionOuterOp {
    padding: 100px 0;
}

.PractitionerQuoteWrapSt {
    max-width: 900px;
    margin: 0 auto;
    background-color: #111214;
    padding: 50px;
    border-radius: 20px;
    box-shadow: inset 0 0 50px rgba(255,197,94,0.05);
}

.QuoteTextContentUv {
    font-size: 24px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 40px;
    font-style: italic;
    text-align: center;
}

/* BENEFITS */
.BenefitsSectionOuterEf {
    padding: 100px 0;
    background-color: #08090b;
}

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

.BenefitsTextColIj {
    flex: 1.2;
}

.BenefitsIntroTextKl {
    margin-bottom: 30px;
    font-size: 18px;
}

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

.BenefitsLiItemOp {
    padding-left: 30px;
    position: relative;
}

.BenefitsLiItemOp::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #FFC55E;
    font-size: 20px;
}

.BenefitsImageColQr {
    flex: 1;
}

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

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

.FaqDetailsBoxYz {
    background-color: #111214;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #1a1a1a;
}

.FaqSummaryTitleAb {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.FaqDetailsBoxYz[open] .FaqSummaryTitleAb::after {
    content: '-';
}

.FaqAnswerTextCd {
    padding: 0 20px 20px;
    color: #b0b0b0;
    border-top: 1px solid #1a1a1a;
    padding-top: 15px;
}

/* FORM */
.FormSectionOuterEf {
    padding: 100px 0;
    background-color: #0a0b0d;
}

.FormLayoutGridGh {
    display: flex;
    gap: 60px;
}

.FormTitleColIj {
    flex: 1;
}

.FormSubtitleTextKl {
    font-size: 18px;
    margin-bottom: 30px;
}

.ContactDetailsBoxMn p {
    margin-bottom: 10px;
    color: #b0b0b0;
}

.FormActionColOp {
    flex: 1;
    background-color: #111214;
    padding: 40px;
    border-radius: 10px;
}

.FormGroupItemSt {
    margin-bottom: 20px;
}

.FormLabelTextUv {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #FFC55E;
}

.FormInputControlWx {
    width: 100%;
    padding: 12px;
    background-color: #060708;
    border: 1px solid #1a1a1a;
    color: #ffffff;
    border-radius: 4px;
}

.FormInputControlWx:focus {
    outline: none;
    border-color: #FFC55E;
}

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

.CheckboxLabelCd {
    font-size: 14px;
    color: #b0b0b0;
}

.CheckboxLabelCd a {
    color: #FFC55E;
}

.FormSubmitBtnEf {
    width: 100%;
    cursor: pointer;
    border: none;
}

/* EXTRA SECTIONS */
.ExtraSectionOneGh, .ExtraSectionTwoOp, .ExtraSectionThreeYz {
    padding: 100px 0;
}

.ExtraSectionTwoOp {
    background-color: #08090b;
}

.ExtraParaTextKl {
    margin-bottom: 20px;
    color: #b0b0b0;
    font-size: 17px;
}

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

.ExtraTextMirrorSt {
    flex: 1.2;
}

.ExtraImageMirrorUv {
    flex: 1;
}

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

.ExtraColItemCd {
    flex: 1;
    background-color: #111214;
    padding: 30px;
    border-radius: 10px;
}

.ExtraSmallTitleEf {
    color: #FFC55E;
    margin-bottom: 15px;
}

/* FOOTER */
.FooterSectionOuterGh {
    padding: 60px 0;
    background-color: #050505;
    border-top: 1px solid #1a1a1a;
}

.FooterMainContentIj {
    text-align: center;
}

.FooterBrandTextKl {
    font-size: 20px;
    font-weight: 700;
    color: #FFC55E;
    margin-bottom: 15px;
}

.FooterCopyrightMn {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.FooterEmailLn {
    margin-bottom: 25px;
}

.FooterEmailLn a {
    color: #e0e0e0;
}

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

.FooterLinkItemQr {
    font-size: 13px;
    color: #888;
}

.FooterLinkItemQr:hover {
    color: #FFC55E;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .HeroContentGridDf, .BenefitsGridWrapGh, .FormLayoutGridGh, .ExtraFlexMirrorQr, .ExtraColumnsWrapAb {
        flex-direction: column;
    }
    
    .HeroTitleTextNp {
        font-size: 32px;
    }
    
    .SectionTitleGoldEf {
        font-size: 28px;
    }

    .FeaturedPriceCard {
        transform: scale(1);
    }
}