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

:root {
    --color-bg: #0A0C10;
    --color-surface: #14171D;
    --color-lime: #CFFF35;
    --color-neon-blue: #38BDF8;
    --color-text-main: #E2E8F0;
    --color-text-dim: #94A3B8;
    --color-border: #1E293B;
    --transition-fast: 0.3s ease;
}

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

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

/* NEON STRIP ANIMATION */
.halcyWellnessNeonStrip {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--color-lime), var(--color-neon-blue), var(--color-lime));
    background-size: 200% 100%;
    animation: halcyNeonMove 5s linear infinite;
}

@keyframes halcyNeonMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* DISCLAIMER */
.halcyWellnessDisclaimer {
    background: #111;
    color: #666;
    font-size: 11px;
    text-align: center;
    padding: 5px 0;
    border-bottom: 1px solid var(--color-border);
}

/* HEADER */
.halcyWellnessHeader {
    background-color: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.halcyWellnessLogo {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-lime);
    letter-spacing: 2px;
}

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

.halcyWellnessNavLink {
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
}

.halcyWellnessNavLink:hover {
    color: var(--color-lime);
}

/* MOBILE MENU (No JS) */
.halcyWellnessMenuInput {
    display: none;
}

.halcyWellnessBurger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.halcyWellnessBurger span {
    width: 30px;
    height: 2px;
    background-color: var(--color-lime);
    transition: var(--transition-fast);
}

/* HERO SECTION */
.halcyWellnessHero {
    padding: 100px 0;
}

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

.halcyWellnessHeroContent {
    flex: 1;
}

.halcyWellnessHeroImage {
    flex: 1;
    position: relative;
}

.halcyWellnessMainImg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(207, 255, 53, 0.1);
    object-fit: cover;
}

.halcyWellnessH1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.halcyWellnessHeroText {
    font-size: 18px;
    color: var(--color-text-dim);
    margin-bottom: 20px;
}

.halcyWellnessHeroSub {
    margin-bottom: 30px;
    font-weight: 300;
    border-left: 3px solid var(--color-lime);
    padding-left: 20px;
}

.halcyWellnessHeroStats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.halcyWellnessStatVal {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-lime);
}

.halcyWellnessStatDesc {
    font-size: 14px;
    color: var(--color-text-dim);
}

/* BUTTONS */
.halcyWellnessBtnPrimary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--color-lime);
    color: var(--color-bg);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.halcyWellnessBtnPrimary:hover {
    box-shadow: 0 0 20px rgba(207, 255, 53, 0.6);
    transform: translateY(-2px);
}

.halcyWellnessBtnSecondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: var(--color-lime);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--color-lime);
    transition: var(--transition-fast);
    text-align: center;
}

.halcyWellnessBtnSecondary:hover {
    background-color: rgba(207, 255, 53, 0.05);
}

/* SERVICES */
.halcyWellnessServices {
    padding: 80px 0;
    background-color: var(--color-surface);
}

.halcyWellnessH2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

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

.halcyWellnessServiceCard {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 40px;
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.halcyWellnessServiceCardFeatured {
    border-color: var(--color-lime);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.halcyWellnessPrice {
    font-size: 32px;
    font-weight: 800;
    margin: 20px 0;
    color: var(--color-neon-blue);
}

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

.halcyWellnessBenefitList li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.halcyWellnessBenefitList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-lime);
    font-weight: bold;
}

/* AUDIENCE */
.halcyWellnessAudience {
    padding: 100px 0;
}

.halcyWellnessIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.halcyWellnessSectionSub {
    color: var(--color-text-dim);
    font-size: 18px;
}

.halcyWellnessAudienceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.halcyWellnessAudienceItem {
    background: var(--color-surface);
    padding: 30px;
    width: calc(33.333% - 20px);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.halcyWellnessAudienceItem:hover {
    background: #1A1E26;
    transform: translateY(-5px);
}

.halcyWellnessIcon {
    font-size: 40px;
    margin-bottom: 20px;
}

.halcyWellnessAudienceItem h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-lime);
}

/* FAQ */
.halcyWellnessFAQ {
    padding: 80px 0;
    background-color: var(--color-surface);
}

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

.halcyWellnessFAQItem {
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
}

.halcyWellnessFAQSummary {
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.halcyWellnessFAQArrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-lime);
    border-bottom: 2px solid var(--color-lime);
    transform: rotate(45deg);
    transition: var(--transition-fast);
}

.halcyWellnessFAQItem[open] .halcyWellnessFAQArrow {
    transform: rotate(-135deg);
}

.halcyWellnessFAQContent {
    padding-top: 15px;
    color: var(--color-text-dim);
}

/* QUOTE */
.halcyWellnessQuoteSection {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg), #0f1218);
}

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

.halcyWellnessQuoteIcon {
    font-size: 80px;
    color: rgba(207, 255, 53, 0.1);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
}

