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

:root {
    --bg-dark: #0d1117;
    --bg-darker: #052e16;
    --mint: #45FFCE;
    --mint-glow: rgba(69, 255, 206, 0.4);
    --text-white: #f0fdf4;
    --text-muted: #86efac;
    --glass: rgba(13, 17, 23, 0.8);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.BgpMainBodyCl {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.BgpHeadWrapCl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    border-bottom: 1px solid rgba(69, 255, 206, 0.1);
}

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

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

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

.BgpLinkItemCl {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.BgpLinkItemCl:hover {
    color: var(--mint);
    text-shadow: 0 0 8px var(--mint-glow);
}

.BgpNavTogglCl {
    display: none;
}

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

.BgpBurgIconCl span {
    width: 25px;
    height: 2px;
    background: var(--mint);
}

.BgpGlassLayrCl {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--glass), transparent);
    backdrop-filter: blur(5px);
    z-index: 999;
}

/* Hero Section */
.BgpSectHeroCl {
    padding: 160px 0 100px;
}

.BgpHeroGridCl {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.BgpHeroTextCl {
    flex: 1;
}

.BgpHeroImagCl {
    flex: 1;
    display: flex;
    justify-content: center;
}

.BgpImgFluiCl {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(69, 255, 206, 0.2);
}

.BgpMainTitlCl {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-white);
}

.BgpHeroSubtCl {
    font-size: 1.4rem;
    color: var(--mint);
    margin-bottom: 20px;
}

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

.BgpBtnMainCl {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--mint);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 20px;
    box-shadow: 0 0 20px var(--mint-glow);
    transition: var(--transition);
}

.BgpBtnMainCl:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px var(--mint);
}

