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

:root {
    --bg-dark: #020617;
    --accent-green: #22c55e;
    --accent-cyan: #38bdf8;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --card-bg: #0f172a;
    --border-color: #1e293b;
    --gradient-line: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-green), transparent);
}

html {
    scroll-behavior: smooth;
}

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

/* Background Wavy Grid Emulation */
body.ZileseqoBodyWrapper::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 70%),
        repeating-linear-gradient(rgba(56, 189, 248, 0.03) 0px, rgba(56, 189, 248, 0.03) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(56, 189, 248, 0.03) 0px, rgba(56, 189, 248, 0.03) 1px, transparent 1px, transparent 40px);
}

/* Layout Utilities */
.ZileseqoSectionInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Header & Navigation */
.ZileseqoHeaderContainer {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.ZileseqoAnimatedStripe {
    height: 4px;
    width: 100%;
    background: linear-gradient(270deg, #020617, #38bdf8, #22c55e, #020617);
    background-size: 400% 400%;
    animation: ZileseqoGradientFlow 10s ease infinite;
}

@keyframes ZileseqoGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.ZileseqoLogoText {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ZileseqoNavigationList {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ZileseqoNavLinkItem {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
}

.ZileseqoNavLinkItem:hover {
    color: var(--accent-cyan);
}

.ZileseqoNavCtaButton {
    text-decoration: none;
    background: var(--accent-cyan);
    color: var(--bg-dark);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    transition: transform 0.2s, background 0.3s;
}

.ZileseqoNavCtaButton:hover {
    transform: translateY(-2px);
    background: var(--accent-green);
}

/* Burger Menu Hidden by Default */
.ZileseqoMenuCheckbox { display: none; }
.ZileseqoBurgerButton { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.ZileseqoBurgerButton span { width: 25px; height: 3px; background: var(--text-light); transition: 0.3s; }

/* Hero Section */
.ZileseqoHeroFlex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ZileseqoHeroTextPart { flex: 1; }
.ZileseqoHeroImagePart { flex: 1; display: flex; justify-content: flex-end; }

.ZileseqoHeroTitleWrapper { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.ZileseqoThemeIcon { font-size: 32px; color: var(--accent-green); margin-top: 5px; }

.ZileseqoMainHeading {
    font-size: 48px;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(to right, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ZileseqoHeroSubheading {
    font-size: 20px;
    color: var(--accent-cyan);
    margin-bottom: 25px;
    font-weight: 600;
}

.ZileseqoHeroDescription {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.ZileseqoPrimaryButton {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-cyan);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 15px;
    transition: 0.3s;
}

.ZileseqoPrimaryButton:hover {
    background: var(--accent-green);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.ZileseqoHeroImg {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.1);
}

/* Pricing Section */
.ZileseqoSectionHeader { text-align: center; margin-bottom: 50px; }
.ZileseqoSectionTitle { font-size: 36px; margin-bottom: 10px; color: var(--text-light); }
.ZileseqoSectionSubtitle { color: var(--text-muted); font-size: 18px; }

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

.ZileseqoPriceCard {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 15px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.ZileseqoPriceCard:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
}

.ZileseqoFeaturedCard {
    border-color: var(--accent-green);
    position: relative;
    transform: scale(1.05);
}

.ZileseqoCardIcon { font-size: 40px; color: var(--accent-cyan); margin-bottom: 20px; }
.ZileseqoCardTitle { font-size: 22px; margin-bottom: 15px; }
.ZileseqoCardPrice { font-size: 32px; font-weight: 800; color: var(--text-light); margin-bottom: 25px; }

.ZileseqoCardList {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.ZileseqoCardList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 14px;
}

.ZileseqoCardList li::before { content: "✓"; color: var(--accent-green); margin-right: 10px; }

.ZileseqoCardButton {
    display: block;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.ZileseqoCardButton:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
}

/* Practice Section */
.ZileseqoPracticeFlex {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
}

.ZileseqoBenefitItem {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.ZileseqoBenefitHeader { font-size: 18px; color: var(--accent-green); margin-bottom: 5px; }
.ZileseqoBenefitDesc { color: var(--text-muted); }

.ZileseqoRoundImage { width: 100%; border-radius: 30px; object-fit: cover; }

/* Content Blocks (Long Text) */
.ZileseqoContentBlock { background: rgba(15, 23, 42, 0.4); }
.ZileseqoArticleContent p { margin-bottom: 20px; font-size: 17px; color: var(--text-muted); }

.ZileseqoQuoteDecoration {
    margin: 40px 0;
    padding: 30px;
    border-left: 4px solid var(--accent-cyan);
    background: rgba(56, 189, 248, 0.05);
    font-style: italic;
    font-size: 20px;
    color: var(--text-light);
}

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

.ZileseqoTextList li {
    padding: 8px 0;
    color: var(--text-muted);
}

/* Target Audience Grid */
.ZileseqoTargetGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.ZileseqoTargetCard {
    flex: 1;
    min-width: 350px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-left: 3px solid var(--accent-cyan);
}

.ZileseqoTargetIcon { font-size: 24px; color: var(--accent-cyan); }
.ZileseqoTargetTitle { font-size: 18px; margin-bottom: 5px; color: var(--text-light); }
.ZileseqoTargetInfo { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Expert Section */
.ZileseqoExpertQuoteCard {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    padding: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 50px;
    border: 1px solid var(--border-color);
}

.ZileseqoAvatar { width: 180px; height: 180px; border-radius: 50%; border: 4px solid var(--accent-cyan); }
.ZileseqoQuoteBody { font-size: 22px; font-style: italic; line-height: 1.5; margin-bottom: 20px; color: var(--text-light); }
.ZileseqoExpertName { font-size: 20px; font-weight: 700; color: var(--accent-green); margin-bottom: 5px; }
.ZileseqoExpertRole { font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* FAQ Accordion */
.ZileseqoAccordion { max-width: 800px; margin: 40px auto 0; }

.ZileseqoFaqItem {
    background: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.ZileseqoFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ZileseqoFaqSummary span { color: var(--accent-cyan); font-family: monospace; }
.ZileseqoFaqSummary::-webkit-details-marker { display: none; }

.ZileseqoFaqAnswer {
    padding: 0 20px 20px 50px;
    color: var(--text-muted);
}

/* Contact Form */
.ZileseqoFormContainer {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.ZileseqoMainForm { display: flex; flex-direction: column; gap: 20px; }
.ZileseqoInputGroup { display: flex; flex-direction: column; gap: 8px; }
.ZileseqoInputLabel { font-size: 14px; font-weight: 600; color: var(--accent-cyan); }

.ZileseqoInputField, .ZileseqoTextField {
    padding: 15px;
    background: #1e293b;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}

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

.ZileseqoCheckboxGroup { display: flex; align-items: flex-start; gap: 10px; margin-top: 10px; }
.ZileseqoCheckLabel { font-size: 13px; color: var(--text-muted); }
.ZileseqoCheckLabel a { color: var(--accent-cyan); text-decoration: none; }

.ZileseqoSubmitBtn {
    padding: 18px;
    background: var(--accent-cyan);
    border: none;
    border-radius: 5px;
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.ZileseqoSubmitBtn:hover {
    background: var(--accent-green);
    transform: scale(1.02);
}

/* Footer */
.ZileseqoFooterWrapper {
    background: #010409;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.ZileseqoFooterTop { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.ZileseqoFooterLogo { font-size: 28px; font-weight: 800; color: var(--accent-cyan); }
.ZileseqoFooterContact p { font-size: 14px; color: var(--text-muted); margin-bottom: 5px; }

.ZileseqoFooterMiddle {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.ZileseqoFooterMiddle p { max-width: 600px; color: var(--text-muted); }

.ZileseqoFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ZileseqoCopyright { font-size: 13px; color: var(--text-muted); }
.ZileseqoFooterNav { display: flex; gap: 20px; }
.ZileseqoFooterNav a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.ZileseqoFooterNav a:hover { color: var(--accent-cyan); }

/* Responsive Design */
@media (max-width: 1024px) {
    .ZileseqoHeroFlex, .ZileseqoPracticeFlex { flex-direction: column; text-align: center; }
    .ZileseqoHeroTextPart, .ZileseqoHeroImagePart, .ZileseqoPracticeText, .ZileseqoPracticeImage { width: 100%; }
    .ZileseqoHeroTitleWrapper { justify-content: center; }
    .ZileseqoExpertQuoteCard { flex-direction: column; text-align: center; padding: 40px 20px; }
}

@media (max-width: 768px) {
    .ZileseqoNavigationList {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--bg-dark);
        flex-direction: column;
        padding-top: 50px;
        transition: 0.4s;
    }
    .ZileseqoBurgerButton { display: flex; }
    .ZileseqoMenuCheckbox:checked ~ .ZileseqoNavigationList { left: 0; }
    .ZileseqoMenuCheckbox:checked ~ .ZileseqoBurgerButton span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .ZileseqoMenuCheckbox:checked ~ .ZileseqoBurgerButton span:nth-child(2) { opacity: 0; }
    .ZileseqoMenuCheckbox:checked ~ .ZileseqoBurgerButton span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .ZileseqoMainHeading { font-size: 34px; }
    .ZileseqoFormContainer { padding: 30px 20px; }
    .ZileseqoPriceCard { min-width: 100%; }
    .ZileseqoFeaturedCard { transform: none; }
}

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