// ========================================================================== // TECHNOCONS EXACT 4-TIER REGIONAL OPERATIONS & WHATSAPP ENGINE // ========================================================================== let activeRegionalPlan = 'India Domestic Plan'; let activePlanCurrency = 'INR'; let activePlanPrice = '₹29,999'; let activePlanDuration = '1 Year'; let activeLicenseKey = 'TECHNO-BOOK-PRO-2026-' + Math.floor(10000 + Math.random() * 89999); let activeLicenseExpiry = '2027-08-31'; function openTechnoSubscriptionModal() { const modal = document.getElementById('technoSubscriptionModal'); if (modal) modal.classList.remove('hidden'); } function closeTechnoSubscriptionModal() { const modal = document.getElementById('technoSubscriptionModal'); if (modal) modal.classList.add('hidden'); } function activateSubscriptionTier(planName, currency, price, duration) { activeRegionalPlan = planName; activePlanCurrency = currency; activePlanPrice = price; activePlanDuration = duration; const badge = document.getElementById('headerLicenseBadge'); if (badge) { if (planName === 'Pilot') { badge.innerHTML = ' PILOT TRIAL (14 Days)'; badge.className = 'px-2.5 py-1 rounded-lg text-[11px] font-bold bg-teal-950 text-teal-300 border border-teal-700 cursor-pointer flex items-center gap-1.5 shadow'; } else if (planName === 'Global Plan') { badge.innerHTML = ' GLOBAL SUBSCRIBER ($399/yr)'; badge.className = 'px-2.5 py-1 rounded-lg text-[11px] font-bold bg-blue-950 text-blue-300 border border-blue-700 cursor-pointer flex items-center gap-1.5 shadow'; } else if (planName === 'Enterprise') { badge.innerHTML = ' ENTERPRISE AGENCY ($2,500/yr)'; badge.className = 'px-2.5 py-1 rounded-lg text-[11px] font-bold bg-amber-950 text-amber-300 border border-amber-700 cursor-pointer flex items-center gap-1.5 shadow'; } else { badge.innerHTML = ' INDIA PRO (₹29,999/yr)'; badge.className = 'px-2.5 py-1 rounded-lg text-[11px] font-bold bg-cyan-950 text-cyan-300 border border-cyan-700 cursor-pointer flex items-center gap-1.5 shadow'; } } closeTechnoSubscriptionModal(); alert('BookSphere™ Bookstore POS & Retail OS: Successfully activated ' + planName + ' (' + price + ').'); dispatchCurrentInvoiceWhatsApp(false); } function sendTechnoconsWhatsApp(phone, messageText, autoOpen = true) { const cleanPhone = (phone || '').replace(/[^0-9]/g, ''); const formattedPhone = cleanPhone.startsWith('91') ? cleanPhone : ('91' + cleanPhone.replace(/^0+/, '')); const encodedText = encodeURIComponent(messageText); const url = 'https://api.whatsapp.com/send?phone=' + formattedPhone + '&text=' + encodedText; if (autoOpen) { window.open(url, '_blank'); } return url; } function dispatchCurrentInvoiceWhatsApp(autoOpen = true) { const name = (document.getElementById('subName') ? document.getElementById('subName').value : 'Er. S. K. Rajhans'); const org = (document.getElementById('subOrg') ? document.getElementById('subOrg').value : 'Techno Consultancy and Services (Technocons)'); const phone = (document.getElementById('subPhone') ? document.getElementById('subPhone').value : '+91 94394-98158'); const invoiceNo = 'TC-INV-2026-' + Math.floor(1000 + Math.random() * 9000); const msg = '*TECHNOCONS OFFICIAL SUBSCRIPTION TAX INVOICE*\n' + '------------------------------------------\n' + '*Application:* BookSphere™ Bookstore POS & Retail OS\n' + '*Invoice No:* ' + invoiceNo + '\n' + '*Selected Tier:* ' + activeRegionalPlan + ' (' + activePlanPrice + ')\n' + '*License Validity:* ' + activePlanDuration + ' (Until ' + activeLicenseExpiry + ')\n' + '*License Key:* ' + activeLicenseKey + '\n' + '------------------------------------------\n' + '*SUBSCRIBER DETAILS:*\n' + '• *Subscriber:* ' + name + '\n' + '• *Organization:* ' + org + '\n' + '• *Contact:* ' + phone + '\n' + '• *GSTIN / Tax ID:* 21AFTPR4703H1ZD\n' + '• *Email:* hello@technocons.com\n' + '------------------------------------------\n' + '*ISSUING AUTHORITY:*\n' + '*Techno Consultancy and Services (Technocons)*\n' + '*Managing Director:* Er. S. K. Rajhans (B.Eng 1995)\n' + '*GSTIN:* 21AFTPR4703H1ZD • Bhubaneswar, Odisha\n' + '*Support:* hello@technocons.com | +91 94394-98158\n\n' + '_Thank you for deploying Technocons Regional Enterprise Solutions._'; sendTechnoconsWhatsApp(phone, msg, autoOpen); } function dispatchEnterpriseContactWhatsApp() { const phone = '+91 94394-98158'; const msg = '*TECHNOCONS ENTERPRISE CUSTOM DEPLOYMENT REQUEST*\n' + '------------------------------------------\n' + '*Application:* BookSphere™ Bookstore POS & Retail OS\n' + '*Tier:* Enterprise Agency Tier ($2,500/year)\n' + '*Requirements:* Dedicated Cloud Server, White-Label Brand, Custom WhatsApp AI & 24/7 SLA\n' + '------------------------------------------\n' + '*Issuer:* Techno Consultancy and Services (Technocons)\n' + '*Managing Director:* Er. S. K. Rajhans (B.Eng 1995)\n' + '*Direct WhatsApp:* +91 94394-98158 | hello@technocons.com'; sendTechnoconsWhatsApp(phone, msg, true); }