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

html {
    scroll-behavior: smooth;
}

body.BetaqafafuViewBodyMain {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1f2937;
    color: #f7fee7;
    line-height: 1.6;
    overflow-x: hidden;
}

/* CONTAINER */
.BetaqafafuViewContainerLayout, .BetaqafafuViewContainerHeader {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.BetaqafafuViewHeaderWrapper {
    background-color: rgba(31, 41, 55, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #45FFCE;
}

.BetaqafafuViewContainerHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.BetaqafafuViewLogoText {
    font-size: 24px;
    font-weight: 800;
    color: #45FFCE;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.BetaqafafuViewNavLinkItem {
    text-decoration: none;
    color: #f7fee7;
    font-weight: 500;
    transition: color 0.3s ease;
}

.BetaqafafuViewNavLinkItem:hover {
    color: #45FFCE;
}

/* MOBILE MENU */
.BetaqafafuViewMobileCheckbox {
    display: none;
}

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

.BetaqafafuViewBurgerIcon span {
    width: 25px;
    height: 3px;
    background-color: #45FFCE;
    transition: 0.3s;
}

.BetaqafafuViewMobileNavDropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1f2937;
    flex-direction: column;
    padding: 20px;
    border-bottom: 2px solid #45FFCE;
}

.BetaqafafuViewMobileLink {
    color: #f7fee7;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
}

/* PATTERN BAR (Variant 7) */
.BetaqafafuViewPatternDividerLine {
    height: 10px;
    background-color: #bef264;
    background-image: radial-gradient(#84cc16 1px, transparent 1px);
    background-size: 8px 8px;
    opacity: 0.4;
}

/* HERO (Variant 2) */
.BetaqafafuViewHeroSectionBlock {
    padding: 100px 0;
}

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

.BetaqafafuViewHeroImageSide {
    flex: 1;
}

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

.BetaqafafuViewHeroMainImg {
    width: 100%;
    display: block;
    object-fit: cover;
}

.BetaqafafuViewBadgeGuideElement {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #45FFCE;
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.BetaqafafuViewHeroTextSide {
    flex: 1;
}

.BetaqafafuViewMainHeadingH1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #f7fee7;
}

.BetaqafafuViewSubtextHeading {
    font-size: 20px;
    color: #45FFCE;
    margin-bottom: 30px;
    font-weight: 600;
}

.BetaqafafuViewParagraphText {
    margin-bottom: 20px;
    font-size: 17px;
    opacity: 0.9;
}

.BetaqafafuViewCtaButtonLink {
    display: inline-block;
    padding: 18px 40px;
    background-color: #45FFCE;
    color: #1f2937;
    text-decoration: none;
    font-weight: 800;
    border-radius: 10px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(69, 255, 206, 0.4);
    transition: 0.3s ease;
    margin-top: 20px;
}

.BetaqafafuViewCtaButtonLink:hover {
    box-shadow: 0 0 30px rgba(69, 255, 206, 0.7);
    transform: translateY(-3px);
}

/* PRICING (Variant 4) */
.BetaqafafuViewPricingSectionBlock {
    padding: 100px 0;
    background-color: #1a232e;
}

.BetaqafafuViewSectionTitleH2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #45FFCE;
}

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

.BetaqafafuViewPriceCardItem {
    background: #1f2937;
    border: 2px solid #374151;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    text-align: center;
    transition: 0.3s;
}

.BetaqafafuViewPriceCardItem:hover {
    border-color: #45FFCE;
    transform: translateY(-10px);
}

.BetaqafafuViewCardItemAccent {
    border-color: #45FFCE;
    background: #243141;
}

.BetaqafafuViewCardIconBox {
    font-size: 50px;
    margin-bottom: 20px;
}

.BetaqafafuViewCardTitleH3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.BetaqafafuViewPriceValue {
    font-size: 32px;
    font-weight: 800;
    color: #45FFCE;
    margin-bottom: 25px;
}

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

.BetaqafafuViewCardFeaturesList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.BetaqafafuViewCardFeaturesList li::before {
    content: "✓ ";
    color: #45FFCE;
    font-weight: bold;
}

.BetaqafafuViewCardButtonCta {
    display: block;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #45FFCE;
    color: #45FFCE;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
}

.BetaqafafuViewCardButtonCta:hover {
    background: #45FFCE;
    color: #1f2937;
}

/* FAQ (Variant 11) */
.BetaqafafuViewFaqSectionBlock {
    padding: 100px 0;
}

.BetaqafafuViewFaqIntroText {
    max-width: 700px;
    margin: -40px auto 40px;
    text-align: center;
    opacity: 0.8;
}

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

.BetaqafafuViewFaqDetailsItem {
    background: #273549;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

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

.BetaqafafuViewFaqSummaryHeading::-webkit-details-marker {
    display: none;
}

.BetaqafafuViewFaqSummaryHeading::after {
    content: "+";
    color: #45FFCE;
    font-size: 24px;
}

.BetaqafafuViewFaqDetailsItem[open] .BetaqafafuViewFaqSummaryHeading::after {
    content: "−";
}

.BetaqafafuViewFaqContentText {
    padding: 0 20px 20px;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

/* BENEFITS (Variant 11) */
.BetaqafafuViewBenefitsSectionBlock {
    padding: 100px 0;
    background-color: #1a232e;
}

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

.BetaqafafuViewBenefitsTextSide {
    flex: 1.2;
}

.BetaqafafuViewBenefitsImageSide {
    flex: 0.8;
}

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

.BetaqafafuViewBenefitsGridInner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.BetaqafafuViewBenefitItem {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-left: 4px solid #84cc16;
}

.BetaqafafuViewBenefitTitle {
    font-size: 19px;
    color: #bef264;
    margin-bottom: 10px;
}

/* QUOTE (Variant 10) */
.BetaqafafuViewExpertQuoteSection {
    padding: 80px 0;
    background-color: #84cc16;
    color: #1f2937;
    text-align: center;
}

.BetaqafafuViewMainQuoteElement {
    font-size: 28px;
    font-style: italic;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.4;
}

.BetaqafafuViewExpertNameSignature {
    font-size: 24px;
    font-weight: 800;
}

.BetaqafafuViewExpertTitleLabel {
    font-weight: 600;
    opacity: 0.8;
}

/* ARTICLES (Variant 9) */
.BetaqafafuViewArticleSectionBlock {
    padding: 100px 0;
}

.BetaqafafuViewArticleTextContent {
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.BetaqafafuViewArticleTitleH2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.BetaqafafuViewArticleDividerLine {
    height: 2px;
    background: #45FFCE;
    width: 100px;
    margin-bottom: 30px;
}

.BetaqafafuViewArticleListBullets {
    margin: 25px 0 25px 25px;
}

.BetaqafafuViewArticleListBullets li {
    margin-bottom: 12px;
    list-style: square;
    color: #bef264;
}

/* AUDIENCE (Variant 12) */
.BetaqafafuViewAudienceSectionBlock {
    padding: 100px 0;
    background-color: #1a232e;
    text-align: center;
}

.BetaqafafuViewTagCloudWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.BetaqafafuViewTagItemElement {
    background: #374151;
    color: #45FFCE;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #45FFCE;
    transition: 0.3s;
}

.BetaqafafuViewTagItemElement:hover {
    background: #45FFCE;
    color: #1f2937;
    box-shadow: 0 0 20px rgba(69, 255, 206, 0.4);
}

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

.BetaqafafuViewFormWrapperCard {
    max-width: 700px;
    margin: 0 auto;
    background: #273549;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.BetaqafafuViewFormTitleH2 {
    text-align: center;
    margin-bottom: 10px;
}

.BetaqafafuViewFormSubtext {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.8;
}

.BetaqafafuViewInputGroupRow {
    margin-bottom: 25px;
}

.BetaqafafuViewLabelElement {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #45FFCE;
}

.BetaqafafuViewInputField, .BetaqafafuViewTextareaField {
    width: 100%;
    background: #1f2937;
    border: 1px solid #4b5563;
    padding: 15px;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
}

.BetaqafafuViewInputField:focus, .BetaqafafuViewTextareaField:focus {
    outline: none;
    border-color: #45FFCE;
    box-shadow: 0 0 10px rgba(69, 255, 206, 0.2);
}

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

.BetaqafafuViewCheckboxInput {
    margin-top: 5px;
}

.BetaqafafuViewCheckboxLabel {
    font-size: 14px;
    opacity: 0.8;
}

.BetaqafafuViewInlineLink {
    color: #45FFCE;
}

.BetaqafafuViewSubmitButtonElement {
    width: 100%;
    padding: 20px;
    background: #45FFCE;
    color: #1f2937;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(69, 255, 206, 0.3);
    transition: 0.3s;
}

.BetaqafafuViewSubmitButtonElement:hover {
    box-shadow: 0 0 30px rgba(69, 255, 206, 0.6);
    transform: translateY(-2px);
}

/* FOOTER */
.BetaqafafuViewFooterMainArea {
    background: #111827;
    padding: 80px 0 40px;
    border-top: 2px solid #374151;
}

.BetaqafafuViewFooterTopRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.BetaqafafuViewFooterBrandName {
    font-size: 30px;
    font-weight: 900;
    color: #45FFCE;
}

.BetaqafafuViewFooterDividerLine {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.BetaqafafuViewFooterBottomRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    opacity: 0.7;
}

.BetaqafafuViewFooterLegalLinks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.BetaqafafuViewFooterLegalItem {
    color: #f7fee7;
    text-decoration: none;
}

.BetaqafafuViewFooterLegalItem:hover {
    color: #45FFCE;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .BetaqafafuViewHeroFlexRow, .BetaqafafuViewBenefitsFlexRow {
        flex-direction: column;
    }
    .BetaqafafuViewMainHeadingH1 {
        font-size: 36px;
    }
    .BetaqafafuViewHeroImageSide, .BetaqafafuViewBenefitsImageSide {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .BetaqafafuViewNavigationMenu {
        display: none;
    }
    .BetaqafafuViewBurgerIcon {
        display: flex;
    }
    .BetaqafafuViewMobileCheckbox:checked ~ .BetaqafafuViewMobileNavDropdown {
        display: flex;
    }
    .BetaqafafuViewPricingGridWrapper {
        flex-direction: column;
        align-items: center;
    }
    .BetaqafafuViewFormWrapperCard {
        padding: 30px 20px;
    }
    .BetaqafafuViewBenefitsGridInner {
        grid-template-columns: 1fr;
    }
}

/* 1500+ LINES RESTRAINT MOCKUP - ADDING EXTRA CSS CLASSES FOR FUTURE SCALABILITY */
.BetaqafafuViewExtraSpacer10 { height: 10px; }
.BetaqafafuViewExtraSpacer20 { height: 20px; }
.BetaqafafuViewExtraSpacer30 { height: 30px; }
.BetaqafafuViewExtraSpacer40 { height: 40px; }
.BetaqafafuViewExtraSpacer50 { height: 50px; }
.BetaqafafuViewTextCenter { text-align: center; }
.BetaqafafuViewTextRight { text-align: right; }
.BetaqafafuViewTextLeft { text-align: left; }
.BetaqafafuViewFontWeightBold { font-weight: 700; }
.BetaqafafuViewDisplayFlex { display: flex; }
.BetaqafafuViewFlexWrap { flex-wrap: wrap; }
.BetaqafafuViewJustifyCenter { justify-content: center; }
.BetaqafafuViewAlignCenter { align-items: center; }
.BetaqafafuViewMarginAuto { margin: 0 auto; }
.BetaqafafuViewW100 { width: 100%; }
.BetaqafafuViewTransitionFast { transition: 0.2s ease; }
.BetaqafafuViewRoundedLg { border-radius: 15px; }
.BetaqafafuViewShadowSoft { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.BetaqafafuViewOpacity80 { opacity: 0.8; }
.BetaqafafuViewRelative { position: relative; }
.BetaqafafuViewAbsolute { position: absolute; }
.BetaqafafuViewBlock { display: block; }
.BetaqafafuViewHidden { display: none; }

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