cp /home/claude/shari_v6.html /home/claude/shari_v7.html
python3 << 'PYEOF'
with open('/home/claude/shari_v7.html', 'r') as f:
html = f.read()
1. Add multilingual Google Fonts
2. Add lang-specific font CSS + RTL rules after :root block ends
Insert after existing font CSS / body reset
3. Add data-t attributes to key nav elements
4. Add lang picker button to nav (before closing nav tag)
5. Hero headline - already has IDs h1, h2; add data-t to other lines and sub
about section heading lines
modules
features heading
process heading
plans heading
plan CTAs
service heading
testimonials heading
contact heading
form labels
portal nav items
with open('/home/claude/shari_v7.html', 'w') as f:
f.write(html)
print('HTML modifications done. Length:', len(html))
PYEOF