{% set title_words = sections.pricing.title.split() %}

{{ title_words[0] }} {{ title_words[1] if title_words|length > 2 else '' }} {% for word in title_words %}{% if loop.index0 >= 2 %}{{ word }}{% if not loop.last %} {% endif %}{% endif %}{% endfor %}

{{sections.pricing.subtitle}}

{% for plan in sections.pricing.plans %}

{{ plan.name }}

{{ plan.subtitle | default('') }}

{{ plan.price }}

    {% for feature in plan.features %}
  • {{ feature }}
  • {% endfor %}
{{ plan.cta.label }}
{% endfor %}