/* Reset & Basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
    background-color: #f7fee7;
}

body.XezevataGardenBody {
    line-height: 1.6;
    overflow-x: hidden;
}

/* Common Layout */
.XezevataGardenContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.XezevataGardenContainerSmall {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.XezevataGardenSectionTitle {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.XezevataGardenSectionTitleCentered {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 40px;
    text-align: center;
}

.XezevataGardenSectionDesc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4b5563;
}

/* Header */
.XezevataGardenHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.XezevataGardenGlassLayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 254, 231, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(132, 204, 22, 0.2);
    z-index: -1;
}

.XezevataGardenHeaderContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.XezevataGardenLogo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #84cc16;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.XezevataGardenNav {
    display: flex;
    align-items: center;
}

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

.XezevataGardenNavLink {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.XezevataGardenNavLink:hover {
    color: #84cc16;
}

.XezevataGardenMenuCheckbox, .XezevataGardenBurger {
    display: none;
}

/* Hero Section */
.XezevataGardenHeroSection {
    padding: 160px 0 100px;
    background-color: #f7fee7;
}

.XezevataGardenHeroWrapper {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 60px;
}

.XezevataGardenHeroImageSide {
    flex: 1;
}

.XezevataGardenHeroImg {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 20px 20px 0px #bef264;
    display: block;
    object-fit: cover;
}

.XezevataGardenHeroTextSide {
    flex: 1;
}

.XezevataGardenHeroTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1f2937;
}

.XezevataGardenHeroDesc {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #4b5563;
}

.XezevataGardenHeroChecks {
    list-style: none;
    margin-bottom: 35px;
}

.XezevataGardenHeroCheckItem {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-weight: 500;
}

.XezevataGardenHeroCheckItem::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #84cc16;
    font-weight: 900;
    font-size: 1.2rem;
}

.XezevataGardenBtnAqua {
    display: inline-block;
    padding: 16px 36px;
    background-color: #84cc16;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(132, 204, 22, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.XezevataGardenBtnAqua:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(132, 204, 22, 0.6);
}

/* FAQ Section */
.XezevataGardenFaqSection {
    padding: 100px 0;
    background-color: #fff;
}

.XezevataGardenFaqItem {
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
}

.XezevataGardenFaqSummary {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    border-left: 4px solid #84cc16;
    padding-left: 20px;
}

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

.XezevataGardenFaqContent {
    padding: 10px 20px 25px 24px;
    color: #4b5563;
}

/* Info Section */
.XezevataGardenInfoSection {
    padding: 100px 0;
}

.XezevataGardenInfoBlock {
    margin-bottom: 100px;
}

.XezevataGardenInfoMainTitle {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1f2937;
}

