2025-11-05 22:22:31 +04:00
|
|
|
<section id="engagement" class="engagement">
|
|
|
|
|
<div class="section-container">
|
2026-07-06 08:14:52 +04:00
|
|
|
<h2>{{ t.engagement.section_title }} <span class="accent-text">{{ t.engagement.section_title_accent }}</span></h2>
|
2025-11-05 22:22:31 +04:00
|
|
|
<p class="section-subtitle">
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.engagement.section_subtitle }}
|
2025-11-05 22:22:31 +04:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<div class="engagement-options">
|
2026-07-06 08:14:52 +04:00
|
|
|
{% for card in t.engagement.cards %}
|
2025-11-05 22:22:31 +04:00
|
|
|
<div class="engagement-card">
|
2026-07-06 08:14:52 +04:00
|
|
|
<div class="engagement-icon">{{ card.icon }}</div>
|
|
|
|
|
<h3>{{ card.title }}</h3>
|
|
|
|
|
<p>{{ card.text }}</p>
|
|
|
|
|
<a href="#contact" class="btn btn-primary">{{ card.cta }}</a>
|
2025-11-05 22:22:31 +04:00
|
|
|
</div>
|
2026-07-06 08:14:52 +04:00
|
|
|
{% endfor %}
|
2025-11-05 22:22:31 +04:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|