{% macro support_icon(tool) -%}
{% set t = (tool or "")|lower|trim %}
{% if t == "email" %}
{% elif t == "slack" %}
{% elif t == "teams" %}
{% elif t == "discord" %}
{% elif t == "ticket" %}
{% elif t == "googlechat" %}
{% else %}
{# "other", unknown value, or no tool — chat bubble #}
{% endif %}
{%- endmacro %}