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

html {
    scroll-behavior: smooth;
}

body.morlenaZfBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #050607;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* --- TYPOGRAPHY --- */
.morlenaZfSectH2 {
    font-size: 2.5rem;
    color: #5AF3FF;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.morlenaZfSectH2::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #5AF3FF;
    margin-right: 15px;
    box-shadow: 0 0 10px #5AF3FF;
    vertical-align: middle;
}

/* --- HEADER --- */
.morlenaZfHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 6, 7, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(90, 243, 255, 0.3);
}

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

.morlenaZfLogo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #5AF3FF;
    text-shadow: 0 0 8px rgba(90, 243, 255, 0.6);
}

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

.morlenaZfNavLink {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.morlenaZfNavLink:hover {
    color: #5AF3FF;
    text-shadow: 0 0 5px #5AF3FF;
}

.morlenaZfNavCheck, .morlenaZfBurger {
    display: none;
}

/* --- HERO SECTION --- */
.morlenaZfHeroSection {
    padding: 140px 0 80px;
    background-image: radial-gradient(circle at 20% 30%, rgba(90, 243, 255, 0.05) 0%, transparent 40%);
    position: relative;
}

.morlenaZfHeroSection::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(90,243,255,0.03) 1px, transparent 1px),
                linear-gradient(rgba(90,243,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

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

.morlenaZfHeroImgCol {
    flex: 1;
}

.morlenaZfHeroMainImg {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #5AF3FF;
    box-shadow: 0 0 25px rgba(90, 243, 255, 0.2);
    object-fit: cover;
}

.morlenaZfHeroTxtCol {
    flex: 1;
}

.morlenaZfHeroH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.morlenaZfHeroSub {
    font-size: 1.3rem;
    color: #5AF3FF;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.morlenaZfHeroP {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #ccc;
}

.morlenaZfHeroGallery {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.morlenaZfGalItem {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    border: 1px solid rgba(90, 243, 255, 0.5);
    object-fit: cover;
    transition: transform 0.3s;
}

.morlenaZfGalItem:hover {
    transform: scale(1.1) translateY(-5px);
    border-color: #5AF3FF;
    box-shadow: 0 0 15px #5AF3FF;
}

/* --- BUTTONS --- */
.morlenaZfBtnMain {
    display: inline-block;
    padding: 15px 35px;
    background-color: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid #5AF3FF;
    text-transform: uppercase;
    cursor: pointer;
}

.morlenaZfBtnMain:hover {
    box-shadow: 0 0 20px #5AF3FF;
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.morlenaZfBtnSec {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #5AF3FF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid #5AF3FF;
    text-transform: uppercase;
    cursor: pointer;
}

.morlenaZfBtnSec:hover {
    background-color: rgba(90, 243, 255, 0.1);
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.3);
}

/* --- PRICE SECTION --- */
.morlenaZfPriceSection {
    padding: 100px 0;
    background-color: #0a0c0e;
}

.morlenaZfPriceGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.morlenaZfPriceCard {
    background: #050607;
    border: 1px solid rgba(90, 243, 255, 0.2);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.morlenaZfPriceCard:hover {
    transform: translateY(-10px);
    border-color: #5AF3FF;
    box-shadow: 0 10px 30px rgba(90, 243, 255, 0.15);
}

.morlenaZfPriceFeatured {
    border: 2px solid #5AF3FF;
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.2);
    transform: scale(1.05);
}

.morlenaZfPriceTitle {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
}

.morlenaZfPriceValue {
    font-size: 2.2rem;
    font-weight: 800;
    color: #5AF3FF;
    margin-bottom: 2rem;
}

.morlenaZfPriceList {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.morlenaZfPriceList li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: #bbb;
}

.morlenaZfPriceList li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #5AF3FF;
    font-weight: bold;
}

/* --- WHO SECTION --- */
.morlenaZfWhoSection {
    padding: 100px 0;
}

.morlenaZfPhotoAbove {
    margin-bottom: 50px;
}

.morlenaZfWideImg {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 1px solid #5AF3FF;
}

.morlenaZfIntroP {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

.morlenaZfWhoGrid {
    background: rgba(90, 243, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px dashed rgba(90, 243, 255, 0.2);
}

.morlenaZfWhoList {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.morlenaZfWhoList li {
    padding: 15px;
    background: #0a0c0e;
    border-left: 4px solid #5AF3FF;
    border-radius: 0 8px 8px 0;
}

/* --- BENEFIT SECTION --- */
.morlenaZfBenefitSection {
    padding: 100px 0;
    background: #0a0c0e;
}

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

.morlenaZfBenefitTxt, .morlenaZfBenefitImg {
    flex: 1;
}

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

.morlenaZfCheckList {
    list-style: none;
}

.morlenaZfCheckList li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
}

.morlenaZfCheckList li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #5AF3FF;
    color: #050607;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.morlenaZfRoundImg {
    width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border: 2px solid #5AF3FF;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.2);
}

/* --- QUOTE SECTION --- */
.morlenaZfQuoteSection {
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(90, 243, 255, 0.08) 0%, transparent 70%);
}

.morlenaZfQuoteBox {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    border-top: 1px solid #5AF3FF;
    border-bottom: 1px solid #5AF3FF;
    position: relative;
}

.morlenaZfQuoteText {
    font-size: 2rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
}

.morlenaZfQuoteAuthor {
    font-size: 1.2rem;
    color: #5AF3FF;
    font-weight: bold;
    display: block;
}

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

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

.morlenaZfFaqItem {
    background: #0a0c0e;
    margin-bottom: 15px;
    border: 1px solid rgba(90, 243, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.morlenaZfFaqQuest::after {
    content: "+";
    font-size: 1.5rem;
}

.morlenaZfFaqItem[open] .morlenaZfFaqQuest::after {
    content: "−";
}

.morlenaZfFaqAns {
    padding: 0 25px 20px;
    color: #ccc;
    border-top: 1px solid rgba(90, 243, 255, 0.05);
}

/* --- TEXT CONTENT BLOCKS --- */
.morlenaZfTextSection {
    padding: 80px 0;
}

.morlenaZfBulList {
    margin: 20px 0;
    padding-left: 40px;
}

.morlenaZfBulList li {
    margin-bottom: 10px;
    color: #5AF3FF;
}

.morlenaZfAccentBox {
    background: #0a0c0e;
    border: 1px solid #5AF3FF;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: inset 0 0 20px rgba(90, 243, 255, 0.05);
}

/* --- FORM SECTION --- */
.morlenaZfFormSection {
    padding: 100px 0;
    background: #050607;
}

.morlenaZfFormWrap {
    max-width: 700px;
    margin: 0 auto;
    background: #0a0c0e;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(90, 243, 255, 0.3);
}

.morlenaZfFormSub {
    text-align: center;
    margin-bottom: 35px;
}

.morlenaZfFormRow {
    margin-bottom: 25px;
}

.morlenaZfLabel {
    display: block;
    margin-bottom: 8px;
    color: #5AF3FF;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.morlenaZfInput, .morlenaZfTextArea {
    width: 100%;
    padding: 15px;
    background: #050607;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.morlenaZfInput:focus, .morlenaZfTextArea:focus {
    border-color: #5AF3FF;
    box-shadow: 0 0 10px rgba(90, 243, 255, 0.2);
}

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

.morlenaZfCheckRow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.morlenaZfCheck {
    width: 18px;
    height: 18px;
    accent-color: #5AF3FF;
}

.morlenaZfCheckLabel {
    font-size: 0.85rem;
    color: #999;
}

.morlenaZfCheckLabel a {
    color: #5AF3FF;
    text-decoration: none;
}

.morlenaZfSubmit {
    width: 100%;
}

/* --- FOOTER --- */
.morlenaZfFooter {
    padding: 80px 0 40px;
    background: #020304;
    border-top: 1px solid rgba(90, 243, 255, 0.2);
}

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

.morlenaZfFootLogo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5AF3FF;
}

.morlenaZfFootContact p {
    margin-bottom: 5px;
    text-align: right;
}

.morlenaZfFootCopy {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

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

.morlenaZfFootLinks a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.morlenaZfFootLinks a:hover {
    color: #5AF3FF;
}

/* --- MOBILE --- */
@media (max-width: 992px) {
    .morlenaZfPriceGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .morlenaZfHeroH1 {
        font-size: 2.5rem;
    }
    .morlenaZfWhoList {
        grid-template-columns: 1fr;
    }
    .morlenaZfBenefitRow {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .morlenaZfBurger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    .morlenaZfBurger span {
        display: block;
        width: 30px;
        height: 3px;
        background: #5AF3FF;
        transition: 0.3s;
    }
    .morlenaZfNav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #050607;
        height: 0;
        overflow: hidden;
        transition: height 0.4s;
    }
    .morlenaZfNavList {
        flex-direction: column;
        padding: 40px;
        align-items: center;
    }
    .morlenaZfNavCheck:checked ~ .morlenaZfNav {
        height: 100vh;
    }
    .morlenaZfNavCheck:checked ~ .morlenaZfBurger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .morlenaZfNavCheck:checked ~ .morlenaZfBurger span:nth-child(2) {
        opacity: 0;
    }
    .morlenaZfNavCheck:checked ~ .morlenaZfBurger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
    }
    .morlenaZfGridHero {
        flex-direction: column;
    }
    .morlenaZfPriceGrid {
        grid-template-columns: 1fr;
    }
    .morlenaZfSectH2 {
        font-size: 1.8rem;
    }
    .morlenaZfFootMain {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .morlenaZfFootContact p {
        text-align: center;
    }
}