{% extends "standalone/base.html" %} {% block title %}{{ brand_name }} - {{ tagline }}{% endblock %} {% block body_class %}font-body antialiased bg-white text-gray-900{% endblock %} {% block body %} {# ═══ HERO ═══ #}
{% if hero_bg_image %}
{% endif %}
{% if niche %}
{{ niche }}
{% endif %}

{{ headline }}

{% if subheadline %}

{{ subheadline }}

{% endif %} {% if hero_body %}

{{ hero_body }}

{% endif %}
{# ═══ ABOUT ═══ #} {% if about %}
About

{{ about_title }}

{% if about_image %}
{{ about_title }}
{% endif %}

{{ about }}

{% endif %} {# ═══ FEATURES ═══ #} {% if features %}
Features

What We Offer

{% if offer %}

{{ offer }}

{% endif %}
{% for f in features %}
{{ f.icon_svg|safe }}

{{ f.title }}

{{ f.description }}

{% endfor %}
{% endif %} {# ═══ HOW IT WORKS ═══ #} {% if how_it_works_steps %}
Process

{{ how_it_works_title or 'How It Works' }}

{% if how_it_works_subtitle %}

{{ how_it_works_subtitle }}

{% endif %}
{% for step in how_it_works_steps %}
{{ loop.index }}

{{ step.title }}

{{ step.description }}

{% endfor %}
{% endif %} {# ═══ PRICING ═══ #} {% if pricing_tiers %}
Pricing

{{ pricing_title or 'Choose Your Plan' }}

{% if pricing_subtitle %}

{{ pricing_subtitle }}

{% endif %}
{% for tier in pricing_tiers %} {% set is_featured = tier.featured or (pricing_tiers|length == 3 and loop.index == 2) or (pricing_tiers|length == 2 and loop.index == 2) %} {% endfor %}
{% endif %} {# ═══ COMPARISON TABLE ═══ #} {% if comparison_table and comparison_table.headers %}
Compare

{{ comparison_title or 'How We Compare' }}

{% for header in comparison_table.headers %} {% endfor %} {% for row in comparison_table.rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ header }}
{% if cell == true or cell == 'true' or cell == '✓' %} {% elif cell == false or cell == 'false' or cell == '✗' %} {% else %} {{ cell }} {% endif %}
{% endif %} {# ═══ TESTIMONIALS ═══ #} {% if testimonials %}
Testimonials

What People Say

{% for t in testimonials %}

{{ t.quote }}

{{ t.name[0] if t.name else 'A' }}
{{ t.name }}
{% if t.role %}
{{ t.role }}
{% endif %}
{% endfor %}
{% endif %} {# ═══ FAQ ═══ #} {% if faq %}
FAQ

Frequently Asked Questions

{% for item in faq %}
{{ item.question }}
{{ item.answer }}
{% endfor %}
{% endif %} {# ═══ TOOLS / AUGMENTS ═══ #} {% if augments %}
Resources

Tools & Resources

Interactive tools to help you get the most out of your business.

{% endif %} {# ═══ CTA ═══ #}

Ready to Get Started?

{{ subheadline }}

{{ cta_text }}
{# ═══ FOOTER ═══ #} {% endblock %}