{% set s = module.style %} {% set b = module.billing %} {% set t = module.trust %} {# Ultra-minimal mobile CSS for fastest load #}
{# Header with trust signals #} {% if t.header_text or t.subheader_text %}
{% if t.header_text %}

{{ t.header_text|escape }}

{% endif %} {% if t.subheader_text %}

{{ t.subheader_text|escape }}

{% endif %} {% if t.ratings_text %}
{{ t.ratings_text|escape }}
{% endif %}
{% endif %} {# Billing toggle #} {% if b.show_toggle %}
{% endif %}
{% for card in module.cards %} {% if card.plan_name %}
{# Badges and alerts #} {% if card.popular and card.popular_text %}
{{ 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 %}
{# Features - simplified for mobile, enhanced for desktop #} {% if card.features|length %}
    {% 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 %}
{% endif %} {# Footer with CTAs and trust signals #}
{% endif %} {% endfor %}
{# Trust signals footer #}
{# Billing toggle JavaScript - deferred and optimized #} {% if b.show_toggle %} {% endif %} {% require_css %} {% end_require_css %}