.XezevataGardenInfoText {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.XezevataGardenSubGrid {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.XezevataGardenSubItem {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.XezevataGardenSubTitle {
    font-size: 1.3rem;
    color: #84cc16;
    margin-bottom: 15px;
}

.XezevataGardenSubList {
    list-style: none;
}

.XezevataGardenSubList li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.XezevataGardenSubList li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #84cc16;
}

/* Target Section */
.XezevataGardenTargetSection {
    padding: 100px 0;
    background-color: #f7fee7;
}

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

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

.XezevataGardenTargetCard {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    font-weight: 600;
    color: #1f2937;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: border-color 0.3s, background-color 0.3s;
    text-align: center;
}

.XezevataGardenTargetCard:hover {
    border-color: #84cc16;
    background-color: #f0fdf4;
}

/* Regularity Section */
.XezevataGardenBenefitsSection {
    padding: 100px 0;
    background-color: #fff;
}

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

.XezevataGardenBenefitsText {
    flex: 1.2;
}

.XezevataGardenBenefitsImage {
    flex: 0.8;
}

.XezevataGardenBenefitsImg {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.XezevataGardenBenefitsLead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #4b5563;
}

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

.XezevataGardenBenefitsList {
    list-style: none;
}

.XezevataGardenBenefitsList li {
    margin-bottom: 15px;
    font-weight: 600;
    padding-left: 30px;
    position: relative;
}

.XezevataGardenBenefitsList li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #84cc16;
}

/* Prices Section */
.XezevataGardenPricesSection {
    padding: 100px 0;
    background-color: #f9fafb;
}

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

.XezevataGardenPriceCard {
    flex: 1;
    max-width: 360px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.XezevataGardenPriceCardFeatured {
    border: 3px solid #84cc16;
    transform: scale(1.05);
    position: relative;
}

.XezevataGardenPriceIcon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.XezevataGardenPriceVal {
    font-size: 2rem;
    font-weight: 800;
    color: #84cc16;
    margin-bottom: 30px;
}

.XezevataGardenPriceFeatures {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.XezevataGardenPriceFeatures li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.XezevataGardenPriceFeatures li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #84cc16;
    font-weight: bold;
}

.XezevataGardenPriceBtn {
    padding: 12px 24px;
    border: 2px solid #84cc16;
    color: #84cc16;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.XezevataGardenPriceBtn:hover {
    background-color: #84cc16;
    color: #fff;
}

.XezevataGardenPriceBtnFeatured {
    padding: 14px 28px;
    background-color: #84cc16;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.XezevataGardenPriceBtnFeatured:hover {
    background-color: #65a30d;
}

/* Expert Section */
.XezevataGardenExpertSection {
    padding: 100px 0;
    background-color: #1f2937;
    color: #fff;
}

.XezevataGardenExpertBlock {
    text-align: center;
}

.XezevataGardenExpertImgWrap {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #84cc16;
}

.XezevataGardenExpertImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.XezevataGardenExpertQuote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.XezevataGardenExpertName {
    font-size: 1.3rem;
    font-weight: 700;
    color: #84cc16;
}

.XezevataGardenExpertSub {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Form Section */
.XezevataGardenFormSection {
    padding: 100px 0;
    background-color: #fff;
}

.XezevataGardenForm {
    margin-top: 40px;
}

.XezevataGardenFormField {
    margin-bottom: 20px;
}

.XezevataGardenFormField label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.XezevataGardenInput, .XezevataGardenTextarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.XezevataGardenInput:focus, .XezevataGardenTextarea:focus {
    outline: none;
    border-color: #84cc16;
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

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

.XezevataGardenFormCheck label {
    font-size: 0.9rem;
    color: #4b5563;
}

.XezevataGardenCheckbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.XezevataGardenSubmitBtn {
    width: 100%;
    padding: 16px;
    background-color: #84cc16;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.XezevataGardenSubmitBtn:hover {
    background-color: #65a30d;
}

/* Footer */
.XezevataGardenFooter {
    padding: 60px 0;
    background-color: #1f2937;
    color: #fff;
    border-top: 1px solid #374151;
}

.XezevataGardenFooterMain {
    text-align: center;
    margin-bottom: 40px;
}

.XezevataGardenCopyright {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.XezevataGardenContact a {
    color: #84cc16;
    text-decoration: none;
}

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

.XezevataGardenFooterLink {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.XezevataGardenFooterLink:hover {
    color: #fff;
}

/* Mobile Adaptive */
@media (max-width: 991px) {
    .XezevataGardenHeroWrapper {
        flex-direction: column-reverse;
        padding: 0 20px;
    }
    .XezevataGardenHeroTitle {
        font-size: 2.5rem;
    }
    .XezevataGardenBenefitsWrapper {
        flex-direction: column;
    }
    .XezevataGardenPriceCards {
        flex-direction: column;
        align-items: center;
    }
    .XezevataGardenPriceCardFeatured {
        transform: scale(1);
    }
    .XezevataGardenSubGrid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .XezevataGardenBurger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1001;
    }
    .XezevataGardenBurger span {
        width: 100%;
        height: 3px;
        background: #1f2937;
        border-radius: 10px;
    }
    .XezevataGardenMenuList {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 40px;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .XezevataGardenMenuCheckbox:checked ~ .XezevataGardenMenuList {
        right: 0;
    }
    .XezevataGardenSectionTitle, .XezevataGardenSectionTitleCentered {
        font-size: 2rem;
    }
}