How to turn on hue led strip without delay in automation

Hy, I turn Hue LED strip on with an automation but the light turn on with a delay of 5sec. How can I reduce this delay maybe to 1sec?

trigger:
  - platform: state
    entity_id:
      - switch.switch_light
    from: "on"
    to: "off"
condition:
  - condition: and
    conditions:
      - condition: state
        entity_id: sun.sun
        state: below_horizon
      - condition: state
        entity_id: light.led_strip
        state: "off"
action:
  - service: light.turn_on
    data:
      kelvin: 4400
      brightness_pct: 44
    target:
      entity_id: light.led_strip
mode: single

What part is lagging?
The switch or the light? How is this lagging part integrated?

The light is lagging. HA trigers the automation after I put of my switch and after 5 sec the light goes to on…

OkI have the solution: “transition” - at action area