﻿/* NewClients lead intake/success/no-fee — public-facing AddLead flows.
 *
 * Note: previous .csc-njf-funnel--{quotes,messages,edit-prospect,prospects}
 * scopes were removed — those pages now use .csc-page-{quotes,messages,
 * edit-prospect,prospects} (rules live in cosurgcore-page-leads.css).
 */

/* === AddLeadSubmissionSuccess.razor (csc-njf-funnel--lead-success) === */
.csc-njf-funnel--lead-success {
        min-height: 100vh;
        background: linear-gradient(
            135deg,
            color-mix(in srgb, var(--mud-palette-background-gray) 60%, var(--mud-palette-surface)) 0%,
            var(--mud-palette-background-gray) 50%,
            color-mix(in srgb, var(--mud-palette-text-disabled) 30%, var(--mud-palette-background-gray)) 100%
        );
        padding: 40px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .csc-njf-funnel--lead-success .success-container {
        max-width: 550px;
        width: 100%;
    }

    .csc-njf-funnel--lead-success .success-card {
        background: var(--mud-palette-surface);
        border-radius: 24px;
        padding: 48px 40px;
        text-align: center;
        box-shadow: 0 20px 60px color-mix(in srgb, var(--mud-palette-text-primary) 12%, transparent);
        animation: slideUp 0.5s ease-out;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .csc-njf-funnel--lead-success .success-icon-wrapper {
        position: relative;
        display: inline-block;
        margin-bottom: 24px;
    }

    .csc-njf-funnel--lead-success .success-icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--mud-palette-success);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px color-mix(in srgb, var(--mud-palette-success) 40%, transparent);
        animation: scaleIn 0.4s ease-out 0.2s both;
    }

    @keyframes scaleIn {
        from {
            transform: scale(0);
        }
        to {
            transform: scale(1);
        }
    }

    .csc-njf-funnel--lead-success .success-ripple {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 2px solid var(--mud-palette-success);
        transform: translate(-50%, -50%);
        animation: ripple 1.5s ease-out infinite;
    }

    @keyframes ripple {
        0% {
            width: 80px;
            height: 80px;
            opacity: 1;
        }
        100% {
            width: 140px;
            height: 140px;
            opacity: 0;
        }
    }

    .csc-njf-funnel--lead-success .success-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--mud-palette-text-primary);
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .csc-njf-funnel--lead-success .success-subtitle {
        font-size: 1rem;
        color: var(--mud-palette-text-secondary);
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .csc-njf-funnel--lead-success .priority-paid-badge {
        background: color-mix(in srgb, var(--mud-palette-success) 14%, var(--mud-palette-surface));
        color: var(--mud-palette-success);
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 12px;
        margin: 0 0 20px 0;
        font-size: 0.95rem;
    }

    .csc-njf-funnel--lead-success .success-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 24px;
    }

    .csc-njf-funnel--lead-success .divider-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--mud-palette-lines-default), transparent);
    }

    .csc-njf-funnel--lead-success .next-steps-card {
        background: color-mix(in srgb, var(--mud-palette-info) 12%, var(--mud-palette-surface));
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 24px;
        border-left: 4px solid var(--mud-palette-info);
    }

    .csc-njf-funnel--lead-success .next-steps-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 600;
        color: var(--mud-palette-info);
        margin-bottom: 8px;
    }

    .csc-njf-funnel--lead-success .next-steps-text {
        color: var(--mud-palette-text-secondary);
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.5;
    }

    .csc-njf-funnel--lead-success .timeline {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .csc-njf-funnel--lead-success .timeline-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        background: var(--mud-palette-background-gray);
        border-radius: 12px;
        text-align: left;
    }

    .csc-njf-funnel--lead-success .timeline-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .csc-njf-funnel--lead-success .timeline-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .csc-njf-funnel--lead-success .timeline-title {
        font-weight: 600;
        color: var(--mud-palette-text-primary);
        font-size: 0.9rem;
    }

    .csc-njf-funnel--lead-success .timeline-desc {
        font-size: 0.8rem;
        color: var(--mud-palette-text-secondary);
    }

    .csc-njf-funnel--lead-success .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .csc-njf-funnel--lead-success .hipaa-footer {
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }

    .csc-njf-funnel--lead-success .hipaa-image-container {
        background: var(--mud-palette-surface);
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px color-mix(in srgb, var(--mud-palette-text-primary) 6%, transparent);
    }

    .csc-njf-funnel--lead-success .footer-links {
        text-align: center;
        padding: 20px;
        color: var(--mud-palette-text-secondary);
    }

    @media (max-width: 600px) {
        .csc-njf-funnel--lead-success .success-card {
            padding: 32px 24px;
        }

        .csc-njf-funnel--lead-success .success-title {
            font-size: 1.5rem;
        }

        .csc-njf-funnel--lead-success .timeline-item {
            padding: 10px 12px;
        }
    }

