
    .funnel-configurator.svelte-pitdxv {
        position: relative;
        padding: 1rem;
    }

    .progress-bar.svelte-pitdxv {
        width: 100%;
        height: 4px;
        background: #e0e0e0;
        margin-bottom: 2rem;
        border-radius: 2px;
        overflow: hidden;
    }

    .progress.svelte-pitdxv {
        height: 100%;
        background: #90C53F;
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .step.svelte-pitdxv {
        margin-bottom: 2rem;
    }

    h3.svelte-pitdxv {
        margin-bottom: 1.5rem;
        text-align: center;
        color: #006838;
    }

    .info-text.svelte-pitdxv {
        text-align: center;
        color: #666;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .options-grid.svelte-pitdxv {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .option-button.svelte-pitdxv {
        padding: 1rem;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        background: white;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1rem;
        text-align: center;
    }

    .option-button.svelte-pitdxv:hover {
        border-color: #90C53F;
        transform: translateY(-2px);
    }

    .option-button.selected.svelte-pitdxv {
        border-color: #006838;
        background: #f0f7ed;
        color: #006838;
        font-weight: bold;
    }

    .plz-input.svelte-pitdxv {
        max-width: 300px;
        margin: 0 auto;
    }

    input.svelte-pitdxv {
        width: 100%;
        padding: 1rem;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    input.svelte-pitdxv:focus {
        border-color: #90C53F;
        outline: none;
    }

    .error.svelte-pitdxv {
        color: #dc3545;
        font-size: 0.9rem;
        margin-top: -0.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .next-button.svelte-pitdxv {
        width: 100%;
        padding: 1rem;
        background: #90C53F;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1rem;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .next-button.svelte-pitdxv:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

    .next-button.svelte-pitdxv:hover:not(:disabled) {
        background: #7DAF2F;
    }

    .back-button.svelte-pitdxv {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        background: transparent;
        border: none;
        color: #666;
        cursor: pointer;
        font-size: 0.9rem;
    }

    .back-button.svelte-pitdxv:hover {
        color: #006838;
    }

    @media (max-width: 768px) {
        .options-grid.svelte-pitdxv {
            grid-template-columns: 1fr;
        }
    }

    .hazardous-grid.svelte-pitdxv {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .hazardous-button.svelte-pitdxv {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        text-align: left;
    }

    .checkbox.svelte-pitdxv {
        width: 20px;
        height: 20px;
        border: 2px solid #e0e0e0;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #006838;
        font-weight: bold;
    }

    .hazardous-button.selected.svelte-pitdxv .checkbox:where(.svelte-pitdxv) {
        border-color: #006838;
        background: #f0f7ed;
    }

    .result-step.svelte-pitdxv {
        text-align: center;
    }

    .price-container.svelte-pitdxv {
        background: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }

    .price-range.svelte-pitdxv {
        margin-bottom: 2rem;
    }

    .price-label.svelte-pitdxv {
        display: block;
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 0.5rem;
    }

    .price-value.svelte-pitdxv {
        font-size: 2rem;
        font-weight: bold;
        color: #006838;
    }

    .price-details.svelte-pitdxv {
        text-align: left;
        margin: 2rem 0;
        padding: 1rem;
        background: #f0f7ed;
        border-radius: 8px;
    }

    .price-details.svelte-pitdxv p:where(.svelte-pitdxv) {
        margin: 0.5rem 0;
        color: #333;
    }

    .next-steps.svelte-pitdxv {
        margin-top: 2rem;
    }

    .action-buttons.svelte-pitdxv {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }

    .call-button.svelte-pitdxv, .email-button.svelte-pitdxv {
        padding: 1rem;
        border-radius: 8px;
        border: none;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .call-button.svelte-pitdxv {
        background: #90C53F;
        color: white;
    }

    .email-button.svelte-pitdxv {
        background: #006838;
        color: white;
    }

    .call-button.svelte-pitdxv:hover, .email-button.svelte-pitdxv:hover {
        transform: translateY(-2px);
    }

    .icon.svelte-pitdxv {
        font-size: 1.2rem;
    }

    @media (max-width: 768px) {
        .action-buttons.svelte-pitdxv {
            grid-template-columns: 1fr;
        }
    }

    .cost-item.svelte-pitdxv {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .cost-description.svelte-pitdxv {
        color: #333;
        font-size: 0.95rem;
    }

    .cost-range.svelte-pitdxv {
        color: #006838;
        font-weight: bold;
        font-size: 0.95rem;
    }

    .price-notes.svelte-pitdxv {
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 2px solid #90C53F;
    }

    h4.svelte-pitdxv {
        color: #006838;
        margin-bottom: 1rem;
    }

    .contact-form.svelte-pitdxv {
        margin-top: 2rem;
        padding: 2rem;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }

    .form-grid.svelte-pitdxv {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        margin: 1rem 0;
    }

    .form-group.svelte-pitdxv {
        display: flex;
        flex-direction: column;
    }

    .form-group.svelte-pitdxv label:where(.svelte-pitdxv) {
        margin-bottom: 0.5rem;
        color: #333;
        font-size: 0.9rem;
    }

    .form-actions.svelte-pitdxv {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .submit-button.svelte-pitdxv {
        padding: 0.75rem 1.5rem;
        background: #006838;
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .submit-button.svelte-pitdxv:hover:not(:disabled) {
        background: #005830;
    }

    .submit-button.svelte-pitdxv:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

    .cancel-button.svelte-pitdxv {
        padding: 0.75rem 1.5rem;
        background: #f8f9fa;
        color: #666;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .cancel-button.svelte-pitdxv:hover {
        background: #e9ecef;
        color: #333;
    }

    .error-message.svelte-pitdxv {
        margin-top: 1rem;
        padding: 0.75rem;
        background-color: #fee2e2;
        color: #dc2626;
        border-radius: 0.375rem;
        text-align: center;
        font-size: 0.875rem;
    }

    .success-message.svelte-pitdxv {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .success-icon.svelte-pitdxv {
        width: 60px;
        height: 60px;
        background: #90C53F;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 1.5rem;
    }

    .success-message.svelte-pitdxv h3:where(.svelte-pitdxv) {
        color: #006838;
        margin-bottom: 1rem;
    }

    .success-message.svelte-pitdxv p:where(.svelte-pitdxv) {
        color: #666;
        margin-bottom: 2rem;
    }

    .new-request-button.svelte-pitdxv {
        padding: 1rem 2rem;
        background: #006838;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .new-request-button.svelte-pitdxv:hover {
        background: #005830;
    }

    /* reCAPTCHA Badge ausblenden */
    .grecaptcha-badge {
        visibility: hidden !important;
    }
