Her yaz kilo verip ,her kış tekrar kilo almaktan sıkılmadınız mı ?

Beslenme tarzınızda yapacağınız kalıcı değişikliklerle hayat boyu sağlıklı yaşayın.

Gri Diyet

Hayatta bazı tercihler vardır. Siyah ve beyaz gibi, iki ucu keskin sınırlar ve bu iki uçta da yaşayan insanlar… Bazen hayatta iki farklı uçta kalkmak, dengeden uzaklaşmak kişiye zararlı olabilir. Bu aynen sağlıklı beslenmede yani ”Diyet” için de böyledir. Çünkü diyetin kelime anlamı beslenme demektir. Gri’yi yakalamak dengede kalmak sağlıklı beslenmeyi öğrenmenin temel unsurudur. Ne çok fazla besin tüketmek ne çok az … Ne çok zayıf olmak ne çok kilolu.. Ne çok katı kurallar koyup, kuralı bozduğunda yoğun bir suçlulukla boğuşmak. Ne de sağlığı hafife alıp , umursamamak… İşte tam da bu noktada ———–> Denge ———–> ‘Gri’de kalabilmek çok önemlidir. Siyah ve beyazın tam ortası gibi, sizin de sağlığınızın optimum değerde olmasına özen gösterin. Sağlığınız için ‘Gri’de kalın…

Fiyatlandırma Planlarımız

İhtiyacınıza uygun pakedi seçin

Fiyatlandırma bilgileri yükleniyor...

'; // Plans Wrapper - Feature table ile aynı grid yapısı html += '
'; // Boş sol alan (2fr genişliğinde - özellik kolonu ile eşit) html += '
'; // Plan kartları plans.forEach(function(plan, index) { const isPurchasable = plan.is_purchasable == 1; const isFeatured = plan.is_featured == 1; const price = parseFloat(plan.price) || 0; const marketPrice = parseFloat(plan.market_price) || 0; const billingPeriod = (plan.billing_period || '').toLowerCase(); // Button let buttonAction, buttonText; if (plan.button_url && plan.button_url.trim() !== '') { buttonText = plan.button_text || "Daha Fazla Bilgi"; buttonAction = "window.location.href='" + escapeHtml(plan.button_url) + "'"; } else { buttonText = isPurchasable ? (plan.button_text || "Hemen Başla") : "Sizi Arayalım"; buttonAction = isPurchasable ? "buyPricingPlan(" + plan.id + ", '" + escapeHtml(plan.name) + "')" : "window.location.href='" + contactUrl + "'"; } html += '
'; // Badge if (isFeatured || plan.badge_text) { html += '' + escapeHtml(plan.badge_text || 'En Popüler') + ''; } // Plan Name html += '

' + escapeHtml(plan.name) + '

'; // Price - Yıllık ise aylık olarak göster if (price > 0) { if (billingPeriod === 'yearly') { // Yıllık paket: Aylık fiyat göster (yıllık / 12) const monthlyPrice = Math.round(price / 12); html += '
₺' + formatPrice(monthlyPrice) + ' /ay
'; // Altında yıllık fiyatlar html += '
'; if (marketPrice > price) { html += '₺' + formatPrice(marketPrice) + '/yıl '; } html += '₺' + formatPrice(price) + '/yıl'; html += '
'; } else if (billingPeriod === 'lifetime') { // Ömür boyu: Normal göster html += '
₺' + formatPrice(price) + ' /Ömür Boyu
'; if (marketPrice > price) { html += '
'; html += '₺' + formatPrice(marketPrice) + ''; html += '
'; } } else { // Aylık veya diğer: Normal göster const periodText = translatePeriod(billingPeriod); html += '
₺' + formatPrice(price) + ' /' + escapeHtml(periodText) + '
'; if (marketPrice > price) { html += '
'; html += '₺' + formatPrice(marketPrice) + ''; html += '
'; } } } else { html += '

Ücretsiz

'; html += '

' + escapeHtml(translatePeriod(billingPeriod)) + '

'; } // Description - Fiyat altında göster if (plan.description) { html += '

' + escapeHtml(plan.description) + '

'; } // Button html += ''; // Mobile Features html += '
'; if (plan.features) { plan.features.forEach(function(f) { const name = typeof f === 'object' ? f.name : f; const isIncluded = typeof f === 'object' ? (f.is_included == 1) : true; if (isIncluded) { html += '
' + escapeHtml(name) + '
'; } }); } html += '
'; html += '
'; }); html += '
'; // pricing-plans-wrapper // Desktop Features Table html += '
'; allFeatures.forEach(function(feature) { html += '
'; // Feature info (sol kolon) - açıklama dahil html += '
'; html += '
' + escapeHtml(feature.name) + '
'; if (feature.description) { html += '
' + escapeHtml(feature.description) + '
'; } html += '
'; // Her plan için değer (sağ kolonlar) plans.forEach(function(plan, planIndex) { html += '
'; const val = feature.values[planIndex]; if (val) { if (val.value) { html += escapeHtml(val.value); } else if (val.included) { html += ''; } else { html += ''; } } else { html += ''; } html += '
'; }); html += '
'; }); html += '
'; // features-table html += '
'; // pricing-modern document.getElementById("pricingSection").innerHTML = html; // Sticky header için scroll event const plansWrapper = document.querySelector('.pricing-plans-wrapper'); if (plansWrapper) { const wrapperHeight = plansWrapper.offsetHeight; const wrapperTop = plansWrapper.getBoundingClientRect().top + window.scrollY; // Placeholder oluştur (sticky olunca boşluk için) const placeholder = document.createElement('div'); placeholder.className = 'pricing-plans-placeholder'; placeholder.style.height = wrapperHeight + 'px'; plansWrapper.parentNode.insertBefore(placeholder, plansWrapper); // Scroll event let isSticky = false; window.addEventListener('scroll', function() { const scrollTop = window.scrollY; if (scrollTop >= wrapperTop && !isSticky) { isSticky = true; plansWrapper.classList.add('is-sticky'); placeholder.classList.add('active'); } else if (scrollTop '; html += '

' + escapeHtml(category?.name || 'Fiyatlandırma Planları') + '

'; if (category?.description) { html += '

' + escapeHtml(category.description) + '

'; } html += '