/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #1f2937;
    --orange: #f97316;
    --rose: #fb7185;
    --yellow: #fde68a;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.XehumBodyMain {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
.XehumHeadWrap {
    background-color: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.XehumLogoBrand {
    font-size: 28px;
    font-weight: 900;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.XehumNavLinkItem {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.XehumNavLinkItem:hover {
    color: var(--rose);
}

.XehumGlowStripe {
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--rose), var(--yellow));
    width: 0;
    margin-top: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px var(--rose);
}

.XehumHeadWrap:hover .XehumGlowStripe {
    width: 100%;
}

/* Burger Menu (No JS) */
.XehumNavToggleCheck {
    display: none;
}

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

.XehumBurgerLabel span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    display: block;
    transition: var(--transition);
}

/* Hero Section */
.XehumHeroBlock {
    padding: 100px 0;
    background-color: #f3f4f6;
    position: relative;
    overflow: hidden;
}

.XehumHeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.XehumHeroTextSide {
    flex: 1;
}

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

.XehumHeroImgElement {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 30px 30px 0 var(--orange);
}

.XehumHeroTitleH1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 900;
}

.XehumHeroSubText {
    font-size: 20px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 20px;
}

.XehumHeroDescription {
    margin-bottom: 15px;
    font-size: 16px;
    color: #4b5563;
}

.XehumHeroDecor1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--yellow);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.3;
}

.XehumHeroDecor2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--rose);
    bottom: -50px;
    left: -50px;
    transform: rotate(45deg);
    opacity: 0.2;
}

/* Plasma Buttons */
.XehumPlasmaButton {
    display: inline-block;
    padding: 16px 35px;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
    position: relative;
    overflow: hidden;
}

.XehumPlasmaButton:hover {
    background-color: var(--rose);
    box-shadow: 0 0 20px var(--rose), 0 0 40px var(--orange);
    transform: translateY(-3px);
}

/* FAQ Section */
.XehumFAQSection {
    padding: 80px 0;
    background-color: var(--white);
}

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

.XehumSectionTitleH2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--rose);
}

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

