{{-- Header --}}

Choose Your Perfect Reseller Hosting Plan

Get started with complete confidence. Our 30-day money-back guarantee means it's risk-free.

{{-- OS Toggle --}}
{{-- Plans Grid --}}
@php $linuxPlans = [ [ 'name' => 'Basic', 'price' => 799, 'originalPrice' => 1598, 'savings' => '50%', 'description' => 'Perfect for personal websites and blogs', 'features' => [ 'Unlimited Website', '25 GB Storage', 'Unlimited Bandwidth', 'Unlimited cPanel Accounts', 'Unlimited Email Accounts', 'Unlimited Sub Domains', 'Unlimited Mysql Database', '99.9% Uptime Guarantee', ], 'ctaText' => 'Buy Now', 'popular' => false, ], [ 'name' => 'Professional', 'price' => 1299, 'originalPrice' => 2598, 'savings' => '50%', 'description' => 'Ideal for growing businesses and portfolios', 'features' => [ 'Unlimited Website', '50 GB Storage', 'Unlimited Bandwidth', 'Unlimited cPanel Accounts', 'Unlimited Email Accounts', 'Unlimited Sub Domains', 'Unlimited Mysql Database', '99.9% Uptime Guarantee', ], 'ctaText' => 'Buy Now', 'popular' => true, ], [ 'name' => 'Business', 'price' => 1599, 'originalPrice' => 3198, 'savings' => '50%', 'description' => 'Advanced features for professional websites', 'features' => [ 'Unlimited Website', '100 GB Storage', 'Unlimited Bandwidth', 'Unlimited cPanel Accounts', 'Unlimited Email Accounts', 'Unlimited Sub Domains', 'Unlimited Mysql Database', '99.9% Uptime Guarantee', ], 'ctaText' => 'Buy Now', 'popular' => false, ], [ 'name' => 'Enterprise', 'price' => 2199, 'originalPrice' => 4398, 'savings' => '50%', 'description' => 'Maximum performance for high-traffic sites', 'features' => [ 'Unlimited Website', '200 GB Storage', 'Unlimited Bandwidth', 'Unlimited cPanel Accounts', 'Unlimited Email Accounts', 'Unlimited Sub Domains', 'Unlimited Mysql Database', '99.9% Uptime Guarantee', ], 'ctaText' => 'Buy Now', 'popular' => false, ], ]; $windowsPlans = array_map(function($plan) { $plan['name'] = $plan['name'] . ' Windows'; $plan['features'] = array_map(function($feature) { return str_replace('cPanel', 'Plesk', $feature); }, $plan['features']); $plan['ctaText'] = 'Get Started'; return $plan; }, $linuxPlans); $currentPlans = ($selectedOS === 'linux') ? $linuxPlans : $windowsPlans; @endphp