/* VARIABLES & RESET */
:root {
    --bg-dark: #020617;
    --neon-green: #22c55e;
    --neon-blue: #38bdf8;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* TYPOGRAPHY */
.pearlsetBalanceLifestyleGuideH1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.pearlsetBalanceLifestyleGuideH2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
}

.pearlsetBalanceLifestyleGuideH3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.pearlsetBalanceLifestyleGuideCenter {
    text-align: center;
}

/* HEADER */
.pearlsetBalanceLifestyleGuideHeader {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(15px);
}

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

.pearlsetBalanceLifestyleGuideLogo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--neon-blue);
    text-transform: uppercase;
}

.pearlsetBalanceLifestyleGuideHeaderDivider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    width: 100%;
    opacity: 0.5;
}

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

.pearlsetBalanceLifestyleGuideNavLink {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.pearlsetBalanceLifestyleGuideNavLink:hover {
    color: var(--neon-blue);
}

.pearlsetBalanceLifestyleGuideNavLink::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: var(--transition);
}

.pearlsetBalanceLifestyleGuideNavLink:hover::after {
    width: 100%;
}

.pearlsetBalanceLifestyleGuideMenuToggle {
    display: none;
}

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

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

.pearlsetBalanceLifestyleGuideHeroImage, .pearlsetBalanceLifestyleGuideHeroContent {
    flex: 1;
}

.pearlsetBalanceLifestyleGuideHeroImg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.15);
    object-fit: cover;
}

.pearlsetBalanceLifestyleGuideHeroSub {
    font-size: 1.25rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
}

.pearlsetBalanceLifestyleGuideHeroText {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.pearlsetBalanceLifestyleGuideHeroIcons {
    display: flex;
    gap: 25px;
    margin-bottom: 2.5rem;
}

.pearlsetBalanceLifestyleGuideHeroIconBox {
    text-align: center;
    background: var(--glass-bg);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    min-width: 110px;
}

.pearlsetBalanceLifestyleGuideNeonIcon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

.pearlsetBalanceLifestyleGuideHeroIconBox p {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--text-light);
}

.pearlsetBalanceLifestyleGuideButton {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.pearlsetBalanceLifestyleGuideButton:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

.pearlsetBalanceLifestyleGuideFullWidth {
    width: 100%;
}

/* REGULAR PRACTICE */
.pearlsetBalanceLifestyleGuideRegularPractice {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark), #0f172a);
}

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

.pearlsetBalanceLifestyleGuidePracticeContent, .pearlsetBalanceLifestyleGuidePracticeImage {
    flex: 1;
}

.pearlsetBalanceLifestyleGuidePracticeImg {
    width: 100%;
    border-radius: 20px;
}

.pearlsetBalanceLifestyleGuidePracticeList {
    list-style: none;
    margin: 25px 0;
}

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

.pearlsetBalanceLifestyleGuidePracticeList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

.pearlsetBalanceLifestyleGuidePracticeInfoPanel {
    background: var(--glass-bg);
    border-left: 4px solid var(--neon-green);
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 12px 12px 0;
}

/* SERVICES */
.pearlsetBalanceLifestyleGuideServices {
    padding: 100px 0;
}

.pearlsetBalanceLifestyleGuideServicesGrid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.pearlsetBalanceLifestyleGuideServiceCard {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pearlsetBalanceLifestyleGuideServiceCard:hover {
    border-color: var(--neon-blue);
    transform: translateY(-10px);
}

.pearlsetBalanceLifestyleGuideFeatured {
    border: 1px solid var(--neon-green);
    background: rgba(34, 197, 94, 0.03);
    position: relative;
    transform: scale(1.05);
}

.pearlsetBalanceLifestyleGuideFeatured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: var(--bg-dark);
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 20px;
}

.pearlsetBalanceLifestyleGuidePackageMeta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    height: 40px;
}

.pearlsetBalanceLifestyleGuidePrice {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

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

.pearlsetBalanceLifestyleGuideServiceFeatures li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.pearlsetBalanceLifestyleGuideServiceFeatures li::before {
    content: '✓';
    margin-right: 10px;
    color: var(--neon-green);
    font-weight: bold;
}

/* EXPERT SECTION */
.pearlsetBalanceLifestyleGuideExpert {
    padding: 100px 0;
    background: #020617;
}

.pearlsetBalanceLifestyleGuideQuoteBox {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: var(--glass-bg);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    position: relative;
}

.pearlsetBalanceLifestyleGuideQuoteBox::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 10rem;
    color: var(--neon-blue);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.pearlsetBalanceLifestyleGuideQuote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.4;
}

.pearlsetBalanceLifestyleGuideExpertMeta {
    text-align: right;
}

.pearlsetBalanceLifestyleGuideExpertName {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--neon-blue);
}

.pearlsetBalanceLifestyleGuideExpertTitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.pearlsetBalanceLifestyleGuideAltBg {
    background: #0f172a;
}

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

.pearlsetBalanceLifestyleGuideCol {
    flex: 1;
}

