/* General Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.CH_BodyMainWrap {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ice Reflections Effect */
body.CH_BodyMainWrap::before {
    content: "";
    position: fixed;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body.CH_BodyMainWrap::after {
    content: "";
    position: fixed;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(167, 243, 208, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Header & Navigation */
.CH_HeaderNavContainer {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
}

.CH_HeaderInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.CH_LogoTextBrand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #22d3ee;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.CH_HeaderDivider {
    height: 1px;
    width: 100%;
    background: rgba(226, 232, 240, 0.1);
}

.CH_NavigationMenu .CH_MenuListItems {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.CH_NavLink {
    text-decoration: none;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.CH_NavLink:hover {
    color: #22d3ee;
}

/* Mobile Menu Toggle */
.CH_MobileNavToggle {
    display: none;
}

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

.CH_BurgerIcon span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #22d3ee;
}

/* Hero Section */
.CH_HeroSection {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.CH_HeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.CH_HeroImageCol {
    flex: 1;
}

.CH_HeroImageWrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.CH_HeroImageOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), transparent 60%);
}

.CH_HeroTextCol {
    flex: 1.2;
}

.CH_HeroMainTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.CH_HeroSubTitle {
    font-size: 1.25rem;
    color: #22d3ee;
    margin-bottom: 2rem;
    font-weight: 500;
}

.CH_HeroDescription {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #94a3b8;
}

.CH_HeroCtaWrapper {
    margin-top: 2.5rem;
}

.CH_HeroMainButton {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #22d3ee;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.CH_HeroMainButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.3);
}

/* Common Section Styles */
.CH_ContentContainer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.CH_SectionMainHeading {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #ffffff;
}

.CH_TextContentWrap p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.CH_CustomListPoints {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.CH_CustomListPoints li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.CH_CustomListPoints li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-size: 1.5rem;
    line-height: 1;
}

/* Numbered Tips Grid */
.CH_NumberedTipsGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.CH_TipItemCard {
    flex: 1 1 calc(33.333% - 2rem);
    background: rgba(30, 41, 59, 0.5);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(226, 232, 240, 0.05);
    min-width: 280px;
}

.CH_TipNumber {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(34, 211, 238, 0.2);
    margin-bottom: 1rem;
}

.CH_TipTitle {
    font-size: 1.3rem;
    color: #a7f3d0;
    margin-bottom: 1rem;
}

.CH_TipDescription {
    font-size: 0.95rem;
    color: #94a3b8;
}

/* Practice Block (Text Left, Photo Right) */
.CH_PracticeBlock {
    padding: 5rem 2rem;
    background: rgba(30, 41, 59, 0.3);
}

.CH_PracticeContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.CH_PracticeTextCol {
    flex: 1;
}

.CH_PracticeImageCol {
    flex: 1;
}

.CH_PracticeTitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.CH_PracticeLead {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #22d3ee;
}

.CH_BenefitItem {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.CH_BenefitIcon {
    font-size: 1.5rem;
    color: #a7f3d0;
    flex-shrink: 0;
}

.CH_BenefitContent strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.CH_BenefitContent p {
    color: #94a3b8;
}

.CH_PracticeImageWrapper {
    border-radius: 20px;
    overflow: hidden;
}

.CH_PracticePrimaryImg {
    width: 100%;
    height: auto;
    display: block;
}

/* Audience Block (Tag Cloud) */
.CH_AudienceIntro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.CH_AudienceTagCloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.CH_AudienceTag {
    padding: 0.8rem 1.5rem;
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
    border-radius: 50px;
    font-size: 1rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
    transition: all 0.3s ease;
}

.CH_AudienceTag:hover {
    background: #22d3ee;
    color: #0f172a;
}

/* Pricing Cards */
.CH_PriceCardsGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.CH_PriceCardItem {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: rgba(30, 41, 59, 0.8);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.CH_PriceCardFeatured {
    border: 2px solid #22d3ee;
    position: relative;
    transform: scale(1.05);
}

.CH_PriceCardFeatured:hover {
    transform: scale(1.05) translateY(-10px);
}

.CH_PriceTitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.CH_PriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #22d3ee;
    margin-bottom: 2rem;
}

.CH_PriceFeatures {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.CH_PriceFeatures li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
    font-size: 0.95rem;
    color: #94a3b8;
}

.CH_PriceButton {
    display: block;
    padding: 1rem;
    background: rgba(226, 232, 240, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.CH_PriceCardFeatured .CH_PriceButton {
    background: #22d3ee;
    color: #0f172a;
}

.CH_PriceButton:hover {
    background: rgba(34, 211, 238, 0.2);
}

.CH_PriceCardFeatured .CH_PriceButton:hover {
    background: #06b6d4;
}

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

.CH_FaqDetails {
    background: rgba(30, 41, 59, 0.4);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.CH_FaqSummary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: #e2e8f0;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.CH_FaqSummary::after {
    content: "+";
    color: #22d3ee;
}

.CH_FaqDetails[open] .CH_FaqSummary::after {
    content: "-";
}

.CH_FaqAnswer {
    padding: 0 1.5rem 1.5rem;
    color: #94a3b8;
    border-top: 1px solid rgba(226, 232, 240, 0.05);
    padding-top: 1rem;
}

/* Expert Quote */
.CH_QuoteCard {
    background: rgba(30, 41, 59, 0.6);
    padding: 4rem;
    border-radius: 25px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    text-align: center;
}

.CH_MainQuote {
    font-size: 1.8rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.CH_QuoteAuthor {
    font-size: 1.1rem;
    color: #a7f3d0;
    font-weight: 600;
}

/* Form Block */
.CH_FormWrapper {
    background: #1e293b;
    padding: 4rem;
    border-radius: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.CH_FormSubheading {
    text-align: center;
    margin-bottom: 3rem;
    color: #94a3b8;
}

.CH_FormFieldGroup {
    margin-bottom: 1.5rem;
}

.CH_FormLabel {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #22d3ee;
}

.CH_FormInput, .CH_FormTextarea {
    width: 100%;
    padding: 1rem;
    background: #0f172a;
    border: 1px solid rgba(226, 232, 240, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
}

.CH_FormTextarea {
    min-height: 150px;
    resize: vertical;
}

.CH_FormCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.CH_FormCheckbox {
    margin-top: 0.3rem;
}

.CH_CheckboxLabel {
    font-size: 0.85rem;
    color: #94a3b8;
}

.CH_CheckboxLabel a {
    color: #22d3ee;
    text-decoration: underline;
}

.CH_FormSubmitBtn {
    width: 100%;
    padding: 1.2rem;
    background: #22d3ee;
    color: #0f172a;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.CH_FormSubmitBtn:hover {
    background: #06b6d4;
}

/* Footer Area */
.CH_MainFooterArea {
    padding: 4rem 2rem;
    background: #020617;
    text-align: center;
    border-top: 1px solid rgba(226, 232, 240, 0.05);
}

.CH_FooterBrand {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.CH_FooterContactInfo {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.CH_FooterLegalNav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.CH_FooterLink {
    text-decoration: none;
    color: #64748b;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.CH_FooterLink:hover {
    color: #22d3ee;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .CH_HeroContainer, .CH_PracticeContainer {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    .CH_HeroMainTitle {
        font-size: 2.8rem;
    }
    .CH_PriceCardFeatured {
        transform: scale(1);
    }
    .CH_PriceCardFeatured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .CH_NavigationMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        padding: 2rem;
        border-bottom: 1px solid rgba(226, 232, 240, 0.1);
    }
    .CH_MenuListItems {
        flex-direction: column;
        align-items: center;
    }
    .CH_BurgerIcon {
        display: flex;
    }
    .CH_MobileNavToggle:checked ~ .CH_NavigationMenu {
        display: block;
    }
    .CH_HeroMainTitle {
        font-size: 2.2rem;
    }
    .CH_FormWrapper {
        padding: 2rem;
    }
    .CH_QuoteCard {
        padding: 2rem;
    }
    .CH_MainQuote {
        font-size: 1.4rem;
    }
}

/* Batch legal/thank pages shared styles */
.policy-page,
.legal-page,
.thank-page {
    min-height: 100vh;
}

.policy-shell,
.legal-container,
.thank-shell {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) 0;
}

.policy-card,
.thank-card {
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 28px;
    background: var(--card-bg, var(--plasma-card, var(--white, #ffffff)));
    color: inherit;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    padding: clamp(26px, 5vw, 56px);
}

.policy-title,
.thank-card h1 {
    margin: 0 0 18px;
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.policy-subtitle,
.policy-lead,
.thank-eyebrow,
.thank-card p {
    color: var(--text-secondary, var(--text-dim, var(--plasma-subtext, var(--gray-text, inherit))));
}

.policy-lead,
.thank-card > p {
    font-size: clamp(1rem, 2vw, 1.16rem);
    margin-bottom: 28px;
}

.policy-section {
    padding: 24px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.policy-section h2,
.thank-next h2 {
    margin: 0 0 12px;
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

.policy-section p,
.thank-next p {
    margin: 0 0 12px;
    line-height: 1.75;
}

.policy-nav,
.thank-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.policy-back-link,
.thank-button,
.thank-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.thank-button,
.policy-nav .policy-back-link:first-child {
    background: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb)))));
    color: var(--main-bg, var(--plasma-bg, #ffffff));
    border-color: transparent;
}

.thank-card {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.thank-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #22c55e)))));
    color: var(--main-bg, var(--plasma-bg, #ffffff));
    font-size: 42px;
    font-weight: 900;
}

.thank-next {
    margin: 28px auto 0;
    padding: 22px;
    border-radius: 20px;
    background: rgba(148, 163, 184, 0.12);
    text-align: left;
}

.policy-card a,
.thank-card a {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, currentColor)))));
}

@media (max-width: 680px) {
    .policy-shell,
    .legal-container,
    .thank-shell {
        width: min(100% - 20px, 1040px);
        padding: 28px 0;
    }

    .policy-card,
    .thank-card {
        border-radius: 20px;
        padding: 22px;
    }

    .policy-nav,
    .thank-actions {
        flex-direction: column;
    }

    .policy-back-link,
    .thank-button,
    .thank-link {
        width: 100%;
    }
}
/* Batch legal readability patch */
.policy-page,
.legal-page,
.thank-page {
    background-color: var(--main-bg, var(--plasma-bg, var(--behogino-bg, var(--berry-soft, #0f172a))));
}

.policy-card,
.thank-card {
    background: rgba(255, 255, 255, 0.97) !important;
    color: #172033 !important;
    border-color: rgba(15, 23, 42, 0.10) !important;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.24) !important;
}

.policy-title,
.thank-card h1,
.policy-section h2,
.thank-next h2 {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb))))) !important;
    -webkit-text-fill-color: currentColor !important;
}

.policy-subtitle,
.policy-lead,
.thank-eyebrow,
.thank-card p,
.policy-section p,
.thank-next p {
    color: #334155 !important;
}

.policy-section {
    border-top-color: rgba(15, 23, 42, 0.12) !important;
}

.policy-card a,
.thank-card a {
    color: var(--accent-color, var(--accent, var(--plasma-accent, var(--berry-main, var(--primary, #2563eb))))) !important;
}

.policy-nav .policy-back-link:first-child,
.thank-button {
    color: #06111f !important;
}

.thank-next {
    background: #f1f5f9 !important;
}

/* Batch mobile overflow safety */
@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    body * {
        min-width: 0;
    }

    img,
    video,
    svg {
        max-width: 100%;
        height: auto;
    }

    h1,
    h2,
    .policy-title,
    .thank-card h1 {
        overflow-wrap: anywhere;
        word-break: normal;
    }
}
