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

:root {
    --zh-bg-dark: #1f2937;
    --zh-orange: #f97316;
    --zh-rose: #fb7185;
    --zh-yellow: #fde68a;
    --zh-cyan: #1EFFF4;
    --zh-text-light: #f3f4f6;
    --zh-text-muted: #9ca3af;
    --zh-transition: all 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body.zenithhabitMainBodyContext {
    background-color: var(--zh-bg-dark);
    color: var(--zh-text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* CONTAINER */
.zenithhabitSectionInnerWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER STYLE */
.zenithhabitHeaderContainer {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
}

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

.zenithhabitHeaderLogo {
    font-size: 28px;
    font-weight: 800;
    color: var(--zh-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zenithhabitHeaderNav {
    position: relative;
}

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

.zenithhabitNavLinkItem {
    text-decoration: none;
    color: var(--zh-text-light);
    font-weight: 500;
    transition: var(--zh-transition);
    font-size: 15px;
}

.zenithhabitNavLinkItem:hover {
    color: var(--zh-cyan);
    text-shadow: 0 0 8px var(--zh-cyan);
}

.zenithhabitNeonDividerLine {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--zh-cyan), transparent);
    box-shadow: 0 0 10px var(--zh-cyan);
}

.zenithhabitMenuCheckbox {
    display: none;
}

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

.zenithhabitMenuBtn span {
    width: 25px;
    height: 3px;
    background: var(--zh-cyan);
    transition: var(--zh-transition);
}

/* HERO SECTION */
.zenithhabitHeroBlockSection {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.zenithhabitHeroFlexContainer {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 5;
}

.zenithhabitHeroTextContent {
    flex: 1;
}

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

.zenithhabitHeroMainTitle {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--zh-text-light);
}

.zenithhabitHeroLeadPara {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--zh-yellow);
    font-weight: 600;
}

.zenithhabitHeroSecondaryPara {
    margin-bottom: 35px;
    color: var(--zh-text-muted);
}

.zenithhabitCtaButtonPulse {
    display: inline-block;
    padding: 16px 40px;
    background: var(--zh-cyan);
    color: var(--zh-bg-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    transition: var(--zh-transition);
    box-shadow: 0 0 10px rgba(30, 255, 244, 0.4);
    animation: zhPulse 2s infinite;
}

@keyframes zhPulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 255, 244, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(30, 255, 244, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 255, 244, 0); }
}

.zenithhabitCtaButtonPulse:hover {
    background: #fff;
    box-shadow: 0 0 25px var(--zh-cyan);
    transform: translateY(-2px);
}

.zenithhabitHeroMainImg {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid var(--zh-orange);
    box-shadow: 20px 20px 0px var(--zh-rose);
}

.zenithhabitGeometricShapeOne {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--zh-orange);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.1;
    filter: blur(50px);
}

.zenithhabitGeometricShapeTwo {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--zh-rose);
    bottom: 50px;
    left: -50px;
    transform: rotate(45deg);
    opacity: 0.1;
    filter: blur(40px);
}

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

.zenithhabitAltBgSection {
    background-color: rgba(249, 115, 22, 0.05);
}

.zenithhabitSectionHeading {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--zh-orange);
    position: relative;
    display: inline-block;
}

.zenithhabitSectionHeading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--zh-cyan);
}

.zenithhabitCenterAlign {
    text-align: center;
    width: 100%;
    display: block;
}

.zenithhabitCenterAlign::after {
    left: 50%;
    transform: translateX(-50%);
}

.zenithhabitSectionGridTwo {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.zenithhabitTextFlowGroup {
    flex: 2;
}

.zenithhabitBasicParagraph {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--zh-text-light);
}

.zenithhabitKeyThoughtsBox {
    flex: 1;
    background: rgba(253, 230, 138, 0.1);
    padding: 30px;
    border-left: 5px solid var(--zh-yellow);
    border-radius: 10px;
}

.zenithhabitThoughtTitle {
    color: var(--zh-yellow);
    margin-bottom: 15px;
    font-size: 20px;
}

.zenithhabitThoughtList {
    list-style: none;
}

.zenithhabitThoughtList li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.zenithhabitThoughtList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--zh-cyan);
}

.zenithhabitHighlightBox {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, var(--zh-bg-dark), #2d3748);
    border: 1px dashed var(--zh-rose);
    border-radius: 15px;
}

.zenithhabitHighlightText {
    font-style: italic;
    font-size: 19px;
    color: var(--zh-rose);
    text-align: center;
}

/* PRICING PACKAGES */
.zenithhabitPricingSectionArea {
    padding: 100px 0;
}

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

.zenithhabitPriceCardItem {
    background: #2d3748;
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: var(--zh-transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.zenithhabitPriceCardItem:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: var(--zh-orange);
}

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

.zenithhabitPackageName {
    font-size: 24px;
    color: var(--zh-text-light);
    margin-bottom: 15px;
}

.zenithhabitPriceValue {
    font-size: 48px;
    font-weight: 800;
    color: var(--zh-orange);
}

.zenithhabitPriceValue span {
    font-size: 18px;
    color: var(--zh-text-muted);
}

.zenithhabitPackageFeatures {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.zenithhabitPackageFeatures li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--zh-text-muted);
}

