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

:root {
    --color-bg: #111827;
    --color-slate: #94a3b8;
    --color-light: #e5e7eb;
    --color-white: #ffffff;
    --color-accent: #3b82f6;
    --color-glow: rgba(59, 130, 246, 0.15);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.habitusHeartLifestyleFieldBody {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--color-white);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Layout Containers */
.habitusHeartLifestyleFieldContainer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.habitusHeartLifestyleFieldContainerSmall {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header & Nav */
.habitusHeartLifestyleFieldHeader {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.habitusHeartLifestyleFieldLogoText {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--color-white);
    user-select: none;
}

.habitusHeartLifestyleFieldNavMenu {
    display: block;
}

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

.habitusHeartLifestyleFieldNavLink {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-slate);
}

.habitusHeartLifestyleFieldNavLink:hover {
    color: var(--color-white);
}

/* Burger Menu */
.habitusHeartLifestyleFieldMenuToggle {
    display: none;
}

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

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

/* Hero Section */
.habitusHeartLifestyleFieldHeroSec {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.habitusHeartLifestyleFieldHeroWrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.habitusHeartLifestyleFieldHeroImageSide {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.habitusHeartLifestyleFieldHeroImg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.habitusHeartLifestyleFieldImageOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.habitusHeartLifestyleFieldHeroTextSide {
    flex: 1.2;
}

.habitusHeartLifestyleFieldMainH1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    margin-bottom: 25px;
}

.habitusHeartLifestyleFieldHeroPara {
    font-size: 18px;
    color: var(--color-slate);
    margin-bottom: 20px;
}

.habitusHeartLifestyleFieldHeroBtnWrap {
    margin-top: 30px;
}

.habitusHeartLifestyleFieldCtaButton {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-bg);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.habitusHeartLifestyleFieldCtaButton:hover {
    background: var(--color-slate);
    transform: translateY(-2px);
}

/* Section Headings */
.habitusHeartLifestyleFieldSectionH2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.habitusHeartLifestyleFieldSectionH2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-accent);
}

/* Pricing Grid */
.habitusHeartLifestyleFieldServiceGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.habitusHeartLifestyleFieldPriceCard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.habitusHeartLifestyleFieldPriceCard:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
}

.habitusHeartLifestyleFieldPriceFeatured {
    border: 1px solid var(--color-accent);
    background: rgba(59, 130, 246, 0.05);
}

.habitusHeartLifestyleFieldPriceTitle {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.habitusHeartLifestyleFieldPriceValue {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-white);
}

.habitusHeartLifestyleFieldPriceValue span {
    font-size: 18px;
    font-weight: 400;
}

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

.habitusHeartLifestyleFieldPriceList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    color: var(--color-slate);
}

.habitusHeartLifestyleFieldCardBtn {
    text-align: center;
    border: 1px solid var(--color-light);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
}

.habitusHeartLifestyleFieldCardBtn:hover {
    background: var(--color-white);
    color: var(--color-bg);
}

.habitusHeartLifestyleFieldDisclaimerSmall {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: var(--color-slate);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Text Sections Two Columns */
.habitusHeartLifestyleFieldTextSection {
    background: #0f172a;
    position: relative;
}

.habitusHeartLifestyleFieldTwoCols {
    display: flex;
    gap: 40px;
}

.habitusHeartLifestyleFieldCol {
    flex: 1;
}

.habitusHeartLifestyleFieldTextPara {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--color-slate);
    text-align: justify;
}

.habitusHeartLifestyleFieldCustomUl {
    list-style: none;
    margin-bottom: 20px;
}

.habitusHeartLifestyleFieldCustomUl li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    color: var(--color-white);
    font-weight: 500;
}

.habitusHeartLifestyleFieldCustomUl li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Aurora Effects */
.habitusHeartLifestyleFieldAurora::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    filter: blur(150px);
    opacity: 0.1;
    z-index: 0;
}

.habitusHeartLifestyleFieldAuroraRight::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    filter: blur(150px);
    opacity: 0.1;
    z-index: 0;
}

/* Practice Section */
.habitusHeartLifestyleFieldPracticeSec {
    background: var(--color-bg);
}

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

.habitusHeartLifestyleFieldPracticeText {
    flex: 1.2;
}

.habitusHeartLifestyleFieldPracticeIntro {
    font-size: 18px;
    margin-bottom: 30px;
}

.habitusHeartLifestyleFieldCheckList {
    list-style: none;
}

.habitusHeartLifestyleFieldCheckItem {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--color-slate);
}

.habitusHeartLifestyleFieldCheckItem::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.habitusHeartLifestyleFieldPracticeImgSide {
    flex: 1;
}

