/* VARIABLES & RESET */
:root {
    --yoyiceza-dark: #0f172a;
    --yoyiceza-cyan: #22d3ee;
    --yoyiceza-mint: #a7f3d0;
    --yoyiceza-slate: #e2e8f0;
    --yoyiceza-white: #ffffff;
    --yoyiceza-gray: #64748b;
    --yoyiceza-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

.YoyicezaHub_SectionHeader {
    font-size: 2.5rem;
    color: var(--yoyiceza-dark);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.YoyicezaHub_SectionHeader::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--yoyiceza-cyan);
    border-radius: 2px;
}

.YoyicezaHub_LightBridge {
    height: 100px;
    background: linear-gradient(to bottom, var(--yoyiceza-white), #f0fdff, var(--yoyiceza-white));
    position: relative;
}

/* HEADER STYLE */
.YoyicezaHub_HeaderMain {
    background-color: var(--yoyiceza-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

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

.YoyicezaHub_LogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--yoyiceza-dark);
    letter-spacing: -1px;
}

.YoyicezaHub_HeaderAccentLine {
    height: 6px;
    background: linear-gradient(90deg, var(--yoyiceza-cyan), var(--yoyiceza-mint));
    width: 90%;
    margin: 10px auto 0;
    border-radius: 50px;
}

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

.YoyicezaHub_NavLink {
    text-decoration: none;
    color: var(--yoyiceza-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--yoyiceza-transition);
}

.YoyicezaHub_NavLink:hover {
    color: var(--yoyiceza-cyan);
}

/* BURGER MENU NO-JS */
.YoyicezaHub_NavCheckbox {
    display: none;
}

.YoyicezaHub_BurgerBtn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.YoyicezaHub_BurgerBtn span {
    width: 30px;
    height: 3px;
    background-color: var(--yoyiceza-dark);
    border-radius: 2px;
}

/* HERO SECTION */
.YoyicezaHub_HeroSection {
    padding: 100px 0;
    background-color: var(--yoyiceza-white);
}

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

.YoyicezaHub_HeroTextSide {
    flex: 1;
    min-width: 320px;
}

.YoyicezaHub_HeroImageSide {
    flex: 1;
    min-width: 320px;
}

.YoyicezaHub_MainTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--yoyiceza-dark);
}

.YoyicezaHub_SubTitle {
    font-size: 1.4rem;
    color: var(--yoyiceza-cyan);
    font-weight: 500;
    margin-bottom: 25px;
}

.YoyicezaHub_TextLead {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--yoyiceza-gray);
}

.YoyicezaHub_ImageFrame {
    position: relative;
    border: 1px solid var(--yoyiceza-slate);
    padding: 15px;
    background: var(--yoyiceza-white);
    box-shadow: 20px 20px 0px var(--yoyiceza-cyan);
}

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

/* BUTTONS */
.YoyicezaHub_PrimaryButton {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--yoyiceza-dark);
    color: var(--yoyiceza-white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--yoyiceza-transition);
    border: 2px solid var(--yoyiceza-dark);
}

.YoyicezaHub_PrimaryButton:hover {
    background-color: var(--yoyiceza-cyan);
    border-color: var(--yoyiceza-cyan);
    color: var(--yoyiceza-dark);
}

.YoyicezaHub_SecondaryButton {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--yoyiceza-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--yoyiceza-transition);
    border: 2px solid var(--yoyiceza-dark);
}

.YoyicezaHub_SecondaryButton:hover {
    background-color: var(--yoyiceza-dark);
    color: var(--yoyiceza-white);
}

/* AUDIENCE SECTION (TIMELINE) */
.YoyicezaHub_AudienceSection {
    padding: 80px 0;
}

.YoyicezaHub_SectionIntroText {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: var(--yoyiceza-gray);
}

.YoyicezaHub_TimelineWrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.YoyicezaHub_TimelineWrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--yoyiceza-cyan);
}

.YoyicezaHub_TimelineItem {
    position: relative;
    margin-bottom: 40px;
}

.YoyicezaHub_TimelineMarker {
    position: absolute;
    left: -46px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--yoyiceza-mint);
    border: 3px solid var(--yoyiceza-cyan);
    border-radius: 50%;
}