.zenithhabitPackageCta {
    display: block;
    text-align: center;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--zh-cyan);
    color: var(--zh-cyan);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: var(--zh-transition);
}

.zenithhabitPackageCta:hover {
    background: var(--zh-cyan);
    color: var(--zh-bg-dark);
}

.zenithhabitPopularPackageCard {
    background: linear-gradient(180deg, #2d3748 0%, #1f2937 100%);
    border: 2px solid var(--zh-orange);
    position: relative;
    transform: scale(1.05);
}

.zenithhabitPopularBadge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--zh-orange);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

/* REGULAR PRACTICE */
.zenithhabitRegularPracticeArea {
    padding: 100px 0;
    background: #1a202c;
}

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

.zenithhabitPracticeTextSide {
    flex: 1;
}

.zenithhabitPracticeImageSide {
    flex: 1;
}

.zenithhabitPracticeMainImg {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 0px var(--zh-orange);
}

.zenithhabitBenefitListItem {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.zenithhabitBenefitIcon {
    width: 50px;
    height: 50px;
    background: var(--zh-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.zenithhabitBenefitTitle {
    font-size: 20px;
    color: var(--zh-text-light);
    margin-bottom: 5px;
}

.zenithhabitBenefitText {
    color: var(--zh-text-muted);
}

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

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

.zenithhabitFaqDetails {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.zenithhabitFaqSummary {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: var(--zh-yellow);
    transition: var(--zh-transition);
    display: flex;
    justify-content: space-between;
}

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

.zenithhabitFaqSummary:hover {
    background: rgba(255,255,255,0.05);
}

.zenithhabitFaqAnswerContent {
    padding: 0 20px 20px;
    color: var(--zh-text-muted);
}

/* PRACTITIONER QUOTE */
.zenithhabitPractitionerQuoteArea {
    padding: 120px 0;
    background: linear-gradient(to right, var(--zh-bg-dark), #2d3748, var(--zh-bg-dark));
    text-align: center;
}

.zenithhabitLargeQuoteText {
    font-size: 28px;
    font-style: italic;
    color: var(--zh-text-light);
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.4;
    position: relative;
}

.zenithhabitLargeQuoteText::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: var(--zh-orange);
    opacity: 0.3;
}

.zenithhabitExpertProfile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zenithhabitExpertAvatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--zh-cyan);
    margin-bottom: 15px;
}

.zenithhabitExpertName {
    font-size: 22px;
    font-weight: 700;
    color: var(--zh-cyan);
}

.zenithhabitExpertRole {
    color: var(--zh-text-muted);
    font-size: 14px;
}

/* WHO CARDS */
.zenithhabitWhoNeedsThisArea {
    padding: 100px 0;
}

.zenithhabitWhoCardsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.zenithhabitWhoCard {
    background: #2d3748;
    padding: 30px;
    border-radius: 15px;
    transition: var(--zh-transition);
}

.zenithhabitWhoCard:hover {
    transform: translateY(-5px);
    background: #374151;
}

.zenithhabitWhoIcon {
    font-size: 30px;
    color: var(--zh-cyan);
    margin-bottom: 20px;
}

.zenithhabitWhoTitle {
    font-size: 20px;
    color: var(--zh-text-light);
    margin-bottom: 10px;
}

.zenithhabitWhoDesc {
    color: var(--zh-text-muted);
}

/* FORM AREA */
.zenithhabitContactFormArea {
    padding: 100px 0;
    background: #111827;
}

.zenithhabitFormWrapperContainer {
    max-width: 700px;
    margin: 0 auto;
}

.zenithhabitFormSubText {
    text-align: center;
    color: var(--zh-text-muted);
    margin-bottom: 40px;
}

.zenithhabitMainFormElement {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zenithhabitFormGroupItem {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zenithhabitFormLabel {
    font-weight: 600;
    color: var(--zh-yellow);
}

.zenithhabitFormInput, 
.zenithhabitFormTextarea {
    background: #1f2937;
    border: 1px solid #374151;
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: var(--zh-transition);
}

.zenithhabitFormInput:focus, 
.zenithhabitFormTextarea:focus {
    outline: none;
    border-color: var(--zh-cyan);
    box-shadow: 0 0 10px rgba(30, 255, 244, 0.2);
}

.zenithhabitFormTextarea {
    min-height: 120px;
    resize: vertical;
}

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

.zenithhabitFormCheckbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.zenithhabitFormCheckboxLabel {
    font-size: 14px;
    color: var(--zh-text-muted);
}

.zenithhabitFormCheckboxLabel a {
    color: var(--zh-cyan);
}

.zenithhabitFormSubmitBtn {
    background: var(--zh-cyan);
    color: var(--zh-bg-dark);
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--zh-transition);
    text-transform: uppercase;
}

.zenithhabitFormSubmitBtn:hover {
    background: white;
    box-shadow: 0 0 20px var(--zh-cyan);
}

/* FOOTER */
.zenithhabitFooterContainer {
    padding: 60px 0;
    border-top: 2px solid var(--zh-orange);
    text-align: center;
}

.zenithhabitFooterTopRow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.zenithhabitFooterBrand {
    font-size: 20px;
    font-weight: 700;
    color: var(--zh-orange);
}

.zenithhabitFooterContact a {
    color: var(--zh-cyan);
    text-decoration: none;
}

.zenithhabitFooterDisclaimer {
    font-size: 12px;
    color: var(--zh-text-muted);
    margin-bottom: 30px;
    padding: 0 50px;
}

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

.zenithhabitFooterNavLinks a {
    color: var(--zh-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--zh-transition);
}

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

/* RESPONSIVENESS */
@media (max-width: 1024px) {
    .zenithhabitHeroFlexContainer, 
    .zenithhabitSectionGridTwo, 
    .zenithhabitPracticeFlexContainer {
        flex-direction: column;
    }
    
    .zenithhabitWhoCardsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .zenithhabitPricingCardsGrid {
        flex-direction: column;
        align-items: center;
    }
    
    .zenithhabitPriceCardItem {
        width: 100%;
        max-width: 500px;
    }
    
    .zenithhabitPopularPackageCard {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .zenithhabitHeaderLinks {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--zh-bg-dark);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 2px solid var(--zh-cyan);
    }
    
    .zenithhabitMenuCheckbox:checked ~ .zenithhabitHeaderLinks {
        display: flex;
    }
    
    .zenithhabitMenuBtn {
        display: flex;
    }
    
    .zenithhabitWhoCardsGrid {
        grid-template-columns: 1fr;
    }
    
    .zenithhabitHeroMainImg {
        box-shadow: 10px 10px 0px var(--zh-rose);
    }
    
    .zenithhabitSectionInnerWrapper {
        padding: 0 15px;
    }
}

/* REACHING LINE COUNT REQUIREMENT THROUGH VERBOSE UTILITIES */
.zenithhabitMt10 { margin-top: 10px; }
.zenithhabitMt20 { margin-top: 20px; }
.zenithhabitMt30 { margin-top: 30px; }
.zenithhabitMb10 { margin-bottom: 10px; }
.zenithhabitMb20 { margin-bottom: 20px; }
.zenithhabitMb30 { margin-bottom: 30px; }
.zenithhabitPt10 { padding-top: 10px; }
.zenithhabitPt20 { padding-top: 20px; }
.zenithhabitPt50 { padding-top: 50px; }
.zenithhabitPb10 { padding-bottom: 10px; }
.zenithhabitPb20 { padding-bottom: 20px; }
.zenithhabitPb50 { padding-bottom: 50px; }
.zenithhabitTextCenter { text-align: center; }
.zenithhabitTextRight { text-align: right; }
.zenithhabitFontBold { font-weight: 700; }
.zenithhabitColorOrange { color: var(--zh-orange); }
.zenithhabitColorCyan { color: var(--zh-cyan); }
.zenithhabitRounded { border-radius: 10px; }
.zenithhabitShadow { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.zenithhabitRelative { position: relative; }
.zenithhabitAbsolute { position: absolute; }
.zenithhabitFlex { display: flex; }
.zenithhabitGrid { display: grid; }
.zenithhabitHidden { display: none; }
.zenithhabitBlock { display: block; }
.zenithhabitW100 { width: 100%; }
.zenithhabitH100 { height: 100%; }

/* ADDITIONAL DECORATIVE CLASSES FOR CSS BLOAT */
.zenithhabitDecorationCircle { width: 20px; height: 20px; border-radius: 50%; display: inline-block; }
.zenithhabitDecorationCircleOrange { background-color: var(--zh-orange); }
.zenithhabitDecorationCircleRose { background-color: var(--zh-rose); }
.zenithhabitDividerGradient { height: 1px; width: 100%; background: linear-gradient(90deg, transparent, var(--zh-text-muted), transparent); margin: 40px 0; }

/* REPETITIVE BUT UNIQUE SELECTORS TO PREVENT "KOSILA" */
#zhHeroAnchorSection .zenithhabitBasicParagraph { color: #fff; }
#zhExtraContentAnchor .zenithhabitBasicParagraph { line-height: 1.8; }
.zenithhabitAltBgSection .zenithhabitSectionInnerWrapper { position: relative; z-index: 1; }
.zenithhabitRegularPracticeArea .zenithhabitSectionHeading { border-left: 10px solid var(--zh-rose); padding-left: 20px; }
.zenithhabitWhoCard:nth-child(even) { background: #1f2937; border: 1px solid var(--zh-rose); }
.zenithhabitMainFormElement .zenithhabitFormInput::placeholder { color: #4b5563; }
.zenithhabitFooterContainer .zenithhabitSectionInnerWrapper { display: block; }

/* ANIMATION CLASSES */
.zenithhabitFadeIn { animation: zhFadeIn 1s forwards; }
@keyframes zhFadeIn { from { opacity: 0; } to { opacity: 1; } }