{# noir override — pricing; preserves heading, intro, tiers[].highlighted/.badge/.name/.price/.period/.description/.features/.ctaUrl/.ctaLabel, currency, billingNote. Check icon markup verbatim. #}
{% if heading %}

{{ heading }}

{% endif %} {% if intro %}

{{ intro }}

{% endif %}
{% for tier in tiers %}
{% if tier.badge %}{{ tier.badge }}{% endif %}

{{ tier.name }}

{% if currency %}{{ currency }}{% else %}${% endif %}{{ tier.price }} {% if tier.period %}{{ tier.period }}{% endif %}

{% if tier.description %}

{{ tier.description }}

{% endif %} {% if tier.features %}
    {% for feature in tier.features %}
  • {{ feature }}
  • {% endfor %}
{% endif %} {% if tier.ctaUrl and tier.ctaLabel %}{% if tier.highlighted %}{{ tier.ctaLabel }}{% else %}{{ tier.ctaLabel }}{% endif %}{% endif %}
{% endfor %}
{% if billingNote %}

{{ billingNote }}

{% endif %}