/* RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.CbmG_BodyRoot {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #111827;
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* AQUA GLOW */
.CbmG_AquaGlowFrame {
    border: 1px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.CbmG_AquaGlowFrame:hover {
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

/* HEADER */
.CbmG_HeaderMain {
    background-color: #111827;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.CbmG_NavigationRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.CbmG_LogoBrandText {
    font-size: 28px;
    font-weight: 800;
    color: #4f46e5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.CbmG_NavLinkSimple {
    text-decoration: none;
    color: #f8fafc;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.CbmG_NavLinkSimple:hover {
    color: #c4b5fd;
}

/* BURGER */
.CbmG_BurgerHiddenInput {
    display: none;
}

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

.CbmG_BurgerIconLabel span {
    width: 25px;
    height: 3px;
    background-color: #f8fafc;
    border-radius: 2px;
}

.CbmG_HeaderDoubleLineThin {
    height: 1px;
    background-color: #1f2937;
    width: 100%;
}

.CbmG_HeaderDoubleLineThick {
    height: 2px;
    background-color: #374151;
    width: 100%;
    margin-top: 2px;
}

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

.CbmG_HeroFlexContent {
    display: flex;
    align-items: center;
    gap: 50px;
}

.CbmG_HeroTextCol {
    flex: 1;
}

.CbmG_HeroImageCol {
    flex: 1;
    text-align: right;
}

.CbmG_MainHeadlineH1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #f8fafc;
}

.CbmG_HeroDescriptionPara {
    font-size: 18px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.CbmG_ButtonPrimaryAction {
    display: inline-block;
    padding: 16px 36px;
    background-color: #4f46e5;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.CbmG_ButtonPrimaryAction:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
}

.CbmG_HeroCtaWrapper {
    margin-bottom: 50px;
}

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

.CbmG_HeroMiniCardItem {
    flex: 1;
    padding: 20px;
    background-color: #1e293b;
    border-radius: 8px;
}

.CbmG_FeatureIconBox {
    font-size: 24px;
    color: #00ffff;
    margin-bottom: 10px;
    display: block;
}

.CbmG_FeatureTitleSm {
    font-size: 16px;
    margin-bottom: 8px;
    color: #c4b5fd;
}

.CbmG_FeatureTextSm {
    font-size: 13px;
    color: #cbd5e1;
}

.CbmG_HeroMainVisualImg {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* QUOTE */
.CbmG_SectionQuoteBlock {
    padding: 80px 0;
    background-color: #0f172a;
}

.CbmG_QuoteCardContainer {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1e293b;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    text-align: center;
}

.CbmG_CardShadowLight {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.CbmG_QuoteSymbolDecoration {
    font-size: 100px;
    color: #4f46e5;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.2;
    font-family: serif;
}

.CbmG_QuoteTextContent {
    font-size: 24px;
    font-style: italic;
    color: #f8fafc;
    margin-bottom: 30px;
}

.CbmG_QuoteAuthorName {
    font-weight: 700;
    font-size: 18px;
    color: #c4b5fd;
}

.CbmG_QuoteAuthorStatus {
    font-size: 14px;
    color: #94a3b8;
}

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

.CbmG_SectionHeaderCenter {
    text-align: center;
    margin-bottom: 60px;
}

.CbmG_HeadlineH2Title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #f8fafc;
}

.CbmG_HeadlineSubText {
    font-size: 18px;
    color: #94a3b8;
}

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

.CbmG_AudienceListCol {
    flex: 1;
}

.CbmG_UnorderedListStyle {
    list-style: none;
}

.CbmG_ListItemElement {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.CbmG_ListItemElement::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

/* BENEFITS */
.CbmG_SectionBenefitsBlock {
    padding: 100px 0;
    background-color: #0f172a;
}

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

.CbmG_BenefitsTextContent {
    flex: 1.2;
}

.CbmG_BenefitsImageWrapper {
    flex: 0.8;
}

.CbmG_BenefitsIntroText {
    margin-bottom: 30px;
    font-size: 18px;
    color: #c4b5fd;
}

.CbmG_NumberedListCustom {
    list-style: none;
    counter-reset: benefit-counter;
}

.CbmG_NumListItem {
    counter-increment: benefit-counter;
    margin-bottom: 25px;
    padding-left: 60px;
    position: relative;
}

.CbmG_NumListItem::before {
    content: counter(benefit-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #4f46e5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.CbmG_BenefitPhotoImg {
    max-width: 100%;
    border-radius: 15px;
}

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

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

.CbmG_FAQItemDetails {
    background-color: #1e293b;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.CbmG_FAQSummaryTitle {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    list-style: none;
    position: relative;
    padding-right: 50px;
}

.CbmG_FAQSummaryTitle::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 24px;
    color: #00ffff;
}

details[open] .CbmG_FAQSummaryTitle::after {
    content: "-";
}

.CbmG_FAQAnswerText {
    padding: 0 20px 20px 20px;
    color: #cbd5e1;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* PRICING */
.CbmG_SectionPricingBlock {
    padding: 100px 0;
    background-color: #0f172a;
}

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

.CbmG_PriceCardItem {
    flex: 1;
    max-width: 350px;
    background-color: #1e293b;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.CbmG_PriceCardFeatured {
    transform: scale(1.05);
    border-color: #4f46e5;
    z-index: 2;
}

.CbmG_PriceIconBox {
    font-size: 40px;
    color: #4f46e5;
    margin-bottom: 20px;
}

.CbmG_PriceCardName {
    font-size: 22px;
    margin-bottom: 10px;
}

.CbmG_PriceTagValue {
    font-size: 32px;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 25px;
}

.CbmG_PriceIncludesList {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.CbmG_PriceIncludesList li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #cbd5e1;
    padding-left: 20px;
    position: relative;
}

.CbmG_PriceIncludesList li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4f46e5;
}

.CbmG_PriceActionButton {
    display: block;
    padding: 14px;
    background-color: transparent;
    border: 2px solid #4f46e5;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.CbmG_PriceActionButton:hover {
    background-color: #4f46e5;
}

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

.CbmG_BgLightAlternative {
    background-color: #1e293b;
}

.CbmG_ArticleContentFlow {
    max-width: 900px;
    margin: 0 auto;
}

.CbmG_ArticleMainTitle {
    font-size: 32px;
    margin-bottom: 25px;
    color: #c4b5fd;
}

.CbmG_ArticleSubTitle {
    font-size: 22px;
    margin: 35px 0 15px;
    color: #f8fafc;
}

.CbmG_ArticleParagraph {
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 17px;
}

.CbmG_InternalSimpleQuote {
    display: block;
    border-left: 4px solid #00ffff;
    padding: 20px;
    background-color: #0f172a;
    font-style: italic;
    margin: 30px 0;
    font-size: 20px;
}

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

.CbmG_FormFlexWrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.CbmG_FormInfoCol {
    flex: 1;
}

.CbmG_FormActualCol {
    flex: 1;
}

.CbmG_FormDescriptionText {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 30px;
}

.CbmG_ContactDetailsBox p {
    margin-bottom: 10px;
}

.CbmG_ContactFormElement {
    background-color: #1e293b;
    padding: 40px;
    border-radius: 12px;
}

.CbmG_FormFieldGroup {
    margin-bottom: 20px;
}

.CbmG_FormInputLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #c4b5fd;
}

.CbmG_FormInputField, .CbmG_FormTextAreaField {
    width: 100%;
    padding: 12px 15px;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
}

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

.CbmG_FormCheckboxLabel {
    font-size: 13px;
    color: #94a3b8;
}

.CbmG_FormCheckboxLabel a {
    color: #00ffff;
}

.CbmG_FormSubmitBtn {
    width: 100%;
    padding: 15px;
    background-color: #4f46e5;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.CbmG_FormSubmitBtn:hover {
    background-color: #4338ca;
}

/* FOOTER */
.CbmG_FooterMain {
    background-color: #0f172a;
    padding: 60px 0 30px;
    border-top: 1px solid #1f2937;
}

.CbmG_FooterTopContent {
    text-align: center;
    margin-bottom: 40px;
}

.CbmG_FooterLogo {
    font-size: 24px;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 15px;
}

.CbmG_FooterCopyText {
    color: #64748b;
    font-size: 14px;
}

.CbmG_FooterContactEmail {
    margin-top: 10px;
    font-size: 14px;
}

.CbmG_FooterContactEmail a {
    color: #c4b5fd;
    text-decoration: none;
}

.CbmG_FooterLinksRow {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #1e293b;
    padding-top: 30px;
}

.CbmG_FooterNavLink {
    color: #94a3b8;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.CbmG_FooterNavLink:hover {
    color: #00ffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .CbmG_HeroFlexContent, .CbmG_AudienceListGrid, .CbmG_BenefitsFlexLayout, .CbmG_PricingCardsGrid, .CbmG_FormFlexWrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .CbmG_HeroImageCol, .CbmG_BenefitsImageWrapper {
        text-align: center;
        margin-top: 40px;
    }
    .CbmG_PriceCardItem {
        max-width: 100%;
        transform: none;
    }
    .CbmG_MainHeadlineH1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .CbmG_BurgerIconLabel {
        display: flex;
    }
    .CbmG_NavMenuListItems {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #111827;
        flex-direction: column;
        padding: 20px;
        border-bottom: 2px solid #4f46e5;
    }
    .CbmG_BurgerToggle:checked ~ .CbmG_NavMenuListItems {
        display: flex;
    }
    .CbmG_HeroFeatureGrid {
        flex-direction: column;
    }
}

/* 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;
    }
}