.YoyicezaHub_TimelineTitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--yoyiceza-dark);
}

.YoyicezaHub_TimelineText {
    color: var(--yoyiceza-gray);
}

/* FAQ SECTION */
.YoyicezaHub_FaqSection {
    padding: 80px 0;
}

.YoyicezaHub_FaqGrid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.YoyicezaHub_FaqItem {
    background-color: var(--yoyiceza-white);
    border: 1px solid var(--yoyiceza-slate);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--yoyiceza-transition);
}

.YoyicezaHub_FaqItem:hover {
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.1);
    border-color: var(--yoyiceza-cyan);
}

.YoyicezaHub_FaqSummary {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: var(--yoyiceza-dark);
}

.YoyicezaHub_FaqSummary::marker, .YoyicezaHub_FaqSummary::-webkit-details-marker {
    display: none;
}

.YoyicezaHub_FaqSummary::after {
    content: '+';
    position: absolute;
    right: 25px;
    color: var(--yoyiceza-cyan);
}

.YoyicezaHub_FaqItem[open] .YoyicezaHub_FaqSummary::after {
    content: '-';
}

.YoyicezaHub_FaqAnswer {
    padding: 0 25px 20px;
    color: var(--yoyiceza-gray);
}

/* REGULAR PRACTICE SECTION */
.YoyicezaHub_RegularPracticeSection {
    padding: 80px 0;
}

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

.YoyicezaHub_PracticeTextSide {
    flex: 1.2;
    min-width: 320px;
}

.YoyicezaHub_PracticeImageSide {
    flex: 0.8;
    min-width: 320px;
}

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

.YoyicezaHub_RegularText {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--yoyiceza-gray);
}

.YoyicezaHub_BenefitsIconGrid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.YoyicezaHub_BenefitIconItem {
    text-align: center;
}

.YoyicezaHub_IconPlaceholder {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--yoyiceza-cyan);
}

.YoyicezaHub_IconTitle {
    font-size: 1rem;
    font-weight: 600;
}

/* SERVICES SECTION */
.YoyicezaHub_ServicesSection {
    padding: 80px 0;
}

.YoyicezaHub_PricingGrid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.YoyicezaHub_PricingCard {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border: 1px solid var(--yoyiceza-slate);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--yoyiceza-transition);
}

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

.YoyicezaHub_PricingCard_Featured {
    border-color: var(--yoyiceza-cyan);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.15);
}

.YoyicezaHub_PackageName {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.YoyicezaHub_Price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--yoyiceza-cyan);
}

.YoyicezaHub_PackageList {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    width: 100%;
}

.YoyicezaHub_PackageListItem {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    color: var(--yoyiceza-gray);
}

.YoyicezaHub_PackageListItem span {
    color: var(--yoyiceza-mint);
    font-weight: bold;
}

/* EXPERT QUOTE */
.YoyicezaHub_ExpertSection {
    padding: 80px 0;
}

.YoyicezaHub_QuoteCard {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--yoyiceza-white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.05);
    position: relative;
    text-align: center;
}

.YoyicezaHub_QuoteSymbol {
    font-size: 6rem;
    color: var(--yoyiceza-cyan);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: serif;
}

.YoyicezaHub_QuoteText {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--yoyiceza-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.YoyicezaHub_ExpertName {
    font-weight: 800;
    font-size: 1.2rem;
}

.YoyicezaHub_ExpertRole {
    color: var(--yoyiceza-cyan);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* TEXT CONTENT SECTIONS */
.YoyicezaHub_TextContentSection {
    padding: 60px 0;
}

.YoyicezaHub_ContentSubTitle {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--yoyiceza-dark);
}

.YoyicezaHub_ContentSmallTitle {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--yoyiceza-dark);
}

.YoyicezaHub_Paragraph {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--yoyiceza-gray);
    max-width: 900px;
}

.YoyicezaHub_ContentList {
    list-style: none;
    margin-top: 20px;
}

.YoyicezaHub_ContentList li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 600;
}

.YoyicezaHub_ContentList li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 2px;
    background: var(--yoyiceza-cyan);
}