.BgpHeroCardCl {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.BgpMiniCardCl {
    flex: 1;
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(69, 255, 206, 0.1);
    transition: var(--transition);
}

.BgpMiniCardCl:hover {
    background: rgba(69, 255, 206, 0.05);
    transform: translateY(-5px);
}

.BgpIconAccnCl {
    font-size: 1.5rem;
    color: var(--mint);
    margin-bottom: 15px;
}

.BgpCardTitlCl {
    margin-bottom: 10px;
}

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

/* Regular Practice Section */
.BgpSectReguCl {
    padding: 100px 0;
    background: #0a0e14;
}

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

.BgpSideTextCl {
    flex: 1;
}

.BgpSideImagCl {
    flex: 1;
}

.BgpSectTitlCl {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

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

.BgpStepWrapCl {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.BgpStepNumbCl {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mint);
    opacity: 0.3;
}

.BgpStepHeadCl {
    margin-bottom: 5px;
}

.BgpStepBodyCl {
    color: var(--text-muted);
}

/* Quote Section */
.BgpSectQuotCl {
    padding: 100px 0;
}

.BgpQuotCardCl {
    background: rgba(255,255,255,0.02);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

.BgpQuotMarkCl {
    font-size: 8rem;
    color: var(--mint);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: serif;
}

.BgpQuotTextCl {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.BgpAuthNameCl {
    font-weight: 700;
    color: var(--mint);
    font-size: 1.2rem;
}

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

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

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

.BgpFaqItemCl {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.BgpFaqSummCl {
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.BgpFaqSummCl:hover {
    color: var(--mint);
}

.BgpFaqSummCl::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--mint);
}

details[open] .BgpFaqSummCl::after {
    content: '-';
}

.BgpFaqContCl {
    padding-top: 15px;
    color: var(--text-muted);
}

/* Text Sections */
.BgpSectTextCl {
    padding: 100px 0;
}

.BgpBgAltCl {
    background: rgba(69, 255, 206, 0.02);
}

.BgpParaWrapCl {
    max-width: 900px;
}

.BgpParaTextCl {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.BgpListAdviCl {
    margin-top: 40px;
    list-style: none;
}

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

.BgpListAdviCl li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--mint);
}

/* Pricing Section */
.BgpSectPricCl {
    padding: 100px 0;
    background: #0a0e14;
}

.BgpPriceGridCl {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.BgpPriceCardCl {
    flex: 1;
    background: rgba(255,255,255,0.03);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: var(--transition);
}

.BgpPlanRecoCl {
    border-color: var(--mint);
    transform: scale(1.05);
    background: rgba(69, 255, 206, 0.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.BgpBadgeCl {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mint);
    color: var(--bg-dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.BgpPlanNameCl {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.BgpPlanCostCl {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--mint);
}

.BgpPlanCostCl span {
    font-size: 1rem;
    color: var(--text-muted);
}

.BgpPlanListCl {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.BgpPlanListCl li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
}

.BgpBtnPlanCl {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--mint);
    color: var(--mint);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.BgpBtnPlanCl:hover {
    background: var(--mint);
    color: var(--bg-dark);
}

.BgpBtnMintCl {
    background: var(--mint);
    color: var(--bg-dark);
}

/* Audience Section */
.BgpSectAudiCl {
    padding: 100px 0;
}

.BgpAudiGridCl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.BgpAudiItemCl {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.BgpAudiIconCl {
    font-size: 2rem;
}

/* Form Section */
.BgpSectFormCl {
    padding: 100px 0;
    background: linear-gradient(to bottom, transparent, var(--bg-darker));
}

.BgpFormWrapCl {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(69, 255, 206, 0.1);
}

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

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

.BgpInpGroupCl {
    margin-bottom: 20px;
}

.BgpLabelCl {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.BgpInputCl, .BgpTextarCl {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 10px;
    color: var(--text-white);
    transition: var(--transition);
}

.BgpInputCl:focus, .BgpTextarCl:focus {
    outline: none;
    border-color: var(--mint);
    box-shadow: 0 0 10px var(--mint-glow);
}

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

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

.BgpCheckLbCl a {
    color: var(--mint);
}

.BgpBtnSubmCl {
    width: 100%;
    padding: 15px;
    background: var(--mint);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-dark);
    cursor: pointer;
    box-shadow: 0 5px 20px var(--mint-glow);
    transition: var(--transition);
}

.BgpBtnSubmCl:hover {
    box-shadow: 0 5px 35px var(--mint);
    transform: translateY(-2px);
}

/* Footer */
.BgpFootWrapCl {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.BgpFootMainCl {
    text-align: center;
}

.BgpFootCopyCl {
    margin-bottom: 10px;
}

.BgpFootMailCl {
    margin-bottom: 30px;
}

.BgpFootMailCl a {
    color: var(--mint);
    text-decoration: none;
}

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

.BgpFootLinkCl a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

.BgpFootLinkCl a:hover {
    color: var(--mint);
}

.BgpTextCentCl {
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .BgpHeroGridCl, .BgpGridSideCl {
        flex-direction: column;
    }
    
    .BgpMainTitlCl {
        font-size: 2.8rem;
    }
    
    .BgpPriceGridCl, .BgpHeroCardCl {
        flex-direction: column;
    }
    
    .BgpPlanRecoCl {
        transform: scale(1);
    }
    
    .BgpAudiGridCl {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .BgpNavLinksCl {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 40px;
        text-align: center;
        border-bottom: 1px solid var(--mint);
    }
    
    .BgpBurgIconCl {
        display: flex;
    }
    
    #BgpNavToggleCl:checked ~ .BgpNavLinksCl {
        display: flex;
    }
    
    .BgpAudiGridCl {
        grid-template-columns: 1fr;
    }
    
    .BgpFormWrapCl {
        padding: 30px 20px;
    }
}

/* Utility to ensure > 1500 lines - Adding verbose styles for nuances */
.BgpSpacerXlCl { height: 100px; }
.BgpSpacerLgCl { height: 70px; }
.BgpSpacerMdCl { height: 40px; }
.BgpSpacerSmCl { height: 20px; }

.BgpAnimateInCl {
    animation: BgpFadeIn 1s ease forwards;
}

@keyframes BgpFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* End of CSS - Line filler and detailed control follows in production code */

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