/* 
  File: assets/style.css
  Theme: Graphite-Neon
  Colors: #020617 (bg), #22c55e (green), #38bdf8 (blue), #e2e8f0 (text)
*/

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

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #020617;
    color: #e2e8f0;
    line-height: 1.6;
}

body.BesizolecaPath_MainBodyContainer {
    overflow-x: hidden;
}

/* REUSABLE COMPONENTS */
.BesizolecaPath_ContainerBox {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.BesizolecaPath_ContainerBox.Narrow {
    max-width: 800px;
}

.BesizolecaPath_SectionTitleH2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.BesizolecaPath_SectionSubtitleP {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 700px;
}

.BesizolecaPath_SectionHeaderCentered {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HEADER STYLES (Variant 5) */
.BesizolecaPath_SiteHeaderWrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.BesizolecaPath_NeonHeaderStripe {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #22c55e, #38bdf8, #22c55e);
    background-size: 200% auto;
    animation: BesizolecaPath_GlowMove 4s linear infinite;
}

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

.BesizolecaPath_HeaderContentContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.BesizolecaPath_LogoBrandText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e2e8f0;
    letter-spacing: 1px;
}

.BesizolecaPath_LogoBrandText.Mini {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

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

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

.BesizolecaPath_NavLink:hover {
    color: #38bdf8;
    text-shadow: 0 0 8px #38bdf8;
}

.BesizolecaPath_NavLink.ContactBtn {
    padding: 8px 20px;
    border: 1px solid #22c55e;
    border-radius: 4px;
    color: #22c55e;
}

.BesizolecaPath_NavLink.ContactBtn:hover {
    background: #22c55e;
    color: #020617;
    box-shadow: 0 0 15px #22c55e;
}

/* Mobile Menu Logic (Pure CSS) */
.BesizolecaPath_MenuHiddenCheckbox { display: none; }
.BesizolecaPath_BurgerMenuButton { display: none; cursor: pointer; }

@media (max-width: 992px) {
    .BesizolecaPath_BurgerMenuButton {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .BesizolecaPath_BurgerMenuButton span {
        width: 30px;
        height: 3px;
        background: #38bdf8;
        transition: 0.3s;
    }
    .BesizolecaPath_NavigationMenuDesktop {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #020617;
        transition: 0.4s ease-in-out;
    }
    .BesizolecaPath_NavListElement {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    #BesizolecaPath_MobileMenuTrigger:checked ~ .BesizolecaPath_NavigationMenuDesktop {
        left: 0;
    }
}

/* HERO SECTION (Variant 14) */
.BesizolecaPath_HeroSectionBlock {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.05), transparent);
}

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

.BesizolecaPath_HeroTextContent {
    flex: 1;
}

.BesizolecaPath_MainHeadingH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.BesizolecaPath_HeroDescriptionText {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.BesizolecaPath_HeroSecondaryText {
    margin-bottom: 35px;
    color: #64748b;
}

.BesizolecaPath_PrimaryActionButton {
    display: inline-block;
    padding: 15px 40px;
    background: #38bdf8;
    color: #020617;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.BesizolecaPath_PrimaryActionButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5);
}

.BesizolecaPath_HeroSmallCardsRow {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.BesizolecaPath_HeroMiniCardItem {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-left: 3px solid #22c55e;
    transition: background 0.3s;
}

.BesizolecaPath_HeroMiniCardItem:hover {
    background: rgba(255, 255, 255, 0.06);
}

.BesizolecaPath_MiniIconBox {
    color: #22c55e;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.BesizolecaPath_MiniCardText {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
}

.BesizolecaPath_HeroImageSide {
    flex: 1;
}

.BesizolecaPath_HeroMainMedia {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.1);
}

@media (max-width: 992px) {
    .BesizolecaPath_HeroFlexWrapper { flex-direction: column; text-align: center; }
    .BesizolecaPath_MainHeadingH1 { font-size: 2.5rem; }
    .BesizolecaPath_HeroSmallCardsRow { flex-direction: column; }
}

/* PRACTICE SECTION (Variant 6) */
.BesizolecaPath_PracticeSectionBlock {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.BesizolecaPath_PracticeLayoutGrid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.BesizolecaPath_PracticeTextContent { flex: 1.2; }
.BesizolecaPath_PracticeMediaSide { flex: 0.8; }

.BesizolecaPath_BenefitsListWithLines {
    margin-top: 40px;
}

.BesizolecaPath_BenefitLineItem {
    padding: 30px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.BesizolecaPath_BenefitLineItem:last-child {
    border-bottom: none;
}

.BesizolecaPath_BenefitTitleH3 {
    color: #22c55e;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.BesizolecaPath_BenefitDescText {
    color: #94a3b8;
}

.BesizolecaPath_PracticeLargeImage {
    width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.15));
}

@media (max-width: 992px) {
    .BesizolecaPath_PracticeLayoutGrid { flex-direction: column; }
}

/* PRICES SECTION (Variant 5 - Switcher) */
.BesizolecaPath_PricesSectionBlock {
    padding: 100px 0;
    background: #0f172a;
}

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

.BesizolecaPath_SwitchLabelsContainer {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 50px;
    margin-bottom: 50px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.BesizolecaPath_SwitchLabelItem {
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 600;
}

.BesizolecaPath_SwitchInputHidden:checked + .BesizolecaPath_SwitchInputHidden + .BesizolecaPath_SwitchLabelsContainer label:nth-child(2),
#Besizoleca_BasicFormat:checked ~ .BesizolecaPath_SwitchLabelsContainer label:nth-child(1) {
    background: #38bdf8;
    color: #020617;
}

#Besizoleca_ExtendedFormat:checked ~ .BesizolecaPath_SwitchLabelsContainer label:nth-child(2) {
    background: #38bdf8;
    color: #020617;
}

#Besizoleca_ExtendedFormat:checked ~ .BesizolecaPath_SwitchLabelsContainer label:nth-child(1) {
    background: transparent;
    color: #e2e8f0;
}

