/* =========================================================================
   CAPITALCLAIM - ZERO LEAK CRO CSS v2 (Premium Redesign)
   Aesthetic: Dark-mode hero, glass morphism, Stripe/Linear inspired
   ========================================================================= */

/* Kill all site chrome on zero-leak pages */
.zero-leak-body > header.navbar,
.zero-leak-body > footer.site-footer,
.zero-leak-body > aside.ai-sidebar,
.zero-leak-body > .noise-overlay { display: none !important; }

/* Override html AND body from style.css */
html:has(.zero-leak-body) {
    background-color: #0B1120 !important;
    background-image: none !important;
}
.zero-leak-body {
    background: #0B1120 !important;
    background-image: none !important;
    background-color: #0B1120 !important;
    font-family: var(--font-body);
    padding-bottom: 80px;
}

/* =========================================================================
   HEADER (Logo + Phone CTA - No Nav)
   ========================================================================= */
.zl-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    z-index: 500;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.zl-header-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zl-header-logo i { color: #60A5FA; font-size: 1.4rem; }

.zl-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2563EB, #3B82F6);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}
.zl-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    color: #fff;
}

@media (max-width: 600px) {
    .hide-mobile { display: none; }
    .zl-header { padding: 0.8rem 1.2rem; }
    .zl-call-btn { padding: 10px 14px; }
}

/* =========================================================================
   HERO SECTION (Dark Gradient, Full Impact)
   ========================================================================= */
.zl-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 7rem 2rem 4rem;
    overflow: hidden;
    /* Deep dark gradient that screams authority */
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0B1120 0%, #0F172A 40%, #131C31 100%);
}

/* Subtle animated mesh glow */
.zl-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle 600px at 15% 85%, rgba(37, 99, 235, 0.06) 0%, transparent 100%),
        radial-gradient(circle 500px at 85% 30%, rgba(139, 92, 246, 0.04) 0%, transparent 100%);
    animation: meshFloat 15s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}
@keyframes meshFloat {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Grid noise texture overlay */
.zl-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.zl-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 960px) {
    .zl-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .zl-hero {
        min-height: auto;
        padding: 6rem 1.2rem 3rem;
    }
}

/* =========================================================================
   HERO TYPOGRAPHY (White on Dark)
   ========================================================================= */
.zl-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.035em;
}