/* === AddLead.razor (csc-njf-funnel--lead-intake) === */
.csc-njf-funnel--lead-intake {
        min-height: 100vh;
        background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 50%, #94a3b8 100%);
        padding: 40px 20px;
    }

    .csc-njf-funnel--lead-intake .form-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .csc-njf-funnel--lead-intake .header-card {
        background: white;
        border-radius: 24px;
        padding: 40px;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        margin-bottom: 24px;
    }

    .csc-njf-funnel--lead-intake .doctor-logo {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #667eea;
        margin-bottom: 20px;
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    }

    .csc-njf-funnel--lead-intake .header-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .csc-njf-funnel--lead-intake .header-subtitle {
        font-size: 1rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto 16px auto;
        line-height: 1.6;
    }

    .csc-njf-funnel--lead-intake .header-consultation-fee {
        font-size: 0.95rem;
        color: #334155;
        max-width: 640px;
        margin: 0 auto 20px auto;
        line-height: 1.55;
        text-align: center;
        padding: 14px 18px;
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        border: 1px solid #93c5fd;
        border-radius: 12px;
    }

    .csc-njf-funnel--lead-intake .hipaa-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .csc-njf-funnel--lead-intake .section-card {
        background: white;
        border-radius: 20px;
        padding: 28px;
        margin-bottom: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .csc-njf-funnel--lead-intake .section-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid #f1f5f9;
    }

    .csc-njf-funnel--lead-intake .section-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

        .csc-njf-funnel--lead-intake .section-icon.purple {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .csc-njf-funnel--lead-intake .section-icon.blue {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        }

        .csc-njf-funnel--lead-intake .section-icon.green {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .csc-njf-funnel--lead-intake .section-icon.orange {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }

        .csc-njf-funnel--lead-intake .section-icon.pink {
            background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
        }

        .csc-njf-funnel--lead-intake .section-icon.teal {
            background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
        }

    .csc-njf-funnel--lead-intake .section-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1e293b;
    }

    .csc-njf-funnel--lead-intake .section-subtitle {
        font-size: 0.85rem;
        color: #64748b;
    }

    .csc-njf-funnel--lead-intake .photo-upload-card {
        border: 2px dashed #e2e8f0;
        border-radius: 16px;
        padding: 16px 12px;
        text-align: center;
        transition: all 0.2s ease;
        background: #fafafa;
        height: 100%;
        overflow: hidden;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .csc-njf-funnel--lead-intake .photo-upload-card:hover {
            border-color: #667eea;
            background: #f8f7ff;
        }

    .csc-njf-funnel--lead-intake .photo-label {
        font-size: 0.7rem;
        font-weight: 700;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
        white-space: nowrap;
    }

    .csc-njf-funnel--lead-intake .photo-preview {
        width: 100px;
        height: 100px;
        border-radius: 12px;
        background: #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-bottom: 12px;
        border: 2px solid #cbd5e1;
    }

        .csc-njf-funnel--lead-intake .photo-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .csc-njf-funnel--lead-intake .photo-preview-icon {
        color: #94a3b8;
        font-size: 2.5rem;
    }

    .csc-njf-funnel--lead-intake .photo-upload-btn {
        width: 100%;
        max-width: 140px;
    }

    .csc-njf-funnel--lead-intake .photo-upload-card .mud-file-upload {
        width: 100% !important;
    }

    .csc-njf-funnel--lead-intake .photo-clear-btn {
        margin-top: 8px;
    }

    .csc-njf-funnel--lead-intake .photo-upload-card.has-error {
        border-color: #ef4444 !important;
        background: #fef2f2 !important;
    }

        .csc-njf-funnel--lead-intake .photo-upload-card.has-error .photo-label {
            color: #dc2626 !important;
        }

        .csc-njf-funnel--lead-intake .photo-upload-card.has-error .photo-preview {
            border-color: #ef4444 !important;
        }

    .csc-njf-funnel--lead-intake .required-asterisk {
        color: #ef4444;
        font-weight: 700;
    }

    .csc-njf-funnel--lead-intake .consent-card {
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        border-radius: 16px;
        padding: 20px;
        border-left: 4px solid #f59e0b;
    }

    .csc-njf-funnel--lead-intake .fee-notice-card {
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        border-radius: 16px;
        padding: 20px;
        border-left: 4px solid #3b82f6;
    }

    .csc-njf-funnel--lead-intake .submit-button {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        border-radius: 12px !important;
        padding: 16px 48px !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        text-transform: none !important;
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4) !important;
        transition: all 0.3s ease !important;
    }

        .csc-njf-funnel--lead-intake .submit-button:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5) !important;
        }

        .csc-njf-funnel--lead-intake .submit-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

    .csc-njf-funnel--lead-intake .validation-card {
        background: #fef2f2;
        border-radius: 16px;
        padding: 20px;
        border-left: 4px solid #ef4444;
    }

    .csc-njf-funnel--lead-intake .bmi-display {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        border-radius: 12px;
        padding: 16px;
        margin-top: 12px;
    }

    .csc-njf-funnel--lead-intake .unit-toggle {
        background: #f1f5f9;
        border-radius: 8px;
        padding: 8px 12px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .csc-njf-funnel--lead-intake .field-label {
        font-size: 0.8rem;
        font-weight: 600;
        color: #475569;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }

    .csc-njf-funnel--lead-intake .info-alert {
        background: #eff6ff;
        border-radius: 12px;
        padding: 16px;
        border-left: 4px solid #3b82f6;
    }

    .csc-njf-funnel--lead-intake .footer-links {
        text-align: center;
        padding: 20px;
        color: #475569;
    }

        .csc-njf-funnel--lead-intake .footer-links a {
            color: #1e293b;
            text-decoration: underline;
        }

    .csc-njf-funnel--lead-intake .hipaa-image-container {
        background: white;
        padding: 16px 24px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

/* === AddLeadNoFee.razor (csc-njf-funnel--lead-nofee) === */
.csc-njf-funnel--lead-nofee {
        min-height: 100vh;
        background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 50%, #94a3b8 100%);
        padding: 40px 20px;
    }

    .csc-njf-funnel--lead-nofee .form-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .csc-njf-funnel--lead-nofee .success-message-card {
        text-align: center;
        padding: 48px 24px;
    }

    .csc-njf-funnel--lead-nofee .success-message-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .csc-njf-funnel--lead-nofee .header-card {
        background: white;
        border-radius: 24px;
        padding: 40px;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        margin-bottom: 24px;
    }

    .csc-njf-funnel--lead-nofee .doctor-logo {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #667eea;
        margin-bottom: 20px;
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    }

    .csc-njf-funnel--lead-nofee .header-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .csc-njf-funnel--lead-nofee .header-subtitle {
        font-size: 1rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto 16px auto;
        line-height: 1.6;
    }

    .csc-njf-funnel--lead-nofee .hipaa-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .csc-njf-funnel--lead-nofee .section-card {
        background: white;
        border-radius: 20px;
        padding: 28px;
        margin-bottom: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .csc-njf-funnel--lead-nofee .section-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid #f1f5f9;
    }

    .csc-njf-funnel--lead-nofee .section-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

        .csc-njf-funnel--lead-nofee .section-icon.purple {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .csc-njf-funnel--lead-nofee .section-icon.blue {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        }

        .csc-njf-funnel--lead-nofee .section-icon.green {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .csc-njf-funnel--lead-nofee .section-icon.orange {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }

        .csc-njf-funnel--lead-nofee .section-icon.pink {
            background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
        }

        .csc-njf-funnel--lead-nofee .section-icon.teal {
            background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
        }

    .csc-njf-funnel--lead-nofee .section-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1e293b;
    }

    .csc-njf-funnel--lead-nofee .section-subtitle {
        font-size: 0.85rem;
        color: #64748b;
    }

    .csc-njf-funnel--lead-nofee .photo-upload-card {
        border: 2px dashed #e2e8f0;
        border-radius: 16px;
        padding: 16px 12px;
        text-align: center;
        transition: all 0.2s ease;
        background: #fafafa;
        height: 100%;
        overflow: hidden;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .csc-njf-funnel--lead-nofee .photo-upload-card:hover {
            border-color: #667eea;
            background: #f8f7ff;
        }

    .csc-njf-funnel--lead-nofee .photo-label {
        font-size: 0.7rem;
        font-weight: 700;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
        white-space: nowrap;
    }

    .csc-njf-funnel--lead-nofee .photo-preview {
        width: 100px;
        height: 100px;
        border-radius: 12px;
        background: #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-bottom: 12px;
        border: 2px solid #cbd5e1;
    }

        .csc-njf-funnel--lead-nofee .photo-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .csc-njf-funnel--lead-nofee .photo-preview-icon {
        color: #94a3b8;
        font-size: 2.5rem;
    }

    .csc-njf-funnel--lead-nofee .photo-upload-btn {
        width: 100%;
        max-width: 140px;
    }

    .csc-njf-funnel--lead-nofee .photo-upload-card .mud-file-upload {
        width: 100% !important;
    }

    .csc-njf-funnel--lead-nofee .photo-clear-btn {
        margin-top: 8px;
    }

    .csc-njf-funnel--lead-nofee .photo-upload-card.has-error {
        border-color: #ef4444 !important;
        background: #fef2f2 !important;
    }

        .csc-njf-funnel--lead-nofee .photo-upload-card.has-error .photo-label {
            color: #dc2626 !important;
        }

        .csc-njf-funnel--lead-nofee .photo-upload-card.has-error .photo-preview {
            border-color: #ef4444 !important;
        }

    .csc-njf-funnel--lead-nofee .required-asterisk {
        color: #ef4444;
        font-weight: 700;
    }

    .csc-njf-funnel--lead-nofee .consent-card {
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        border-radius: 16px;
        padding: 20px;
        border-left: 4px solid #f59e0b;
    }

    .csc-njf-funnel--lead-nofee .fee-notice-card {
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        border-radius: 16px;
        padding: 20px;
        border-left: 4px solid #3b82f6;
    }

    .csc-njf-funnel--lead-nofee .submit-button {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        border-radius: 12px !important;
        padding: 16px 48px !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        text-transform: none !important;
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4) !important;
        transition: all 0.3s ease !important;
    }

        .csc-njf-funnel--lead-nofee .submit-button:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5) !important;
        }

        .csc-njf-funnel--lead-nofee .submit-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

    .csc-njf-funnel--lead-nofee .validation-card {
        background: #fef2f2;
        border-radius: 16px;
        padding: 20px;
        border-left: 4px solid #ef4444;
    }

    .csc-njf-funnel--lead-nofee .bmi-display {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        border-radius: 12px;
        padding: 16px;
        margin-top: 12px;
    }

    .csc-njf-funnel--lead-nofee .unit-toggle {
        background: #f1f5f9;
        border-radius: 8px;
        padding: 8px 12px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .csc-njf-funnel--lead-nofee .field-label {
        font-size: 0.8rem;
        font-weight: 600;
        color: #475569;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }

    .csc-njf-funnel--lead-nofee .info-alert {
        background: #eff6ff;
        border-radius: 12px;
        padding: 16px;
        border-left: 4px solid #3b82f6;
    }

    .csc-njf-funnel--lead-nofee .footer-links {
        text-align: center;
        padding: 20px;
        color: #475569;
    }

        .csc-njf-funnel--lead-nofee .footer-links a {
            color: #1e293b;
            text-decoration: underline;
        }

    .csc-njf-funnel--lead-nofee .hipaa-image-container {
        background: white;
        padding: 16px 24px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

/* === AddProspectQuote.razor (csc-njf-funnel--add-quote) === */
.csc-njf-funnel--add-quote { min-height: 100vh; background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%); padding: 24px; }
    .csc-njf-funnel--add-quote .quote-header { background: white; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.06); padding: 20px 24px; margin-bottom: 20px; }
    .csc-njf-funnel--add-quote .quote-icon {
        width: 56px; height: 56px; border-radius: 14px;
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        display: flex; align-items: center; justify-content: center; color: white;
    }
    .csc-njf-funnel--add-quote .prospect-badge {
        background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
        padding: 6px 14px; border-radius: 20px; font-weight: 600; color: #4338ca; font-size: .875rem;
    }
    .csc-njf-funnel--add-quote .form-section { background: white; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.06); margin-bottom: 20px; overflow: hidden; }
    .csc-njf-funnel--add-quote .section-h { background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); padding: 14px 20px; border-bottom: 1px solid #e2e8f0; font-weight: 600; color: #6366f1; display: flex; align-items: center; gap: 8px; font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; }
    .csc-njf-funnel--add-quote .section-body { padding: 20px; }
    .csc-njf-funnel--add-quote .items-head { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); padding: 14px 20px; color: white; border-radius: 12px 12px 0 0; }
    .csc-njf-funnel--add-quote .items-box { border: 1px solid #e2e8f0; border-top: none; border-radius: 0 0 12px 12px; background: white; }
    .csc-njf-funnel--add-quote .price-badge { font-weight: 700; color: #059669; }
    .csc-njf-funnel--add-quote .totals-card { background: #f8fafc; border-radius: 12px; padding: 16px; text-align: center; border: 1px solid #e2e8f0; }
    .csc-njf-funnel--add-quote .total-val { font-size: 1.5rem; font-weight: 800; color: #1e293b; }

/* === EditProspectQuote.razor (csc-njf-funnel--edit-quote) === */
.csc-njf-funnel--edit-quote { min-height: 100vh; background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%); padding: 24px; }
    .csc-njf-funnel--edit-quote .quote-header { background: white; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.06); padding: 20px 24px; margin-bottom: 20px; }
    .csc-njf-funnel--edit-quote .quote-icon {
        width: 56px; height: 56px; border-radius: 14px;
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        display: flex; align-items: center; justify-content: center; color: white;
    }
    .csc-njf-funnel--edit-quote .num-badge { background: #eef2ff; color: #4338ca; font-weight: 700; padding: 4px 12px; border-radius: 8px; }
    .csc-njf-funnel--edit-quote .form-section { background: white; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.06); margin-bottom: 20px; overflow: hidden; }
    .csc-njf-funnel--edit-quote .section-h { background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); padding: 14px 20px; border-bottom: 1px solid #e2e8f0; font-weight: 600; color: #6366f1; display: flex; align-items: center; gap: 8px; font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; }
    .csc-njf-funnel--edit-quote .section-body { padding: 20px; }
    .csc-njf-funnel--edit-quote .items-head { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); padding: 14px 20px; color: white; border-radius: 12px 12px 0 0; }
    .csc-njf-funnel--edit-quote .items-box { border: 1px solid #e2e8f0; border-top: none; border-radius: 0 0 12px 12px; background: white; }
    .csc-njf-funnel--edit-quote .price-badge { font-weight: 700; color: #059669; }
    .csc-njf-funnel--edit-quote .totals-card { background: #f8fafc; border-radius: 12px; padding: 16px; text-align: center; border: 1px solid #e2e8f0; }
    .csc-njf-funnel--edit-quote .total-val { font-size: 1.5rem; font-weight: 800; color: #1e293b; }

/* Lead response dialogs: .csc-dialog-compose / .csc-dialog-readonly in cosurgcore-app-additions.css */
