{{ card.popular_text|default('Most Popular')|escape }}
{% endif %}
{% if card.urgency_text %}
⚡ {{ card.urgency_text|escape }}
{% endif %}
{{ card.plan_name }}
{% if card.best_for %}{{ card.best_for|escape }}
{% endif %}
{# Dynamic pricing #}
{% if card.original_price %}
{{ card.original_price|escape }}
{% endif %}
{{ b.default_cycle == 'annual' and card.price_annual ? card.price_annual : card.price_monthly }}
{% if card.price_suffix %}
{{ card.price_suffix|escape }}
{% endif %}
{% if card.savings_text and b.show_toggle %}
{{ card.savings_text|escape }}
{% endif %}
{% if card.description %}
{{ card.description|sanitize_html }}
{% endif %}
{% if card.users_count %}
{{ card.users_count|escape }}
{% endif %}
-
{% set current_category = '' %}
{% for f in card.features %}
{# Desktop: Show categories #}
{% if f.category and f.category != current_category %}
{% set current_category = f.category %}
- {{ f.category|escape }} {% endif %} {# Mobile: Show only included features, Desktop: Show all #}
- {{ f.feature_label|escape }} {% if f.is_new %}New{% endif %} {% if f.tooltip %}{% endif %} {% if f.value %}{{ f.value|escape }}{% endif %} {% endfor %}