.zl-sub-h1 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 560px;
}
.zl-sub-h1 strong { color: #60A5FA; font-weight: 700; }

@media (max-width: 960px) {
    .zl-sub-h1 { max-width: 100%; }
}

/* Trust Badges (Glass Cards) */
.zl-trust-boxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem 1.6rem;
    border-radius: 14px;
}
.zl-trust {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    line-height: 1.5;
}
.zl-trust i {
    color: #34D399;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =========================================================================
   CHATBOT WIDGET (Glass Card, Premium Feel)
   ========================================================================= */
.zl-chat-widget {
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 30px 60px -12px rgba(0, 0, 0, 0.5),
        0 18px 36px -18px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    max-height: 580px;
}
.zl-chat-header {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(99, 102, 241, 0.85));
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.zl-chat-header .ai-pulse {
    width: 10px; height: 10px;
    background: #34D399;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(52, 211, 153, 0.5);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.zl-chat-header h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.zl-chat-header p {
    font-size: 0.75rem;
    margin: 0;
    opacity: 0.7;
    font-weight: 400;
}

.zl-chat-body {
    flex: 1;
    padding: 1.4rem;
    overflow-y: auto;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Chat Messages */
.chat-msg {
    display: flex;
    max-width: 88%;
    animation: fadeUpMsg 0.4s ease forwards;
    opacity: 0;
    transform: translateY(8px);
}
@keyframes fadeUpMsg { to { opacity: 1; transform: translateY(0); } }

.msg-ai { align-self: flex-start; }
.msg-ai .msg-bubble {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px 14px 14px 4px;
    padding: 1rem 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    backdrop-filter: blur(4px);
}
.msg-ai .msg-bubble strong { color: #93C5FD; }

.msg-user { align-self: flex-end; }
.msg-user .msg-bubble {
    background: linear-gradient(135deg, #2563EB, #4F46E5);
    color: #fff;
    border-radius: 14px 14px 4px 14px;
    padding: 0.9rem 1.15rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
    animation: fadeIn 0.5s 0.2s forwards;
    opacity: 0;
}
.chat-opt-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #93C5FD;
    padding: 11px 14px;
    border-radius: 10px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.85rem;
    font-family: var(--font-body);
}
.chat-opt-btn:hover {
    background: rgba(37, 99, 235, 0.25);
    border-color: rgba(96, 165, 250, 0.4);
    color: #fff;
    transform: translateX(4px);
}

/* Typing animation */
.typing-dots { display: flex; gap: 5px; padding: 10px; }
.typing-dots span {
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}
.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Input fields inside chatbot */
.zl-chat-body .zl-exit-input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    width: 100%;
}
.zl-chat-body .zl-exit-input::placeholder { color: rgba(255,255,255,0.35); }
.zl-chat-body .zl-exit-input:focus {
    outline: none;
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* =========================================================================
   PANIC CALL BUTTON (for ontslagen.html)
   ========================================================================= */
.zl-panic-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    color: #fff !important;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
    animation: pulseRed 2s infinite;
    margin-bottom: 2rem;
    text-decoration: none;
    transition: transform 0.2s;
}
.zl-panic-call:hover { transform: scale(1.03); color: #fff; }
@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* =========================================================================
   SECTIONS BELOW THE FOLD (Light Mode Switch)
   ========================================================================= */
.zl-section {
    padding: 5rem 2rem;
    background: #FFFFFF !important;
    position: relative;
    color: #0F172A;
}

/* 3-Step Grid */
.zl-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1060px;
    margin: 0 auto;
}
@media (max-width: 768px) { .zl-steps-grid { grid-template-columns: 1fr; } }

.zl-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.zl-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
    border-color: #CBD5E1;
}
.zl-step-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 14px;
    font-size: 1.6rem;
    color: #2563EB;
}
.zl-step h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #0F172A;
}
.zl-step p {
    color: #64748B;
    font-size: 0.92rem;
    line-height: 1.65;
}

/* =========================================================================
   FOUNDER / TRUST BLOCK
   ========================================================================= */
.zl-trust-founder {
    display: flex;
    align-items: stretch;
    max-width: 860px;
    margin: 3rem auto;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.04);
}
@media (max-width: 768px) { .zl-trust-founder { flex-direction: column; } }

.zl-founder-img {
    width: 320px;
    min-height: 320px;
    object-fit: cover;
    object-position: center top;
}
@media (max-width: 768px) {
    .zl-founder-img { width: 100%; min-height: 260px; }
}

