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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #3f1d2e;
    background-color: #ffe4e6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* HEADER STYLES (Option 11) */
.CesuveAnchorHeader {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(63, 29, 46, 0.1);
}

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

.CesuveAnchorLogo {
    font-size: 28px;
    font-weight: 800;
    color: #ec4899;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.CesuveAnchorNavLink {
    font-weight: 600;
    color: #3f1d2e;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
}

.CesuveAnchorNavLink:hover {
    color: #ec4899;
}

.CesuveAnchorGlowStrip {
    height: 4px;
    background: linear-gradient(90deg, transparent, #ec4899, #f9a8d4, #ec4899, transparent);
    background-size: 200% 100%;
    animation: CesuveGlowAnim 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.CesuveAnchorHeader:hover .CesuveAnchorGlowStrip {
    opacity: 1;
}

@keyframes CesuveGlowAnim {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* BURGER MENU */
.CesuveAnchorMenuToggleInput {
    display: none;
}

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

.CesuveAnchorBurger span {
    width: 25px;
    height: 3px;
    background-color: #ec4899;
    border-radius: 2px;
    transition: 0.3s;
}

/* HERO SECTION (Option 3) */
.CesuveAnchorHero {
    padding: 100px 20px;
    background-color: #fffafa;
}

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

.CesuveAnchorHeroImageWrapper {
    flex: 1;
}

.CesuveAnchorHeroImage {
    border-radius: 30px;
    box-shadow: 20px 20px 0px #f9a8d4;
    object-fit: cover;
}

.CesuveAnchorHeroContent {
    flex: 1;
}

.CesuveAnchorHeroTitle {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #3f1d2e;
}

.CesuveAnchorHeroSubtitle {
    font-size: 20px;
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 20px;
}

.CesuveAnchorHeroText, .CesuveAnchorHeroDescription {
    margin-bottom: 15px;
    font-size: 17px;
    color: #555;
}

.CesuveAnchorHeroButtons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* PLASMA GLOW BUTTONS */
.CesuveAnchorBtnPrimary {
    background-color: #ec4899;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.4);
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.CesuveAnchorBtnPrimary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.8), 0 0 40px rgba(236, 72, 153, 0.4);
    background-color: #f9a8d4;
}

.CesuveAnchorBtnSecondary {
    background-color: #3f1d2e;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(63, 29, 46, 0.3);
    display: inline-block;
}

.CesuveAnchorBtnSecondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(63, 29, 46, 0.6);
    background-color: #5d2b44;
}

/* PRACTICE SECTION (Option 6) */
.CesuveAnchorPractice {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.CesuveAnchorPracticeContent {
    flex: 1.2;
}

.CesuveAnchorPracticeTitle {
    font-size: 36px;
    margin-bottom: 25px;
}

.CesuveAnchorPracticeIntro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.CesuveAnchorPracticeItem {
    padding: 20px 0;
    border-bottom: 1px solid #f9a8d4;
}

.CesuveAnchorPracticeItem:last-child {
    border-bottom: none;
}

.CesuveAnchorPracticeItemTitle {
    font-size: 22px;
    color: #ec4899;
    margin-bottom: 10px;
}

.CesuveAnchorPracticeImageWrapper {
    flex: 0.8;
}

.CesuveAnchorPracticeImg {
    border-radius: 100% 50% 100% 50%;
    border: 10px solid #ffe4e6;
}

/* FAQ SECTION (Option 12) */
.CesuveAnchorFaq {
    padding: 80px 20px;
    background-color: #fff1f2;
}

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

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

.CesuveAnchorFaqGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.CesuveAnchorFaqCard {
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.CesuveAnchorFaqSummary {
    padding: 20px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: #3f1d2e;
}

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

.CesuveAnchorFaqSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    color: #ec4899;
}

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

.CesuveAnchorFaqContent {
    padding: 0 20px 20px 20px;
    color: #555;
}

/* TARGET SECTION (Option 9) */
.CesuveAnchorTarget {
    padding: 80px 20px;
    background-color: #fff;
}

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

.CesuveAnchorTargetHeader {
    text-align: center;
    margin-bottom: 60px;
}

.CesuveAnchorTargetTitle {
    font-size: 36px;
    margin-bottom: 15px;
}

.CesuveAnchorTimeline {
    position: relative;
    padding-left: 40px;
}

.CesuveAnchorTimeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #f9a8d4;
    border-radius: 2px;
}

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

.CesuveAnchorTimelinePoint {
    position: absolute;
    left: -37px;
    top: 5px;
    width: 18px;
    height: 18px;
    background-color: #ec4899;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.CesuveAnchorTimelineContent h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #ec4899;
}

/* EXPERT QUOTE (Option 10) */
.CesuveAnchorQuote {
    padding: 100px 20px;
    background-color: #3f1d2e;
    color: #fff;
    text-align: center;
}

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

.CesuveAnchorQuoteText {
    font-size: 28px;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 30px;
}

.CesuveAnchorQuoteAuthor {
    font-size: 20px;
    font-weight: 700;
    color: #f9a8d4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* TEXT SECTIONS (Option 12) */
.CesuveAnchorTextSection {
    padding: 80px 20px;
}

.CesuveAnchorAltBg {
    background-color: #ffe4e6;
}

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

.CesuveAnchorTextTitle {
    font-size: 32px;
    margin-bottom: 25px;
    color: #3f1d2e;
}

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

.CesuveAnchorKeyInsights {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ec4899;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.CesuveAnchorKeyTitle {
    font-size: 22px;
    margin-bottom: 15px;
}

.CesuveAnchorKeyList li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.CesuveAnchorKeyList li::before {
    content: '•';
    color: #ec4899;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* PRICING TABLE (Option 2) */
.CesuveAnchorPricing {
    padding: 80px 20px;
    background-color: #ffffff;
}

.CesuveAnchorPricingContainer {
    max-width: 1100px;
    margin: 0 auto;
}

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

.CesuveAnchorPricingTableWrapper {
    overflow-x: auto;
}

.CesuveAnchorPricingTable {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(63, 29, 46, 0.08);
    border-radius: 15px;
    overflow: hidden;
}

.CesuveAnchorPricingTable th {
    background-color: #ec4899;
    color: #fff;
    padding: 25px 20px;
    font-size: 20px;
}

.CesuveAnchorPricingTable td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ffe4e6;
}

.CesuveAnchorPricingTable tr td:first-child {
    text-align: left;
    font-weight: 700;
    background-color: #fffafa;
}

.CesuveAnchorPriceRow td {
    font-size: 24px;
    font-weight: 800;
    color: #ec4899;
}

/* CONTACT FORM */
.CesuveAnchorContact {
    padding: 100px 20px;
    background-color: #fff1f2;
}

.CesuveAnchorContactContainer {
    max-width: 700px;
    margin: 0 auto;
}

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

.CesuveAnchorForm {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(63, 29, 46, 0.05);
}

.CesuveAnchorFormField {
    margin-bottom: 25px;
}

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

.CesuveAnchorInput, .CesuveAnchorTextarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ffe4e6;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.CesuveAnchorInput:focus, .CesuveAnchorTextarea:focus {
    border-color: #ec4899;
}

.CesuveAnchorTextarea {
    height: 150px;
    resize: vertical;
}

.CesuveAnchorCheckboxField {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.CesuveAnchorCheckboxField a {
    color: #ec4899;
    text-decoration: underline;
}

.CesuveAnchorSubmitBtn {
    width: 100%;
    background-color: #ec4899;
    color: #fff;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
    transition: all 0.4s;
}

.CesuveAnchorSubmitBtn:hover {
    background-color: #f9a8d4;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
}

/* FOOTER */
.CesuveAnchorFooter {
    background-color: #3f1d2e;
    color: #ffe4e6;
    padding: 60px 20px;
}

.CesuveAnchorFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.CesuveAnchorFooterInfo {
    margin-bottom: 30px;
}

.CesuveAnchorCopyright {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.CesuveAnchorFooterLink {
    font-size: 14px;
    opacity: 0.8;
}

.CesuveAnchorFooterLink:hover {
    opacity: 1;
    color: #ec4899;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .CesuveAnchorHeroContainer, .CesuveAnchorPracticeContainer {
        flex-direction: column;
        text-align: center;
    }
    
    .CesuveAnchorHeroButtons {
        justify-content: center;
    }
    
    .CesuveAnchorHeroImageWrapper, .CesuveAnchorPracticeImageWrapper {
        width: 100%;
        max-width: 500px;
    }

    .CesuveAnchorHeroTitle {
        font-size: 36px;
    }
    
    .CesuveAnchorFaqGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .CesuveAnchorBurger {
        display: flex;
    }
    
    .CesuveAnchorNav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        transition: 0.4s;
    }
    
    .CesuveAnchorNavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    
    .CesuveAnchorMenuToggleInput:checked ~ .CesuveAnchorNav {
        left: 0;
    }

    .CesuveAnchorPricingTable th, .CesuveAnchorPricingTable td {
        padding: 10px;
        font-size: 14px;
    }
    
    .CesuveAnchorPriceRow td {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .CesuveAnchorHeroTitle {
        font-size: 28px;
    }
    
    .CesuveAnchorHeroButtons {
        flex-direction: column;
    }
    
    .CesuveAnchorForm {
        padding: 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;
    }
}
