/* Базові налаштування */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-dark: #07090C;
    --bg-alt: #0C0F14;
    --cyan-main: #4FF7FF;
    --cyan-dim: #2A8B91;
    --text-white: #E0E0E0;
    --text-gray: #A0A0A0;
    --border-cyan: rgba(79, 247, 255, 0.3);
    --shadow-cyan: 0 0 15px rgba(79, 247, 255, 0.4);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER */
.FemoraCalmRT_HeaderWrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(7, 9, 12, 0.95);
    z-index: 1000;
}

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

.FemoraCalmRT_LogoBrand {
    font-size: 24px;
    font-weight: 800;
    color: var(--cyan-main);
    letter-spacing: 2px;
}

.FemoraCalmRT_CyanRail {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--cyan-main), transparent);
}

.FemoraCalmRT_NavMenu {
    display: flex;
}

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

.FemoraCalmRT_NavLink {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.FemoraCalmRT_NavLink:hover {
    color: var(--cyan-main);
}

.FemoraCalmRT_NavCheck, .FemoraCalmRT_BurgerBtn {
    display: none;
}

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

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

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

.FemoraCalmRT_HeroImageCol {
    flex: 1;
}

.FemoraCalmRT_MainHeroImg {
    width: 100%;
    border: 1px solid var(--border-cyan);
    border-radius: 4px;
}

.FemoraCalmRT_HeroGallery {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.FemoraCalmRT_SmallGallImg {
    width: calc(33.333% - 10px);
    border: 1px solid var(--border-cyan);
}

.FemoraCalmRT_HeroTextCol {
    flex: 1;
}

.FemoraCalmRT_HeroTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-white);
}

.FemoraCalmRT_HeroSub {
    font-size: 20px;
    color: var(--cyan-main);
    margin-bottom: 25px;
}

.FemoraCalmRT_HeroText {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.FemoraCalmRT_PrimaryBtn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--cyan-main);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.FemoraCalmRT_PrimaryBtn:hover {
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px);
}

/* REVIEWS SLIDER */
.FemoraCalmRT_ReviewsSection {
    padding: 80px 0;
    background-color: var(--bg-alt);
}

.FemoraCalmRT_SectTitle {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.FemoraCalmRT_SectTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--cyan-main);
}

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

.FemoraCalmRT_SlidesContainer {
    display: flex;
    transition: transform 0.5s ease;
}

.FemoraCalmRT_ReviewCard {
    min-width: 100%;
    padding: 40px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-cyan);
    text-align: center;
}

.FemoraCalmRT_Quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 20px;
}

.FemoraCalmRT_Author {
    color: var(--cyan-main);
    font-weight: 600;
}

.FemoraCalmRT_SlideRadio {
    display: none;
}

.FemoraCalmRT_SlideNav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.FemoraCalmRT_Dot {
    width: 12px;
    height: 12px;
    background-color: var(--bg-dark);
    border: 1px solid var(--cyan-main);
    cursor: pointer;
    border-radius: 50%;
}

#FemoraCalmRT_S1:checked ~ .FemoraCalmRT_SlidesContainer { transform: translateX(0%); }
#FemoraCalmRT_S2:checked ~ .FemoraCalmRT_SlidesContainer { transform: translateX(-100%); }
#FemoraCalmRT_S3:checked ~ .FemoraCalmRT_SlidesContainer { transform: translateX(-200%); }

#FemoraCalmRT_S1:checked ~ .FemoraCalmRT_SlideNav .FemoraCalmRT_Dot:nth-child(1),
#FemoraCalmRT_S2:checked ~ .FemoraCalmRT_SlideNav .FemoraCalmRT_Dot:nth-child(2),
#FemoraCalmRT_S3:checked ~ .FemoraCalmRT_SlideNav .FemoraCalmRT_Dot:nth-child(3) {
    background-color: var(--cyan-main);
}

/* PRICING */
.FemoraCalmRT_PriceSection {
    padding: 80px 0;
}

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

.FemoraCalmRT_PriceBox {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-cyan);
    display: flex;
    flex-direction: column;
}

.FemoraCalmRT_PriceHighlight {
    border: 2px solid var(--cyan-main);
    box-shadow: var(--shadow-cyan);
    transform: scale(1.05);
}