.habitusHeartLifestyleFieldGeneralImg {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* Timeline */
.habitusHeartLifestyleFieldTimelineIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.habitusHeartLifestyleFieldTimelineWrapper {
    position: relative;
    padding-left: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.habitusHeartLifestyleFieldTimelineWrapper::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.habitusHeartLifestyleFieldTimelineItem {
    position: relative;
    margin-bottom: 40px;
}

.habitusHeartLifestyleFieldTimelineDot {
    position: absolute;
    left: -38px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent);
}

.habitusHeartLifestyleFieldTimelineTitle {
    font-size: 20px;
    margin-bottom: 5px;
}

.habitusHeartLifestyleFieldTimelineContent p {
    color: var(--color-slate);
}

/* FAQ */
.habitusHeartLifestyleFieldFaqList {
    max-width: 800px;
    margin: 0 auto;
}

.habitusHeartLifestyleFieldFaqItem {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.habitusHeartLifestyleFieldFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    list-style: none;
    display: flex;
    align-items: center;
}

.habitusHeartLifestyleFieldFaqSummary span {
    color: var(--color-accent);
    margin-right: 15px;
}

.habitusHeartLifestyleFieldFaqAnswer {
    padding: 0 20px 20px 55px;
    color: var(--color-slate);
    font-size: 16px;
}

/* Quote */
.habitusHeartLifestyleFieldQuoteSec {
    background: #0f172a;
    padding: 100px 0;
}

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

.habitusHeartLifestyleFieldQuoteIcon {
    font-size: 80px;
    color: var(--color-accent);
    line-height: 1;
    opacity: 0.3;
}

.habitusHeartLifestyleFieldQuoteText {
    font-size: 24px;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 30px;
    line-height: 1.5;
}

.habitusHeartLifestyleFieldQuoteAuthor {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-slate);
}

/* Form */
.habitusHeartLifestyleFieldFormSec {
    background: var(--color-bg);
}

.habitusHeartLifestyleFieldFormH2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

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

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

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

.habitusHeartLifestyleFieldLabel {
    font-size: 14px;
    font-weight: 600;
}

.habitusHeartLifestyleFieldInput, 
.habitusHeartLifestyleFieldTextarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: var(--color-white);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.habitusHeartLifestyleFieldInput:focus, 
.habitusHeartLifestyleFieldTextarea:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
}

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

.habitusHeartLifestyleFieldCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.habitusHeartLifestyleFieldCheckboxGroup a {
    text-decoration: underline;
}

.habitusHeartLifestyleFieldSubmitBtn {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.habitusHeartLifestyleFieldSubmitBtn:hover {
    background: #2563eb;
    box-shadow: 0 0 20px var(--color-glow);
}

/* Footer */
.habitusHeartLifestyleFieldFooter {
    background: #020617;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.habitusHeartLifestyleFieldFooterLogo {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.habitusHeartLifestyleFieldCopyright {
    font-size: 14px;
    color: var(--color-slate);
    margin-bottom: 10px;
}

.habitusHeartLifestyleFieldFooterContact {
    font-size: 14px;
    margin-bottom: 30px;
}

.habitusHeartLifestyleFieldFooterDisclaimer {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 12px;
    color: rgba(148, 163, 184, 0.6);
}

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

.habitusHeartLifestyleFieldFooterLinks a {
    font-size: 13px;
    color: var(--color-slate);
    text-decoration: underline;
}

.habitusHeartLifestyleFieldFooterLinks a:hover {
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 992px) {
    .habitusHeartLifestyleFieldHeroWrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .habitusHeartLifestyleFieldPracticeFlex {
        flex-direction: column;
    }
    
    .habitusHeartLifestyleFieldTwoCols {
        flex-direction: column;
    }
}

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

    .habitusHeartLifestyleFieldNavMenu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-bg);
        transition: 0.4s ease;
        padding: 40px 20px;
    }

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

    .habitusHeartLifestyleFieldMenuToggle:checked ~ .habitusHeartLifestyleFieldNavMenu {
        left: 0;
    }

    .habitusHeartLifestyleFieldMenuToggle:checked ~ .habitusHeartLifestyleFieldBurgerLabel span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .habitusHeartLifestyleFieldMenuToggle:checked ~ .habitusHeartLifestyleFieldBurgerLabel span:nth-child(2) {
        opacity: 0;
    }

    .habitusHeartLifestyleFieldMenuToggle:checked ~ .habitusHeartLifestyleFieldBurgerLabel span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .habitusHeartLifestyleFieldSectionH2 {
        font-size: 28px;
    }
}