.pearlsetBalanceLifestyleGuideCol p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.pearlsetBalanceLifestyleGuideCustomList {
    list-style: none;
}

.pearlsetBalanceLifestyleGuideCustomList li {
    background: var(--glass-bg);
    margin-bottom: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.pearlsetBalanceLifestyleGuideThreeGrid {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.pearlsetBalanceLifestyleGuideTextCard {
    flex: 1;
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 20px;
}

.pearlsetBalanceLifestyleGuideH4 {
    color: var(--neon-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pearlsetBalanceLifestyleGuideExtraContent {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    border: 1px dashed var(--neon-green);
    border-radius: 20px;
}

.pearlsetBalanceLifestyleGuideSmallImg {
    width: 100%;
    border-radius: 20px;
}

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

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

.pearlsetBalanceLifestyleGuideFAQCard {
    margin-bottom: 15px;
}

.pearlsetBalanceLifestyleGuideDetails {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.pearlsetBalanceLifestyleGuideSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pearlsetBalanceLifestyleGuideSummary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--neon-blue);
}

.pearlsetBalanceLifestyleGuideDetails[open] .pearlsetBalanceLifestyleGuideSummary::after {
    content: '−';
}

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

/* TARGET AUDIENCE */
.pearlsetBalanceLifestyleGuideTargetAudience {
    padding: 100px 0;
    background: #020617;
}

.pearlsetBalanceLifestyleGuideIntroText {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pearlsetBalanceLifestyleGuideAccItem {
    border-bottom: 1px solid var(--glass-border);
}

.pearlsetBalanceLifestyleGuideAccItem summary {
    padding: 25px 0;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-light);
}

.pearlsetBalanceLifestyleGuideAccItem p {
    padding-bottom: 25px;
    color: var(--text-muted);
}

/* CONTACT FORM */
.pearlsetBalanceLifestyleGuideContact {
    padding: 100px 0;
    background: linear-gradient(0deg, #020617, #0f172a);
}

.pearlsetBalanceLifestyleGuideFormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

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

.pearlsetBalanceLifestyleGuideFormField {
    margin-bottom: 20px;
}

.pearlsetBalanceLifestyleGuideFormField label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--neon-blue);
}

.pearlsetBalanceLifestyleGuideFormField input, 
.pearlsetBalanceLifestyleGuideFormField textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px;
    color: #fff;
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
}

.pearlsetBalanceLifestyleGuideFormField input:focus, 
.pearlsetBalanceLifestyleGuideFormField textarea:focus {
    border-color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.1);
}

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

.pearlsetBalanceLifestyleGuideFormCheckbox input {
    margin-top: 5px;
}

.pearlsetBalanceLifestyleGuideFormCheckbox label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pearlsetBalanceLifestyleGuideFormCheckbox a {
    color: var(--neon-blue);
    text-decoration: none;
}

.pearlsetBalanceLifestyleGuideDisclaimer {
    margin-top: 25px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* FOOTER */
.pearlsetBalanceLifestyleGuideFooter {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    background: #020617;
}

.pearlsetBalanceLifestyleGuideFooterGrid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.pearlsetBalanceLifestyleGuideFooterBrand {
    max-width: 400px;
}

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

.pearlsetBalanceLifestyleGuideFooterContact a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.pearlsetBalanceLifestyleGuideFooterContact a:hover {
    color: var(--neon-blue);
}

.pearlsetBalanceLifestyleGuideFooterBottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.pearlsetBalanceLifestyleGuideLegalLinks a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.pearlsetBalanceLifestyleGuideLegalLinks a:hover {
    color: var(--neon-green);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pearlsetBalanceLifestyleGuideHeroWrapper, 
    .pearlsetBalanceLifestyleGuidePracticeWrapper,
    .pearlsetBalanceLifestyleGuideTwoCols {
        flex-direction: column;
        text-align: center;
    }

    .pearlsetBalanceLifestyleGuideHeroWrapper {
        flex-direction: column-reverse;
    }

    .pearlsetBalanceLifestyleGuideServicesGrid,
    .pearlsetBalanceLifestyleGuideThreeGrid {
        flex-direction: column;
    }

    .pearlsetBalanceLifestyleGuideHeroIcons {
        justify-content: center;
    }

    .pearlsetBalanceLifestyleGuideFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pearlsetBalanceLifestyleGuideNav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        transition: 0.5s;
        padding: 40px;
    }

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

    .pearlsetBalanceLifestyleGuideMenuToggle:checked ~ .pearlsetBalanceLifestyleGuideNav {
        left: 0;
    }

    .pearlsetBalanceLifestyleGuideBurger {
        display: block;
        cursor: pointer;
    }

    .pearlsetBalanceLifestyleGuideBurger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--neon-blue);
        margin: 5px 0;
        transition: 0.4s;
    }

    .pearlsetBalanceLifestyleGuideFooterGrid, .pearlsetBalanceLifestyleGuideFooterBottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .pearlsetBalanceLifestyleGuideLegalLinks {
        flex-direction: column;
        gap: 10px;
    }
}