.FemoraCalmRT_PriceName {
    font-size: 20px;
    color: var(--cyan-main);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.FemoraCalmRT_PriceVal {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

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

.FemoraCalmRT_PriceList li {
    padding: 8px 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.FemoraCalmRT_PriceBtn {
    padding: 12px;
    text-align: center;
    border: 1px solid var(--cyan-main);
    color: var(--cyan-main);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.FemoraCalmRT_PriceBtn:hover {
    background-color: var(--cyan-main);
    color: var(--bg-dark);
}

/* BENEFIT */
.FemoraCalmRT_BenefitSection {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

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

.FemoraCalmRT_BenefitTextCol, .FemoraCalmRT_BenefitImageCol {
    flex: 1;
}

.FemoraCalmRT_SectTitleLeft {
    font-size: 36px;
    margin-bottom: 30px;
    border-left: 4px solid var(--cyan-main);
    padding-left: 20px;
}

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

.FemoraCalmRT_MarkerList li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

.FemoraCalmRT_Icon {
    color: var(--cyan-main);
    margin-right: 15px;
    font-weight: bold;
}

.FemoraCalmRT_SideImg {
    border: 1px solid var(--border-cyan);
}

/* TARGET AUDIENCE */
.FemoraCalmRT_TargetSection {
    padding: 80px 0;
    background-color: var(--bg-alt);
}

.FemoraCalmRT_TargetGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.FemoraCalmRT_TargetItem {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-dark);
    padding: 0;
    border: 1px solid var(--border-cyan);
    transition: transform 0.3s;
}

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

.FemoraCalmRT_TargetImg {
    width: 100%;
    height: 200px;
}

.FemoraCalmRT_TargetP {
    padding: 20px;
    font-size: 15px;
    text-align: center;
}

/* EXPERT */
.FemoraCalmRT_ExpertSection {
    padding: 100px 0;
}

.FemoraCalmRT_ExpertBox {
    background-color: var(--bg-alt);
    border-top: 2px solid var(--cyan-main);
    border-bottom: 2px solid var(--cyan-main);
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.FemoraCalmRT_ExpertQuote {
    font-size: 24px;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.FemoraCalmRT_ExpertQuote::before {
    content: "“";
    font-size: 80px;
    color: var(--cyan-dim);
    position: absolute;
    top: -40px;
    left: -20px;
    opacity: 0.3;
}

.FemoraCalmRT_ExpertInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.FemoraCalmRT_ExpertAvatar {
    border-radius: 50%;
    border: 2px solid var(--cyan-main);
}

.FemoraCalmRT_ExpertName {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.FemoraCalmRT_ExpertRole {
    font-size: 14px;
    color: var(--text-gray);
}

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

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

.FemoraCalmRT_FaqItem {
    background-color: var(--bg-alt);
    margin-bottom: 10px;
    border: 1px solid rgba(79, 247, 255, 0.1);
}

.FemoraCalmRT_FaqSumm {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--cyan-main);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.FemoraCalmRT_FaqSumm::after {
    content: '+';
    font-size: 20px;
}

.FemoraCalmRT_FaqItem[open] .FemoraCalmRT_FaqSumm::after {
    content: '-';
}

.FemoraCalmRT_FaqText {
    padding: 0 20px 20px;
    color: var(--text-gray);
    font-size: 15px;
}

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

.FemoraCalmRT_TextSection p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-gray);
}

.FemoraCalmRT_BgAlt {
    background-color: var(--bg-alt);
}

/* FORM */
.FemoraCalmRT_FormSection {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.FemoraCalmRT_FormFlex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.FemoraCalmRT_FormTextCol {
    flex: 1;
}

.FemoraCalmRT_ContactInfo {
    margin-top: 40px;
}

.FemoraCalmRT_ContactInfo p {
    margin-bottom: 10px;
}

.FemoraCalmRT_ContactInfo strong {
    color: var(--cyan-main);
}

.FemoraCalmRT_FormBoxCol {
    flex: 1;
    background-color: var(--bg-alt);
    padding: 40px;
    border: 1px solid var(--border-cyan);
}

.FemoraCalmRT_InputGrp {
    margin-bottom: 20px;
}

.FemoraCalmRT_Label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--cyan-main);
}

.FemoraCalmRT_Input, .FemoraCalmRT_Textarea {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: white;
    outline: none;
}

.FemoraCalmRT_Input:focus, .FemoraCalmRT_Textarea:focus {
    border-color: var(--cyan-main);
}

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

.FemoraCalmRT_CheckLabel {
    font-size: 13px;
    color: var(--text-gray);
}

.FemoraCalmRT_CheckLabel a {
    color: var(--cyan-main);
}

.FemoraCalmRT_FullWidth {
    width: 100%;
}

/* FOOTER */
.FemoraCalmRT_FooterWrap {
    padding: 60px 0;
    border-top: 1px solid rgba(79, 247, 255, 0.2);
    background-color: var(--bg-alt);
}

.FemoraCalmRT_FooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.FemoraCalmRT_FooterMail {
    color: var(--cyan-main);
    font-weight: 600;
}

.FemoraCalmRT_FooterBot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-gray);
    flex-wrap: wrap;
    gap: 20px;
}

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

.FemoraCalmRT_FooterLinks a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.FemoraCalmRT_FooterLinks a:hover {
    color: var(--cyan-main);
}

/* ADAPTIVITY */
@media (max-width: 992px) {
    .FemoraCalmRT_HeroFlex, .FemoraCalmRT_BenefitFlex, .FemoraCalmRT_FormFlex {
        flex-direction: column;
    }
    
    .FemoraCalmRT_HeroTitle {
        font-size: 36px;
    }
    
    .FemoraCalmRT_PriceHighlight {
        transform: none;
    }
}

@media (max-width: 768px) {
    .FemoraCalmRT_BurgerBtn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
    }
    
    .FemoraCalmRT_BurgerBtn span {
        height: 3px;
        width: 100%;
        background-color: var(--cyan-main);
        transition: 0.3s;
    }
    
    .FemoraCalmRT_NavMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        display: none;
        padding: 40px 20px;
        border-bottom: 1px solid var(--cyan-main);
    }
    
    .FemoraCalmRT_NavList {
        flex-direction: column;
        text-align: center;
    }
    
    .FemoraCalmRT_NavCheck:checked ~ .FemoraCalmRT_NavMenu {
        display: block;
    }

    .FemoraCalmRT_FooterBot, .FemoraCalmRT_FooterTop {
        flex-direction: column;
        text-align: center;
    }
}