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

html {
    scroll-behavior: smooth;
}

body.ZufuneInsightBodyContainer {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #001418;
    color: #e0f2f1;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER */
.ZufuneInsightHeaderWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 20, 24, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ZufuneInsightHeaderContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.ZufuneInsightLogoBox {
    font-size: 28px;
    font-weight: 800;
    color: #4FFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(79, 255, 255, 0.5);
}

.ZufuneInsightAccentLine {
    height: 4px;
    background: linear-gradient(90deg, transparent, #4FFFFF, transparent);
    width: 100%;
    border-radius: 50%;
    opacity: 0.7;
}

.ZufuneInsightNavigation {
    display: flex;
    align-items: center;
}

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

.ZufuneInsightNavLink {
    text-decoration: none;
    color: #e0f2f1;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-transform: uppercase;
}

.ZufuneInsightNavLink:hover {
    color: #4FFFFF;
    text-shadow: 0 0 8px #4FFFFF;
}

/* BURGER MENU (No JS) */
.ZufuneInsightMenuCheckbox {
    display: none;
}

.ZufuneInsightMenuIcon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.ZufuneInsightMenuIcon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #4FFFFF;
    position: absolute;
    transition: 0.3s;
}

.ZufuneInsightMenuIcon span:nth-child(1) { top: 0; }
.ZufuneInsightMenuIcon span:nth-child(2) { top: 8px; }
.ZufuneInsightMenuIcon span:nth-child(3) { top: 16px; }

/* HERO SECTION */
.ZufuneInsightHeroBlock {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.ZufuneInsightHeroImageSide {
    flex: 1;
}

.ZufuneInsightHeroTextSide {
    flex: 1.2;
}

.ZufuneInsightBadgeWrapper {
    position: relative;
    display: inline-block;
}

.ZufuneInsightBadgeItem {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #4FFFFF;
    color: #001418;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(79, 255, 255, 0.6);
    z-index: 2;
}

.ZufuneInsightHeroImg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(79, 255, 255, 0.15);
    object-fit: cover;
    border: 1px solid rgba(79, 255, 255, 0.2);
}

.ZufuneInsightHeroTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #4FFFFF;
}

.ZufuneInsightHeroSubtitle {
    font-size: 20px;
    margin-bottom: 25px;
    color: #f9a8d4; /* Small berry touch for contrast */
}

.ZufuneInsightHeroDescription {
    margin-bottom: 20px;
    font-size: 17px;
    color: #b2dfdb;
}

.ZufuneInsightCtaButton {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4FFFFF;
    color: #001418;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 0 20px rgba(79, 255, 255, 0.4);
    transition: 0.3s;
}

.ZufuneInsightCtaButton:hover {
    box-shadow: 0 0 35px rgba(79, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* SECTION HEADINGS */
.ZufuneInsightSectionHeading {
    font-size: 36px;
    margin-bottom: 40px;
    color: #4FFFFF;
    text-align: center;
    position: relative;
    padding-left: 25px;
}

.ZufuneInsightSectionHeading::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #f9a8d4;
    font-family: monospace;
}

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

.ZufuneInsightAltBg {
    background: rgba(79, 255, 255, 0.03);
}

.ZufuneInsightTextLayout {
    max-width: 850px;
    margin: 0 auto;
}

.ZufuneInsightParagraph {
    margin-bottom: 25px;
    font-size: 18px;
    text-align: justify;
}

.ZufuneInsightQuoteBlock {
    margin: 40px 0;
    padding: 30px;
    border-left: 5px solid #4FFFFF;
    background: rgba(79, 255, 255, 0.05);
    font-style: italic;
    font-size: 22px;
    color: #4FFFFF;
}

.ZufuneInsightCommonList {
    list-style: none;
    margin-top: 30px;
}

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

.ZufuneInsightListItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4FFFFF;
}

/* FAQ SECTION */
.ZufuneInsightFaqBlock {
    padding: 100px 0;
}

.ZufuneInsightFaqGrid {
    display: flex;
    gap: 40px;
}

.ZufuneInsightFaqColumn {
    flex: 1;
}

.ZufuneInsightFaqItem {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(79, 255, 255, 0.2);
    padding-bottom: 10px;
}

.ZufuneInsightFaqTitle {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    color: #4FFFFF;
    list-style: none;
}

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

.ZufuneInsightFaqText {
    padding: 10px 0 20px;
    color: #b2dfdb;
}

/* PRICING */
.ZufuneInsightPricingBlock {
    padding: 100px 0;
}

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

