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

body.CeyezusSparkBodyMain {
    background-color: #050A18;
    color: #e5e7eb;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* HEADER */
.CeyezusSparkHeaderWrapper {
    background-color: rgba(5, 10, 24, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.CeyezusSparkHeaderContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.CeyezusSparkLogoText {
    font-size: 28px;
    font-weight: 800;
    color: #6AA9FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.CeyezusSparkNeonLineHeader {
    height: 2px;
    width: 100%;
    background: #6AA9FF;
    box-shadow: 0 0 10px #6AA9FF, 0 0 20px #6AA9FF;
}

/* NAVIGATION */
.CeyezusSparkNavInputHide {
    display: none;
}

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

.CeyezusSparkBurgerLine {
    width: 25px;
    height: 3px;
    background-color: #6AA9FF;
}

.CeyezusSparkNavListItems {
    display: flex;
    list-style: none;
    gap: 20px;
}

.CeyezusSparkNavLink {
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
}

.CeyezusSparkNavLink:hover {
    color: #6AA9FF;
}

/* HERO SECTION */
.CeyezusSparkHeroSectionWrapper {
    padding: 80px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.CeyezusSparkHeroMainContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.CeyezusSparkHeroVisualSide {
    flex: 1;
}

.CeyezusSparkHeroImageMain {
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(106, 169, 255, 0.2);
    object-fit: cover;
}

.CeyezusSparkHeroTextSide {
    flex: 1;
}

.CeyezusSparkHeroTitleMain {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 800;
}

.CeyezusSparkHeroDescription {
    font-size: 18px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.CeyezusSparkHeroSubText {
    font-size: 16px;
    margin-bottom: 30px;
    color: #94a3b8;
    font-style: italic;
}

.CeyezusSparkHeroButtonBox {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.CeyezusSparkBtnPrimaryMain {
    background-color: #6AA9FF;
    color: #050A18;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    border: 2px solid #6AA9FF;
}

.CeyezusSparkBtnPrimaryMain:hover {
    background-color: transparent;
    color: #6AA9FF;
    box-shadow: 0 0 15px #6AA9FF;
}

.CeyezusSparkBtnSecondaryMain {
    background-color: transparent;
    color: #6AA9FF;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    border: 2px solid #6AA9FF;
}

.CeyezusSparkBtnSecondaryMain:hover {
    box-shadow: 0 0 15px #6AA9FF;
}

/* PRACTICE SECTION */
.CeyezusSparkPracticeBenefitSection {
    padding: 100px 20px;
    background-color: #080F25;
}

.CeyezusSparkBenefitContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.CeyezusSparkBenefitTextContent {
    flex: 1;
}

.CeyezusSparkBenefitVisualContent {
    flex: 1;
}

.CeyezusSparkBenefitImageObj {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.CeyezusSparkBenefitHeading {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.CeyezusSparkBenefitIntro {
    margin-bottom: 20px;
    font-size: 18px;
}

.CeyezusSparkBenefitListItems {
    list-style: none;
    margin-bottom: 30px;
}

.CeyezusSparkBenefitListItem {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.CeyezusSparkBenefitListItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

.CeyezusSparkBenefitSummaryCard {
    background: rgba(106, 169, 255, 0.1);
    padding: 20px;
    border-left: 4px solid #6AA9FF;
    border-radius: 5px;
}

/* AUDIENCE SECTION */
.CeyezusSparkAudienceSectionMain {
    padding: 100px 20px;
}

.CeyezusSparkAudienceContainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.CeyezusSparkAudienceMainTitle {
    font-size: 36px;
    margin-bottom: 20px;
}

.CeyezusSparkAudienceIntroDesc {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #94a3b8;
}

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

.CeyezusSparkAudienceCardItem {
    width: calc(33.333% - 20px);
    min-width: 280px;
    background: #0D1426;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(106, 169, 255, 0.1);
    transition: transform 0.3s;
}

.CeyezusSparkAudienceCardItem:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF;
}

.CeyezusSparkAudienceIconBox {
    font-size: 30px;
    color: #6AA9FF;
    margin-bottom: 20px;
}

.CeyezusSparkAudienceCardTitle {
    margin-bottom: 15px;
    font-size: 22px;
    color: #ffffff;
}

/* ARTICLE SECTIONS */
.CeyezusSparkArticleSectionOne, .CeyezusSparkArticleSectionTwo, .CeyezusSparkArticleSectionThree {
    padding: 60px 20px;
}

.CeyezusSparkArticleMainContainer {
    max-width: 1000px;
    margin: 0 auto;
}

.CeyezusSparkArticleHeadingSub {
    font-size: 32px;
    margin-bottom: 30px;
    color: #6AA9FF;
}

.CeyezusSparkArticleParagraph {
    margin-bottom: 20px;
    font-size: 17px;
    color: #d1d5db;
}

.CeyezusSparkArticleFeatureList {
    list-style: none;
    margin: 20px 0;
}

.CeyezusSparkArticleFeatureItem {
    padding: 10px 0 10px 30px;
    position: relative;
}

.CeyezusSparkArticleFeatureItem::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

/* PRICING */
.CeyezusSparkPricingSectionMain {
    padding: 100px 20px;
    background-color: #080F25;
}

.CeyezusSparkPricingContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.CeyezusSparkPricingMainHeading {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.CeyezusSparkPricingCardBox {
    width: calc(33.333% - 20px);
    min-width: 300px;
    background: #0D1426;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.4s;
    border: 1px solid rgba(106, 169, 255, 0.05);
}

.CeyezusSparkPricingCardBox:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(106, 169, 255, 0.15);
}

.CeyezusSparkPricingCardBoxFeatured {
    border: 2px solid #6AA9FF;
    position: relative;
    transform: scale(1.05);
}

.CeyezusSparkPricingCardBoxFeatured:hover {
    transform: scale(1.05) translateY(-15px);
}

.CeyezusSparkPricingCardName {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.CeyezusSparkPricingCardPrice {
    font-size: 36px;
    font-weight: 800;
    color: #6AA9FF;
    margin-bottom: 30px;
}

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

.CeyezusSparkPricingCardFeatures li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
}

.CeyezusSparkPricingCardFeatures li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

.CeyezusSparkPricingBtnAction {
    background-color: #6AA9FF;
    color: #050A18;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
}

/* EXPERT QUOTE */
.CeyezusSparkExpertQuoteSection {
    padding: 100px 20px;
    text-align: center;
}

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

.CeyezusSparkExpertAvatarBox {
    margin-bottom: 30px;
}

.CeyezusSparkExpertPhotoImg {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid #6AA9FF;
    padding: 5px;
}

.CeyezusSparkExpertBlockquote {
    font-size: 24px;
    font-style: italic;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.CeyezusSparkExpertNameCite {
    font-weight: 700;
    color: #6AA9FF;
    font-size: 18px;
}

/* FAQ */
.CeyezusSparkFaqSectionMain {
    padding: 100px 20px;
    background-color: #080F25;
}

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

.CeyezusSparkFaqHeadingText {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.CeyezusSparkFaqDetailsItem {
    background: #0D1426;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(106, 169, 255, 0.1);
}

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

.CeyezusSparkFaqSummaryLabel::after {
    content: '+';
    color: #6AA9FF;
    font-size: 24px;
}

.CeyezusSparkFaqDetailsItem[open] .CeyezusSparkFaqSummaryLabel::after {
    content: '-';
}

.CeyezusSparkFaqContentBody {
    padding: 0 20px 20px;
    color: #94a3b8;
}

/* CONTACT FORM */
.CeyezusSparkContactSectionWrap {
    padding: 100px 20px;
}

.CeyezusSparkContactFormContainer {
    max-width: 700px;
    margin: 0 auto;
    background: #0D1426;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.CeyezusSparkContactFormTitle {
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}

.CeyezusSparkContactFormSubtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 40px;
}

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

.CeyezusSparkFormFieldGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.CeyezusSparkFormLabel {
    font-size: 14px;
    color: #6AA9FF;
    font-weight: 600;
}

.CeyezusSparkFormInput, .CeyezusSparkFormTextarea {
    background: #050A18;
    border: 1px solid rgba(106, 169, 255, 0.3);
    padding: 15px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
}

.CeyezusSparkFormInput:focus, .CeyezusSparkFormTextarea:focus {
    outline: none;
    border-color: #6AA9FF;
    box-shadow: 0 0 5px #6AA9FF;
}

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

.CeyezusSparkFormCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
}

.CeyezusSparkFormCheckLabel {
    font-size: 14px;
}

.CeyezusSparkPolicyLink {
    color: #6AA9FF;
}

.CeyezusSparkFormSubmitBtn {
    background: #6AA9FF;
    color: #050A18;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.CeyezusSparkFormSubmitBtn:hover {
    box-shadow: 0 0 20px #6AA9FF;
    transform: scale(1.02);
}

/* FOOTER */
.CeyezusSparkFooterWrapperMain {
    padding: 60px 20px;
    background: #030712;
    border-top: 1px solid rgba(106, 169, 255, 0.1);
}

.CeyezusSparkFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

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

.CeyezusSparkFooterMailLink {
    color: #6AA9FF;
}

.CeyezusSparkFooterLinksRow {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.CeyezusSparkFooterSubLink:hover {
    color: #6AA9FF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .CeyezusSparkHeroMainContainer, .CeyezusSparkBenefitContainer {
        flex-direction: column;
        text-align: center;
    }
    .CeyezusSparkHeroVisualSide, .CeyezusSparkHeroTextSide, .CeyezusSparkBenefitTextContent, .CeyezusSparkBenefitVisualContent {
        width: 100%;
    }
    .CeyezusSparkHeroButtonBox {
        justify-content: center;
    }
    .CeyezusSparkPricingCardBox {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .CeyezusSparkBurgerBtn {
        display: flex;
    }
    .CeyezusSparkNavigationMenu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0D1426;
        padding: 20px;
        border-bottom: 2px solid #6AA9FF;
    }
    .CeyezusSparkNavListItems {
        flex-direction: column;
        align-items: center;
    }
    .CeyezusSparkNavInputHide:checked ~ .CeyezusSparkNavigationMenu {
        display: block;
    }
    .CeyezusSparkHeroTitleMain {
        font-size: 32px;
    }
    .CeyezusSparkPricingCardBox {
        width: 100%;
    }
    .CeyezusSparkAudienceCardItem {
        width: 100%;
    }
}

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