FIbaro Dimmer an Scenes

I have tried and failed a long time ago, now I restarted and tried again, but unfortunately I am stuck at the same point. I can manage to set scenes, but the bloody thing will not turn off again. This makes the whole thing unusable.
I have the Fibaro FGD212
Configuration:
Parameter 11 - All on Active All off not Active
Parameter 20 - Momentary
Parameter 22 - Output changes on input switch change
Parameter 25 - All Enabled
Parameter 28 - YES (I think that this is most important)
The rest I did not touch.

alias: Badlicht – TOD, Fade-In, stabiler Taster (Scene Activation)
mode: restart

trigger:
  - platform: event
    event_type: zwave_js_value_notification
    event_data:
      device_id: 780490e56d1e4119ac2785e0fc0a06a7
      command_class_name: Scene Activation
      property: sceneId

action:

  # πŸ›‘ AUS – sceneId 14 β†’ Licht aus
  - choose:
      - conditions:
          - condition: template
            value_template: "{{ trigger.event.data.value == 14 }}"
        sequence:
          - service: light.turn_off
            target:
              entity_id: light.licht_bad
    default: []

  # 🟒 EIN – sceneId 16 β†’ TOD-Logik
  - choose:

      # πŸŒ™ NACHT
      - conditions:
          - condition: state
            entity_id: binary_sensor.nacht
            state: "on"
        sequence:
          - service: light.turn_on
            target:
              entity_id: light.licht_bad
            data:
              brightness_pct: 10

      # πŸŒ… MORGEN – Fade-In
      - conditions:
          - condition: state
            entity_id: binary_sensor.morgen
            state: "on"
        sequence:
          - service: light.turn_on
            target:
              entity_id: light.licht_bad
            data:
              brightness_pct: 10

          - delay: "00:00:01"
          - condition: state
            entity_id: light.licht_bad
            state: "on"

          - service: light.turn_on
            target:
              entity_id: light.licht_bad
            data:
              brightness_pct: 20

          - delay: "00:00:01"
          - condition: state
            entity_id: light.licht_bad
            state: "on"

          - service: light.turn_on
            target:
              entity_id: light.licht_bad
            data:
              brightness_pct: 30

          - delay: "00:00:01"
          - condition: state
            entity_id: light.licht_bad
            state: "on"

          - service: light.turn_on
            target:
              entity_id: light.licht_bad
            data:
              brightness_pct: 40

      # πŸŒ† ABEND
      - conditions:
          - condition: state
            entity_id: binary_sensor.abend
            state: "on"
        sequence:
          - service: light.turn_on
            target:
              entity_id: light.licht_bad
            data:
              brightness_pct: 100

    # 🌞 TAG (Fallback)
    default:
      - service: light.turn_on
        target:
          entity_id: light.licht_bad
        data:
          brightness_pct: 70

In general, it works fine. But the bloody thing will not turn off, no matter what I try. Copilot (in other use cases AI is brilliant but not here. . .)
I hope that somebody is able to help.
thank you so much.