.ZufuneInsightPriceCard {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(79, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    text-align: center;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.ZufuneInsightPriceCard:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(79, 255, 255, 0.1);
    border-color: #4FFFFF;
}

.ZufuneInsightFeaturedCard {
    border-color: #4FFFFF;
    background: rgba(79, 255, 255, 0.05);
}

.ZufuneInsightPriceName {
    font-size: 24px;
    margin-bottom: 15px;
    color: #4FFFFF;
}

.ZufuneInsightPriceValue {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

.ZufuneInsightPriceFeatures {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.ZufuneInsightPriceFeatures li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #b2dfdb;
}

.ZufuneInsightPriceBtn {
    padding: 12px 25px;
    border: 2px solid #4FFFFF;
    color: #4FFFFF;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
}

.ZufuneInsightPriceBtn:hover {
    background: #4FFFFF;
    color: #001418;
}

/* TARGET AUDIENCE */
.ZufuneInsightTargetBlock {
    padding: 100px 0;
    text-align: center;
}

.ZufuneInsightTargetIntro {
    font-size: 19px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ZufuneInsightTargetList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.ZufuneInsightTargetItem {
    background: rgba(79, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    border-left: 4px solid #4FFFFF;
    text-align: left;
}

/* BENEFITS */
.ZufuneInsightBenefitBlock {
    padding: 100px 0;
}

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

.ZufuneInsightBenefitTextSide {
    flex: 1.2;
}

.ZufuneInsightBenefitImageSide {
    flex: 1;
}

.ZufuneInsightBenefitImg {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(79, 255, 255, 0.3);
}

.ZufuneInsightBenefitCardsContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ZufuneInsightBenefitCard {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.ZufuneInsightBenefitCard h3 {
    color: #4FFFFF;
    margin-bottom: 10px;
}

/* EXPERT */
.ZufuneInsightExpertBlock {
    padding: 80px 0;
    background: rgba(236, 72, 153, 0.03); /* Subtle berry blend */
}

.ZufuneInsightExpertFlex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.ZufuneInsightExpertAvatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #4FFFFF;
    object-fit: cover;
}

.ZufuneInsightExpertQuote {
    font-size: 24px;
    font-style: italic;
    color: #e0f2f1;
}

.ZufuneInsightExpertName {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 700;
    color: #4FFFFF;
}

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

.ZufuneInsightFormContainer {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(79, 255, 255, 0.1);
}

.ZufuneInsightFormSubtext {
    text-align: center;
    margin-bottom: 40px;
    color: #b2dfdb;
}

.ZufuneInsightInputGroup {
    margin-bottom: 20px;
}

.ZufuneInsightLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4FFFFF;
}

.ZufuneInsightInput, .ZufuneInsightTextarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(79, 255, 255, 0.3);
    padding: 12px 15px;
    color: white;
    border-radius: 5px;
    outline: none;
}

.ZufuneInsightInput:focus, .ZufuneInsightTextarea:focus {
    border-color: #4FFFFF;
    box-shadow: 0 0 10px rgba(79, 255, 255, 0.2);
}

.ZufuneInsightCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
}

.ZufuneInsightCheckboxLabel {
    font-size: 13px;
    color: #b2dfdb;
}

.ZufuneInsightCheckboxLabel a {
    color: #4FFFFF;
    text-decoration: none;
}

.ZufuneInsightSubmitBtn {
    width: 100%;
    padding: 15px;
    background: #4FFFFF;
    border: none;
    color: #001418;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(79, 255, 255, 0.3);
    transition: 0.3s;
}

.ZufuneInsightSubmitBtn:hover {
    box-shadow: 0 0 30px rgba(79, 255, 255, 0.6);
}

/* FOOTER */
.ZufuneInsightFooterWrapper {
    padding: 60px 0;
    background: #000a0d;
    text-align: center;
    border-top: 1px solid rgba(79, 255, 255, 0.1);
}

.ZufuneInsightFooterCopy {
    margin-bottom: 10px;
    font-weight: 600;
}

.ZufuneInsightFooterEmail, .ZufuneInsightFooterPhone {
    margin-bottom: 5px;
    font-size: 14px;
    color: #b2dfdb;
}

.ZufuneInsightFooterEmail a {
    color: #4FFFFF;
    text-decoration: none;
}

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

.ZufuneInsightFooterLink {
    font-size: 12px;
    color: #b2dfdb;
    text-decoration: none;
    transition: 0.3s;
}

.ZufuneInsightFooterLink:hover {
    color: #4FFFFF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ZufuneInsightHeroGrid, .ZufuneInsightBenefitGrid {
        flex-direction: column;
    }
    .ZufuneInsightHeroImageSide, .ZufuneInsightHeroTextSide,
    .ZufuneInsightBenefitTextSide, .ZufuneInsightBenefitImageSide {
        flex: none;
        width: 100%;
    }
    .ZufuneInsightPriceGrid {
        flex-direction: column;
        align-items: center;
    }
    .ZufuneInsightPriceCard {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .ZufuneInsightMenuIcon {
        display: block;
    }
    .ZufuneInsightMenuList {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #001418;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: 0.5s ease-in-out;
    }
    .ZufuneInsightMenuCheckbox:checked ~ .ZufuneInsightMenuList {
        max-height: 500px;
    }
    .ZufuneInsightMenuList li {
        width: 100%;
        text-align: center;
    }
    .ZufuneInsightNavLink {
        display: block;
        padding: 20px;
        border-bottom: 1px solid rgba(79, 255, 255, 0.1);
    }
    .ZufuneInsightFaqGrid {
        flex-direction: column;
    }
    .ZufuneInsightTargetList {
        grid-template-columns: 1fr;
    }
    .ZufuneInsightHeroTitle {
        font-size: 32px;
    }
    .ZufuneInsightExpertFlex {
        flex-direction: column;
        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;
    }
}
