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

body.ZibaStudioBodyMain {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
    overflow-x: hidden;
}

.ZibaStudioContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.ZibaStudioHeaderWrap {
    background-color: #0f172a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.ZibaStudioLogoText {
    font-size: 24px;
    font-weight: 700;
    color: #22d3ee;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ZibaStudioHeaderAccentLine {
    height: 5px;
    background: linear-gradient(90deg, #22d3ee, #a7f3d0);
    width: 100%;
}

.ZibaStudioNavList {
    display: flex;
    gap: 25px;
}

.ZibaStudioNavLink {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
}

.ZibaStudioNavLink:hover {
    color: #22d3ee;
}

.ZibaStudioMenuCheckbox, .ZibaStudioMenuBtn {
    display: none;
}

/* Hero Section */
.ZibaStudioHeroSection {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ZibaStudioHeroSection::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #22d3ee, transparent);
    top: 10%;
    left: -50px;
    transform: rotate(-45deg);
    opacity: 0.3;
}

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

.ZibaStudioHeroImageSide {
    flex: 1;
}

.ZibaStudioHeroImg {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.1);
}

.ZibaStudioHeroTextSide {
    flex: 1;
}

.ZibaStudioHeroTitle {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #f8fafc;
}

.ZibaStudioHeroSub {
    font-size: 18px;
    color: #22d3ee;
    margin-bottom: 20px;
}

.ZibaStudioHeroDesc {
    margin-bottom: 30px;
    color: #94a3b8;
}

.ZibaStudioHeroChecklist {
    list-style: none;
    margin-bottom: 40px;
}

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

.ZibaStudioHeroCheckItem::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a7f3d0;
    font-weight: bold;
}

.ZibaStudioCtaButton {
    display: inline-block;
    padding: 15px 40px;
    background-color: #22d3ee;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
    transition: all 0.3s ease;
}

.ZibaStudioCtaButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.7);
}

/* FAQ Section */
.ZibaStudioFaqSection {
    padding: 80px 0;
    background-color: #1e293b;
}

.ZibaStudioSectionTitle {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
    color: #22d3ee;
}

.ZibaStudioSectionIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #94a3b8;
}

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

