![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/soundstudiopro.com/public_html/config/ |
<?php
/**
* Subscription Plans Configuration
* Unified subscription tier definitions
*/
return [
'essential' => [
'name' => 'Essential',
'price' => 5.00,
'tracks_per_month' => 5,
'features' => [
'5 tracks per month',
'Monthly reset',
'Basic AI models',
'Standard generation speed',
'Personal use license',
'Cancel anytime'
],
'stripe_price_id' => 'price_1SWiISD0zXLMB4gHYKcfZIZW',
'target_audience' => 'Casual creators, hobbyists',
'icon' => 'fa-sync-alt',
'color' => '#48bb78'
],
'starter' => [
'name' => 'Starter',
'price' => 15.00,
'tracks_per_month' => 20,
'features' => [
'20 tracks per month',
'Monthly reset',
'Advanced AI models',
'High-speed generation',
'Priority queue access',
'Personal use license',
'Cancel anytime'
],
'stripe_price_id' => 'price_1SWiITD0zXLMB4gHcKrIgX0N',
'target_audience' => 'Regular creators, small projects',
'icon' => 'fa-star',
'color' => '#667eea'
],
'pro' => [
'name' => 'Pro',
'price' => 35.00,
'tracks_per_month' => 75,
'features' => [
'75 tracks per month',
'Monthly reset',
'Advanced AI models',
'High-speed generation',
'Priority queue access',
'Commercial use license',
'Unlimited downloads',
'Cancel anytime'
],
'stripe_price_id' => 'price_1SWiITD0zXLMB4gHmKxLfZVi',
'target_audience' => 'Professional creators, businesses',
'icon' => 'fa-fire',
'color' => '#f59e0b'
],
'premium' => [
'name' => 'Premium',
'price' => 75.00,
'tracks_per_month' => 200,
'features' => [
'200 tracks per month',
'Monthly reset',
'Advanced AI models',
'High-speed generation',
'Priority queue access',
'Commercial use license',
'Unlimited downloads',
'API access',
'Dedicated support',
'Cancel anytime'
],
'stripe_price_id' => 'price_1SWiIUD0zXLMB4gHtG5mJSFj',
'target_audience' => 'Power users, agencies',
'icon' => 'fa-crown',
'color' => '#8b5cf6'
],
'enterprise' => [
'name' => 'Enterprise',
'price' => 349.00, // Increased from $299 to ensure 57% margin (was 43% at $299)
'tracks_per_month' => 1000,
'features' => [
'1000 tracks per month',
'Monthly reset',
'Advanced AI models',
'Highest priority queue',
'Commercial use license',
'Unlimited downloads',
'Full API access',
'White-label options',
'Dedicated account manager',
'Custom integrations',
'SLA guarantee',
'Cancel anytime'
],
'stripe_price_id' => 'price_1SWiIUD0zXLMB4gHRGd5Soou',
'target_audience' => 'Large companies, enterprises',
'icon' => 'fa-building',
'color' => '#dc2626'
]
];