.zl-founder-text {
    padding: 2.5rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zl-founder-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.zl-founder-text p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =========================================================================
   REVIEW / TESTIMONIAL CARD
   ========================================================================= */
.zl-review-card {
    max-width: 720px;
    margin: 0 auto 3rem;
    padding: 2.5rem 3rem;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0,0,0,0.02);
    position: relative;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #2563EB;
}
.zl-review-card i.ri-double-quotes-l {
    position: absolute;
    top: -14px; left: 24px;
    background: #fff;
    color: #2563EB;
    font-size: 1.8rem;
    padding: 0 8px;
}
.zl-review-text {
    font-size: 1.05rem;
    color: #334155;
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.zl-review-author {
    font-weight: 700;
    color: #0F172A;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

/* =========================================================================
   COMPARISON TABLE (for juridisch-advies.html)
   ========================================================================= */
.zl-section table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #E2E8F0;
}
.zl-section table thead { background: #0F172A; }
.zl-section table th { font-family: var(--font-heading); }
.zl-section table td, .zl-section table th { font-size: 0.92rem; }

/* =========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================= */
.zl-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 1rem;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.zl-mobile-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563EB, #4F46E5);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: var(--font-heading);
    cursor: pointer;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.zl-mobile-cta-btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .zl-mobile-cta { display: flex; }
    .zl-chat-widget.mobile-hidden { display: none; }
    .zl-chat-widget.mobile-active {
        display: flex;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        z-index: 200;
        border-radius: 0;
        max-height: none;
        border: none;
        background: #0B1120;
    }
}

/* =========================================================================
   EXIT INTENT MODAL
   ========================================================================= */
.zl-exit-intent {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.zl-exit-intent.active {
    display: flex;
    animation: fadeIn 0.3s forwards;
}
.zl-exit-modal {
    background: #FFFFFF;
    max-width: 480px;
    width: 90%;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    position: relative;
    text-align: center;
    animation: scaleUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.zl-exit-close {
    position: absolute;
    top: 16px; right: 16px;
    background: #F1F5F9;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #64748B;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.zl-exit-close:hover { background: #E2E8F0; }

.zl-exit-modal h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #0F172A;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.zl-exit-modal p {
    margin-bottom: 1.5rem;
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
}
.zl-exit-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #F8FAFC;
    color: #0F172A;
}
.zl-exit-input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: #fff;
}
.zl-exit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2563EB, #4F46E5);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    font-family: var(--font-heading);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.zl-exit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

@keyframes scaleUp {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================================================
   SUPER FOOTER
   ========================================================================= */
.zl-super-footer {
    background: #F8FAFC !important;
    padding: 2rem;
    text-align: center;
    color: #94A3B8;
    font-size: 0.82rem;
    border-top: 1px solid #E2E8F0;
}
.zl-super-footer a { color: #64748B; text-decoration: underline; }
.zl-super-footer a:hover { color: #2563EB; }

/* =========================================================================
   UTILITY: btn-outline inside dark sections
   ========================================================================= */
.zl-founder-text .btn-outline,
.zl-hero .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: all 0.25s;
    text-decoration: none;
}
.zl-founder-text .btn-outline:hover,
.zl-hero .btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

/* =========================================================================
   UTILITY CLASSES
   ========================================================================= */
.zl-badge-line {
    color: #60A5FA;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.zl-badge-line i { font-size: 0.8rem; }

@media (max-width: 960px) {
    .zl-badge-line { justify-content: center; }
}

.zl-section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #0F172A;
    letter-spacing: -0.02em;
}

/* Dark section variant */
.zl-section-dark {
    background: #0F172A !important;
    color: #fff;
}
.zl-section-dark .zl-section-title { color: #fff; }
.zl-section-dark .zl-review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 4px solid #60A5FA;
}
.zl-section-dark .zl-review-text { color: rgba(255,255,255,0.75); }
.zl-section-dark .zl-review-author { color: #fff; }
.zl-section-dark .zl-review-card i.ri-double-quotes-l {
    background: transparent;
    color: #60A5FA;
}

/* =========================================================================
   FORM FALLBACK (Jakob's Law: users expect forms on legal sites)
   ========================================================================= */
.zl-form-fallback {
    max-width: 520px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.zl-form-fallback h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zl-form-fallback h3 i { color: #2563EB; }
.zl-form-fallback > p {
    color: #64748B;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.zl-mini-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.zl-mini-form input,
.zl-mini-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: #F8FAFC;
    color: #0F172A;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
}
.zl-mini-form input:focus,
.zl-mini-form select:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: #fff;
}
.zl-mini-form input::placeholder { color: #94A3B8; }

.zl-form-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2563EB, #4F46E5);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    font-family: var(--font-heading);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: -0.01em;
    margin-top: 0.25rem;
}
.zl-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.zl-form-privacy {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 4px;
}
.zl-form-privacy i { font-size: 0.85rem; }

/* Page-specific hero color overrides via class */
.zl-hero--red {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(220, 38, 38, 0.20) 0%, transparent 60%),
        linear-gradient(180deg, #450A0A 0%, #7F1D1D 40%, #991B1B 100%) !important;
}
.zl-hero--red .zl-chat-header {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(239, 68, 68, 0.85)) !important;
}

.zl-hero--sky {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(14, 165, 233, 0.20) 0%, transparent 60%),
        linear-gradient(180deg, #082F49 0%, #0C4A6E 40%, #075985 100%) !important;
}
.zl-hero--sky .zl-chat-header {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.9), rgba(14, 165, 233, 0.85)) !important;
}

.zl-hero--purple {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.20) 0%, transparent 60%),
        linear-gradient(180deg, #3B0764 0%, #581C87 40%, #701A75 100%) !important;
}
.zl-hero--purple .zl-chat-header {
    background: linear-gradient(135deg, rgba(162, 28, 175, 0.9), rgba(168, 85, 247, 0.85)) !important;
}