.XehumFAQDetails {
    margin-bottom: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.XehumFAQDetails[open] {
    border-color: var(--orange);
}

.XehumFAQSummary {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9fafb;
}

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

.XehumFAQIcon::before {
    content: '+';
    font-size: 24px;
    color: var(--orange);
}

.XehumFAQDetails[open] .XehumFAQIcon::before {
    content: '-';
}

.XehumFAQContent {
    padding: 20px;
    background-color: var(--white);
    border-top: 1px solid #e5e7eb;
}

/* Target Audience */
.XehumTargetSection {
    padding: 80px 0;
    background-color: #fef2f2;
}

.XehumTargetIntro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.XehumTargetGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.XehumTargetCard {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 5px solid var(--orange);
}

.XehumTargetCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.XehumTargetIconImg {
    margin-bottom: 20px;
    border-radius: 50%;
}

.XehumTargetCardTitle {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 800;
}

/* Prices */
.XehumPricesSection {
    padding: 80px 0;
    background-color: var(--dark);
    color: var(--white);
}

.XehumPriceGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.XehumPriceCard {
    background-color: #2d3748;
    padding: 40px;
    border-radius: 25px;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    border: 1px solid #4a5568;
}

.XehumPriceFeatured {
    border: 3px solid var(--rose);
    transform: scale(1.05);
    background-color: #374151;
}

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

.XehumPriceIcon {
    margin-bottom: 15px;
}

.XehumPriceName {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.XehumPriceVal {
    font-size: 42px;
    font-weight: 900;
    color: var(--yellow);
}

.XehumPriceFeatures {
    list-style: none;
    margin-bottom: 30px;
    width: 100%;
}

.XehumPriceFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid #4a5568;
    font-size: 15px;
    text-align: center;
}

.XehumPriceBtn {
    width: 100%;
    padding: 15px;
    background-color: var(--white);
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    border-radius: 12px;
    transition: var(--transition);
}

.XehumPriceBtn:hover {
    background-color: var(--orange);
    color: var(--white);
}

/* Long Articles */
.XehumLongTextSection {
    padding: 100px 0;
}

.XehumArticleItem {
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.XehumArticleTitle {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 900;
    color: var(--dark);
    border-left: 8px solid var(--orange);
    padding-left: 20px;
}

.XehumArticlePara {
    font-size: 17px;
    margin-bottom: 20px;
    color: #374151;
}

.XehumArticleSub {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: 700;
}

.XehumArticleList {
    margin-bottom: 20px;
    padding-left: 20px;
}

.XehumArticleList li {
    margin-bottom: 10px;
}

/* Expert Section */
.XehumExpertSection {
    padding: 80px 0;
    background-color: var(--orange);
    color: var(--white);
}

.XehumExpertQuoteBox {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.XehumExpertQuote {
    font-size: 28px;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
    position: relative;
}

.XehumExpertQuote::before {
    content: '“';
    font-size: 80px;
    position: absolute;
    top: -40px;
    left: -20px;
    opacity: 0.3;
}

.XehumExpertName {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

.XehumExpertTitle {
    font-size: 16px;
    opacity: 0.9;
}

/* Benefits Section */
.XehumBenefitsSection {
    padding: 100px 0;
}

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

.XehumBenefitsText {
    flex: 1;
}

.XehumBenefitsImage {
    flex: 1;
}

.XehumBenefitImgElement {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: -20px 20px 0 var(--yellow);
}

.XehumBenefitsMainPara {
    font-size: 18px;
    margin-bottom: 25px;
}

.XehumBenefitsList {
    list-style: none;
}

.XehumBenefitsList li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.XehumBenefitsList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--rose);
    font-weight: 900;
}

.XehumHighlightBox {
    margin-top: 30px;
    background-color: #fff7ed;
    padding: 25px;
    border-left: 5px solid var(--orange);
    border-radius: 0 15px 15px 0;
}

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

.XehumFormContainer {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.XehumFormSub {
    text-align: center;
    margin-bottom: 30px;
    color: #6b7280;
}

.XehumFormRow {
    margin-bottom: 20px;
}

.XehumFormLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark);
}

.XehumFormInput, .XehumFormTextarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
}

.XehumFormInput:focus, .XehumFormTextarea:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.2);
}

.XehumFormTextarea {
    height: 120px;
    resize: none;
}

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

.XehumFormCheck {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.XehumCheckLabel {
    font-size: 14px;
}

.XehumFullWidthBtn {
    width: 100%;
}

/* Footer */
.XehumFooterWrap {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.XehumFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    border-bottom: 1px solid #374151;
    padding-bottom: 30px;
}

.XehumFooterBrand {
    font-size: 24px;
    font-weight: 900;
    color: var(--orange);
}

.XehumFooterContacts a {
    color: var(--yellow);
    text-decoration: none;
}

.XehumFooterMid {
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
    opacity: 0.7;
}

.XehumFooterBottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
}

.XehumFooterLinks {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.XehumFooterLinks a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.XehumFooterLinks a:hover {
    color: var(--rose);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .XehumHeroContainer, .XehumBenefitsFlex {
        flex-direction: column;
        text-align: center;
    }
    
    .XehumHeroImgElement, .XehumBenefitImgElement {
        box-shadow: none;
        margin-top: 40px;
    }

    .XehumPriceCard {
        width: 100%;
        max-width: 400px;
    }
    
    .XehumPriceFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .XehumBurgerLabel {
        display: flex;
    }

    .XehumNavMenu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--dark);
        transition: 0.5s;
        padding: 50px 20px;
        z-index: 999;
    }

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

    .XehumNavToggleCheck:checked ~ .XehumNavMenu {
        left: 0;
    }

    .XehumNavToggleCheck:checked ~ .XehumBurgerLabel span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .XehumNavToggleCheck:checked ~ .XehumBurgerLabel span:nth-child(2) {
        opacity: 0;
    }
    .XehumNavToggleCheck:checked ~ .XehumBurgerLabel span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .XehumHeroTitleH1 {
        font-size: 32px;
    }
}