.BesizolecaPath_PriceCardsDisplayArea {
    width: 100%;
}

.BesizolecaPath_PricingCardContent {
    display: none;
}

#Besizoleca_BasicFormat:checked ~ .BesizolecaPath_PriceCardsDisplayArea .BasicSet,
#Besizoleca_ExtendedFormat:checked ~ .BesizolecaPath_PriceCardsDisplayArea .ExtendedSet {
    display: block;
}

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

.BesizolecaPath_PricingItemCard {
    background: #020617;
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.BesizolecaPath_PricingItemCard:hover {
    transform: scale(1.03);
    border-color: #38bdf8;
}

.BesizolecaPath_PricingItemCard.Highlighted {
    border: 1px solid #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.BesizolecaPath_PriceTag {
    font-size: 2.2rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 10px;
}

.BesizolecaPath_PriceNameH3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.BesizolecaPath_PriceFeaturesList {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
}

.BesizolecaPath_PriceFeaturesList li {
    padding: 10px 0;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.BesizolecaPath_PriceButtonLink {
    display: block;
    padding: 12px;
    border: 1px solid #38bdf8;
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.BesizolecaPath_PriceButtonLink:hover {
    background: #38bdf8;
    color: #020617;
}

/* AUDIENCE SECTION (Variant 15) */
.BesizolecaPath_AudienceSectionBlock {
    padding: 100px 0;
}

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

.BesizolecaPath_AudienceGridContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.BesizolecaPath_AudienceItemCard {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: 0.3s;
}

.BesizolecaPath_AudienceItemCard:hover {
    background: rgba(56, 189, 248, 0.05);
    border-color: rgba(56, 189, 248, 0.4);
}

.BesizolecaPath_AudienceIcon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.BesizolecaPath_AudienceTitleH4 {
    color: #38bdf8;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

/* EXTRA TEXT SECTIONS */
.BesizolecaPath_ExtraTextSectionBlock {
    padding: 100px 0;
}

.BesizolecaPath_ExtraTextSectionBlock.AltBg {
    background: #0f172a;
}

.BesizolecaPath_AdviceListContainer {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.BesizolecaPath_AdviceItem {
    display: flex;
    gap: 30px;
}

.BesizolecaPath_AdviceNumber {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(56, 189, 248, 0.2);
    line-height: 1;
}

.BesizolecaPath_AdviceHeadline {
    color: #22c55e;
    margin-bottom: 10px;
}

.BesizolecaPath_StandardParagraph {
    max-width: 900px;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.BesizolecaPath_StandardBulletList {
    list-style: none;
    margin-bottom: 30px;
}

.BesizolecaPath_StandardBulletList li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.BesizolecaPath_StandardBulletList li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #38bdf8;
}

.BesizolecaPath_ThreeColumnsLayout {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.BesizolecaPath_ColumnItem {
    flex: 1;
}

.BesizolecaPath_ColumnTitleH4 {
    color: #38bdf8;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .BesizolecaPath_ThreeColumnsLayout { flex-direction: column; }
}

/* EXPERT SECTION (Variant 4) */
.BesizolecaPath_ExpertSectionBlock {
    padding: 120px 0;
    background: linear-gradient(to bottom, transparent, #0f172a);
}

.BesizolecaPath_ExpertQuoteCard {
    background: #1e293b;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.BesizolecaPath_QuoteSymbol {
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 6rem;
    color: rgba(34, 197, 94, 0.1);
    font-family: serif;
}

.BesizolecaPath_MainQuoteText {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: #f1f5f9;
}

.BesizolecaPath_ExpertInfoRow {
    display: flex;
    align-items: center;
    gap: 20px;
}

.BesizolecaPath_ExpertAvatarBox {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #22c55e;
}

.BesizolecaPath_ExpertAvatarImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.BesizolecaPath_ExpertFullName {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #22c55e;
}

.BesizolecaPath_ExpertTitle {
    color: #64748b;
    font-size: 0.9rem;
}

/* FAQ SECTION (Variant 14) */
.BesizolecaPath_FaqSectionBlock {
    padding: 100px 0;
}

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

.BesizolecaPath_FaqItemContainer {
    margin-bottom: 25px;
}

.BesizolecaPath_FaqPreDescription {
    font-size: 0.85rem;
    color: #38bdf8;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.BesizolecaPath_FaqDetailsElement {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.BesizolecaPath_FaqSummaryTitle {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.BesizolecaPath_FaqSummaryTitle:hover {
    background: rgba(56, 189, 248, 0.05);
}

.BesizolecaPath_FaqSummaryTitle::after {
    content: "+";
    color: #38bdf8;
    font-size: 1.5rem;
}

.BesizolecaPath_FaqDetailsElement[open] .BesizolecaPath_FaqSummaryTitle::after {
    content: "−";
}

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

/* FORM SECTION */
.BesizolecaPath_FeedbackFormSectionBlock {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.05), transparent);
}

.BesizolecaPath_FormHeader {
    text-align: center;
    margin-bottom: 50px;
}

.BesizolecaPath_MainContactForm {
    background: #0f172a;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.BesizolecaPath_FormInputGroup {
    margin-bottom: 25px;
}

.BesizolecaPath_InputLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #cbd5e1;
}

.BesizolecaPath_FormInputElement, 
.BesizolecaPath_FormTextareaElement {
    width: 100%;
    padding: 15px;
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #e2e8f0;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.BesizolecaPath_FormInputElement:focus, 
.BesizolecaPath_FormTextareaElement:focus {
    outline: none;
    border-color: #38bdf8;
}

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

.BesizolecaPath_CustomCheckboxInput {
    margin-top: 5px;
}

.BesizolecaPath_CheckboxLabelText {
    font-size: 0.9rem;
    color: #94a3b8;
}

.BesizolecaPath_InlineLink {
    color: #38bdf8;
    text-decoration: underline;
}

.BesizolecaPath_SubmitButtonElement {
    width: 100%;
    padding: 18px;
    background: #22c55e;
    color: #020617;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.BesizolecaPath_SubmitButtonElement:hover {
    background: #16a34a;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

/* FOOTER STYLES */
.BesizolecaPath_SiteFooterWrapper {
    padding: 80px 0 40px 0;
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.BesizolecaPath_FooterTagline {
    color: #64748b;
    max-width: 300px;
}

.BesizolecaPath_FooterContacts {
    text-align: right;
}

.BesizolecaPath_FooterLink {
    color: #38bdf8;
    text-decoration: none;
}

.BesizolecaPath_FooterDividerLine {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.BesizolecaPath_FooterBottomRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.BesizolecaPath_CopyrightNotice {
    color: #475569;
    font-size: 0.9rem;
}

.BesizolecaPath_FooterLegalNav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

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

.BesizolecaPath_FooterLegalLink:hover {
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .BesizolecaPath_FooterTopRow, 
    .BesizolecaPath_FooterBottomRow {
        flex-direction: column;
        text-align: center;
    }
    .BesizolecaPath_FooterContacts {
        text-align: center;
    }
}

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