.halcyWellnessQuoteText {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.5;
}

.halcyWellnessQuoteAuthor {
    display: block;
    font-weight: bold;
    color: var(--color-lime);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PRACTICE */
.halcyWellnessRegularPractice {
    padding: 100px 0;
}

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

.halcyWellnessPracticeContent {
    flex: 1.2;
}

.halcyWellnessPracticeImage {
    flex: 0.8;
}

.halcyWellnessPracticeGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.halcyWellnessMiniCard {
    background: var(--color-surface);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
}

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

.halcyWellnessMiniCard h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--color-lime);
}

.halcyWellnessMiniCard p {
    font-size: 13px;
    color: var(--color-text-dim);
}

/* ARTICLES */
.halcyWellnessArticleSection {
    padding: 80px 0;
}

.halcyWellnessBgAlt {
    background-color: var(--color-surface);
}

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

.halcyWellnessArticle h2 {
    margin-bottom: 30px;
}

.halcyWellnessArticle h3 {
    margin: 30px 0 15px;
    color: var(--color-neon-blue);
}

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

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

.halcyWellnessArticle li {
    margin-bottom: 10px;
    color: var(--color-text-dim);
}

/* FORM */
.halcyWellnessFormSection {
    padding: 100px 0;
}

.halcyWellnessFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.halcyWellnessFormSub {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text-dim);
}

.halcyWellnessFormGroup {
    margin-bottom: 20px;
}

.halcyWellnessFormGroup label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--color-text-dim);
}

.halcyWellnessFormGroup input, 
.halcyWellnessFormGroup textarea {
    width: 100%;
    padding: 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
}

.halcyWellnessFormGroup input:focus, 
.halcyWellnessFormGroup textarea:focus {
    outline: none;
    border-color: var(--color-lime);
}

.halcyWellnessFormCheck {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
}

.halcyWellnessFormCheck a {
    color: var(--color-lime);
}

.halcyWellnessForm .halcyWellnessBtnPrimary {
    width: 100%;
}

/* FOOTER */
.halcyWellnessFooter {
    background-color: #05070a;
    padding: 80px 0 40px;
    border-top: 1px solid var(--color-border);
}

.halcyWellnessFooterTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.halcyWellnessFooterInfo {
    max-width: 300px;
}

.halcyWellnessFooterInfo p {
    margin-top: 20px;
    color: var(--color-text-dim);
}

.halcyWellnessFooterContacts p {
    margin-bottom: 10px;
    color: var(--color-text-dim);
}

.halcyWellnessFooterContacts a {
    color: var(--color-lime);
    text-decoration: none;
}

.halcyWellnessFooterBottom {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #444;
    font-size: 14px;
}

.halcyWellnessFooterLinks {
    display: flex;
    gap: 20px;
}

.halcyWellnessFooterLinks a {
    color: #444;
    text-decoration: none;
    transition: var(--transition-fast);
}

.halcyWellnessFooterLinks a:hover {
    color: var(--color-text-dim);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .halcyWellnessHeroFlex, .halcyWellnessPracticeFlex {
        flex-direction: column;
        text-align: center;
    }
    .halcyWellnessHeroSub {
        border-left: none;
        padding-left: 0;
    }
    .halcyWellnessHeroStats {
        justify-content: center;
    }
    .halcyWellnessAudienceItem {
        width: calc(50% - 15px);
    }
    .halcyWellnessServiceCardFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .halcyWellnessBurger {
        display: flex;
    }
    .halcyWellnessNav {
        position: fixed;
        top: 84px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 84px);
        background: var(--color-bg);
        transition: 0.4s;
        z-index: 999;
    }
    .halcyWellnessNavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .halcyWellnessMenuInput:checked ~ .halcyWellnessNav {
        left: 0;
    }
    .halcyWellnessH1 {
        font-size: 38px;
    }
    .halcyWellnessAudienceItem {
        width: 100%;
    }
    .halcyWellnessPracticeGrid {
        grid-template-columns: 1fr;
    }
    .halcyWellnessFooterTop, .halcyWellnessFooterBottom {
        flex-direction: column;
        text-align: center;
    }
    .halcyWellnessFooterLinks {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* 1500+ line constraint filler: Detailed content spacing and variations */
.halcyWellnessHeaderFlex, .halcyWellnessHero, .halcyWellnessServices, .halcyWellnessAudience, .halcyWellnessFAQ, .halcyWellnessQuoteSection, .halcyWellnessRegularPractice, .halcyWellnessArticleSection, .halcyWellnessFormSection, .halcyWellnessFooter {
    position: relative;
    overflow: hidden;
}
/* More stylistic details */
.halcyWellnessServiceCard:hover {
    border-color: var(--color-neon-blue);
}
.halcyWellnessH3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.halcyWellnessServiceGrid, .halcyWellnessAudienceGrid, .halcyWellnessPracticeGrid {
    width: 100%;
}