/* CONTACT FORM */
.YoyicezaHub_ContactSection {
    padding: 100px 0;
    background-color: #f8fafc;
}

.YoyicezaHub_FormCard {
    max-width: 700px;
    margin: 0 auto;
    background: var(--yoyiceza-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.YoyicezaHub_FormSubText {
    text-align: center;
    margin-bottom: 40px;
    color: var(--yoyiceza-gray);
}

.YoyicezaHub_FormGroup {
    margin-bottom: 20px;
}

.YoyicezaHub_Label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.YoyicezaHub_Input, .YoyicezaHub_Textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--yoyiceza-slate);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--yoyiceza-transition);
}

.YoyicezaHub_Input:focus, .YoyicezaHub_Textarea:focus {
    outline: none;
    border-color: var(--yoyiceza-cyan);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.YoyicezaHub_Textarea {
    min-height: 120px;
    resize: vertical;
}

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

.YoyicezaHub_Checkbox {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.YoyicezaHub_CheckboxLabel {
    font-size: 0.9rem;
    color: var(--yoyiceza-gray);
}

.YoyicezaHub_CheckboxLabel a {
    color: var(--yoyiceza-cyan);
    text-decoration: underline;
}

.YoyicezaHub_SubmitBtn {
    width: 100%;
    padding: 18px;
    background-color: var(--yoyiceza-cyan);
    color: var(--yoyiceza-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--yoyiceza-transition);
}

.YoyicezaHub_SubmitBtn:hover {
    background-color: var(--yoyiceza-dark);
    color: var(--yoyiceza-white);
}

/* FOOTER */
.YoyicezaHub_FooterMain {
    background-color: var(--yoyiceza-dark);
    color: var(--yoyiceza-white);
    padding: 80px 0 40px;
}

.YoyicezaHub_FooterContent {
    text-align: center;
}

.YoyicezaHub_FooterLogo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.YoyicezaHub_FooterCopy {
    margin-bottom: 10px;
    color: var(--yoyiceza-slate);
}

.YoyicezaHub_FooterEmail, .YoyicezaHub_FooterPhone {
    margin-bottom: 10px;
    color: var(--yoyiceza-white);
}

.YoyicezaHub_FooterEmail a {
    color: var(--yoyiceza-cyan);
    text-decoration: none;
}

.YoyicezaHub_FooterLinks {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.YoyicezaHub_FooterLink {
    color: var(--yoyiceza-slate);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--yoyiceza-transition);
}

.YoyicezaHub_FooterLink:hover {
    color: var(--yoyiceza-cyan);
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .YoyicezaHub_HeroGrid, .YoyicezaHub_PracticeFlex {
        flex-direction: column;
        text-align: center;
    }

    .YoyicezaHub_MainTitle {
        font-size: 2.8rem;
    }

    .YoyicezaHub_ImageFrame {
        box-shadow: 10px 10px 0px var(--yoyiceza-cyan);
    }

    .YoyicezaHub_BenefitsIconGrid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .YoyicezaHub_BurgerBtn {
        display: flex;
        z-index: 1001;
    }

    .YoyicezaHub_NavBar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--yoyiceza-white);
        padding: 100px 40px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .YoyicezaHub_NavList {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .YoyicezaHub_NavCheckbox:checked ~ .YoyicezaHub_NavBar {
        right: 0;
    }

    .YoyicezaHub_NavCheckbox:checked ~ .YoyicezaHub_BurgerBtn span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    .YoyicezaHub_NavCheckbox:checked ~ .YoyicezaHub_BurgerBtn span:nth-child(2) {
        opacity: 0;
    }
    .YoyicezaHub_NavCheckbox:checked ~ .YoyicezaHub_BurgerBtn span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .YoyicezaHub_MainTitle {
        font-size: 2.2rem;
    }

    .YoyicezaHub_PricingGrid {
        flex-direction: column;
    }

    .YoyicezaHub_QuoteCard {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .YoyicezaHub_SectionHeader {
        font-size: 1.8rem;
    }
    
    .YoyicezaHub_FormCard {
        padding: 30px 20px;
    }
}

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