.ZibaStudioFaqItem {
    margin-bottom: 15px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.ZibaStudioFaqTitle {
    padding: 20px;
    cursor: pointer;
    background-color: #0f172a;
    font-weight: 600;
    list-style: none;
    transition: background 0.3s;
}

.ZibaStudioFaqTitle:hover {
    background-color: #1e293b;
}

.ZibaStudioFaqContent {
    padding: 20px;
    background-color: #0f172a;
    border-top: 1px solid rgba(34, 211, 238, 0.1);
}

/* Regular Practice Section */
.ZibaStudioRegularSection {
    padding: 100px 0;
}

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

.ZibaStudioRegularTextSide {
    flex: 1;
}

.ZibaStudioRegularImageSide {
    flex: 1;
}

.ZibaStudioRegularImg {
    width: 100%;
    border-radius: 50% 5% 50% 5%;
    border: 2px solid #a7f3d0;
}

.ZibaStudioHighlightBlock {
    padding: 20px;
    border-left: 4px solid #22d3ee;
    background-color: rgba(34, 211, 238, 0.05);
    margin: 30px 0;
}

.ZibaStudioHighlightText {
    font-style: italic;
    color: #f1f5f9;
}

.ZibaStudioBenefitList {
    list-style: none;
}

.ZibaStudioBenefitItem {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.ZibaStudioBenefitItem::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #22d3ee;
    border-radius: 50%;
}

/* Audience Section */
.ZibaStudioAudienceSection {
    padding: 80px 0;
    background-color: #0f172a;
}

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

.ZibaStudioCard {
    flex: 1 1 300px;
    max-width: 380px;
    padding: 40px;
    background-color: #1e293b;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.ZibaStudioCard:hover {
    border-color: #22d3ee;
    transform: translateY(-10px);
}

.ZibaStudioCardIcon {
    margin-bottom: 25px;
    border-radius: 50%;
}

.ZibaStudioCardTitle {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f8fafc;
}

.ZibaStudioCardText {
    color: #94a3b8;
    font-size: 15px;
}

/* Review Section */
.ZibaStudioReviewSection {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1e293b, #0f172a);
}

.ZibaStudioQuoteCard {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ZibaStudioQuoteIcon {
    font-size: 80px;
    line-height: 1;
    color: #22d3ee;
    opacity: 0.3;
    margin-bottom: -30px;
}

.ZibaStudioQuoteText {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.ZibaStudioQuoteAuthor {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #a7f3d0;
}

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

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

.ZibaStudioThemeOne { background-color: #0f172a; }
.ZibaStudioThemeTwo { background-color: #1e293b; }
.ZibaStudioThemeThree { background-color: #0f172a; }

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

.ZibaStudioTextColumns p {
    margin-bottom: 25px;
    font-size: 17px;
    color: #cbd5e1;
}

.ZibaStudioKeyNotes {
    margin-top: 50px;
    padding: 40px;
    background-color: rgba(167, 243, 208, 0.05);
    border: 1px dashed #a7f3d0;
}

.ZibaStudioKeyTitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #a7f3d0;
}

.ZibaStudioKeyList {
    padding-left: 20px;
}

.ZibaStudioKeyList li {
    margin-bottom: 10px;
}

/* Pricing Section */
.ZibaStudioPricingSection {
    padding: 100px 0;
    background-color: #1e293b;
}

.ZibaStudioPriceGrid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.ZibaStudioPriceCard {
    flex: 1;
    max-width: 360px;
    background-color: #0f172a;
    padding: 50px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.05);
}

.ZibaStudioPriceCardFeatured {
    border: 2px solid #22d3ee;
    transform: scale(1.05);
}

.ZibaStudioPriceHeader {
    text-align: center;
    margin-bottom: 30px;
}

.ZibaStudioPriceTitle {
    font-size: 18px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 10px;
}

.ZibaStudioPriceVal {
    font-size: 36px;
    font-weight: 800;
    color: #22d3ee;
}

.ZibaStudioPriceList {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.ZibaStudioPriceItem {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

.ZibaStudioPriceItem::before {
    content: '★';
    margin-right: 10px;
    color: #a7f3d0;
}

.ZibaStudioPriceBtn {
    text-align: center;
    padding: 15px;
    background-color: transparent;
    border: 2px solid #22d3ee;
    color: #22d3ee;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.ZibaStudioPriceBtn:hover {
    background-color: #22d3ee;
    color: #0f172a;
}

/* Contact Section */
.ZibaStudioContactSection {
    padding: 100px 0;
}

.ZibaStudioFormWrapper {
    max-width: 600px;
    margin: 0 auto;
}

.ZibaStudioMainForm {
    background-color: #1e293b;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ZibaStudioFormGroup {
    margin-bottom: 20px;
}

.ZibaStudioLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #22d3ee;
}

.ZibaStudioInput, .ZibaStudioTextarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #0f172a;
    border: 1px solid #334155;
    color: #f1f5f9;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.ZibaStudioInput:focus, .ZibaStudioTextarea:focus {
    border-color: #22d3ee;
}

.ZibaStudioTextarea {
    height: 120px;
    resize: none;
}

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

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

.ZibaStudioCheckLabel a {
    color: #22d3ee;
    text-decoration: none;
}

.ZibaStudioSubmitBtn {
    width: 100%;
    padding: 15px;
    background-color: #22d3ee;
    border: none;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

.ZibaStudioSubmitBtn:hover {
    background-color: #06b6d4;
}

/* Footer */
.ZibaStudioFooter {
    padding: 60px 0 30px;
    border-top: 1px solid #1e293b;
    background-color: #0f172a;
}

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

.ZibaStudioFooterLogo {
    font-size: 28px;
    font-weight: 800;
    color: #22d3ee;
    margin-bottom: 20px;
}

.ZibaStudioFooterEmail, .ZibaStudioFooterPhone {
    margin: 5px 0;
    color: #94a3b8;
}

.ZibaStudioFooterEmail a {
    color: #a7f3d0;
    text-decoration: none;
}

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

.ZibaStudioFootLink {
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.ZibaStudioFootLink:hover {
    color: #22d3ee;
}

.ZibaStudioFooterBottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 12px;
    color: #475569;
}

/* Responsive */
@media (max-width: 992px) {
    .ZibaStudioHeroGrid, .ZibaStudioRegularGrid {
        flex-direction: column;
        text-align: center;
    }
    
    .ZibaStudioHeroImageSide, .ZibaStudioRegularImageSide {
        order: 2;
    }
    
    .ZibaStudioHeroTextSide, .ZibaStudioRegularTextSide {
        order: 1;
    }

    .ZibaStudioHeroChecklist {
        display: inline-block;
        text-align: left;
    }

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

    .ZibaStudioPriceCardFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .ZibaStudioMenuBtn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .ZibaStudioMenuBtn span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #22d3ee;
        position: absolute;
        transition: 0.3s;
    }

    .ZibaStudioMenuBtn span:nth-child(2) { top: 9px; }
    .ZibaStudioMenuBtn span:nth-child(3) { top: 18px; }

    .ZibaStudioNavList {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #0f172a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: top 0.5s ease;
        z-index: 1000;
    }

    .ZibaStudioMenuCheckbox:checked ~ .ZibaStudioNavList {
        top: 0;
    }

    .ZibaStudioMenuCheckbox:checked ~ .ZibaStudioMenuBtn span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }
    .ZibaStudioMenuCheckbox:checked ~ .ZibaStudioMenuBtn span:nth-child(2) {
        opacity: 0;
    }
    .ZibaStudioMenuCheckbox:checked ~ .ZibaStudioMenuBtn span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    .ZibaStudioHeroTitle {
        font-size: 30px;
    }
}

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