/ docs / 09-business / cultural-pricing.md
cultural-pricing.md
  1  ---
  2  title: 'Cultural Pricing'
  3  category: 'business'
  4  last_verified: '2026-02-15'
  5  related_files:
  6    - 'src/cron/weekly-repricing.js'
  7    - 'scripts/update-cultural-pricing.js'
  8  tags: ['cultural', 'pricing', 'cron', 'scheduling', 'testing', 'database', 'api', 'ai']
  9  status: 'current'
 10  ---
 11  
 12  # Cultural Pricing Strategy
 13  
 14  ## Overview
 15  
 16  This document explains the research-backed cultural pricing optimization implemented across all 25 target markets. Prices are optimized based on cultural numerology, regional psychology, and consumer behavior patterns.
 17  
 18  ## Key Research Findings
 19  
 20  ### Number 7 is Culturally Complex
 21  
 22  - **Western Markets** (US, CA, AU, NZ, UK, Europe): 7 is the most universally lucky number
 23  - **East Asia** (China, Japan, Korea): 7 is unlucky (ghost month, death associations)
 24  - **Result**: Use 7 strategically in Western markets, avoid in East Asia
 25  
 26  ### Charm vs Round Pricing
 27  
 28  - **Charm Pricing** (.99, .97) works best in: US, CA, AU, NZ, UK, FR, IT, ES, IE
 29    - MIT research shows 24%+ conversion lift
 30    - Consumers perceive lower price points
 31  
 32  - **Round Numbers** preferred in: DE, NO, SE, DK, CH, AT, JP, KR, CN, MX
 33    - Signals efficiency and transparency
 34    - Faster decision-making
 35    - Perceived as more honest
 36  
 37  ### Cultural Number Symbolism
 38  
 39  | Number | Lucky In            | Unlucky In          | Meaning                          |
 40  | ------ | ------------------- | ------------------- | -------------------------------- |
 41  | 1      | India               | -                   | New beginnings, auspiciousness   |
 42  | 4      | -                   | China, Japan, Korea | Sounds like "death"              |
 43  | 7      | West, Poland        | East Asia           | Lucky (West), Ghost month (Asia) |
 44  | 8      | China, Japan, Korea | -                   | Prosperity, wealth               |
 45  | 9      | China, Korea        | Japan               | Longevity (CN/KR), Torture (JP)  |
 46  | 13     | -                   | Poland, Europe      | Bad luck                         |
 47  
 48  ## Price Changes by Priority
 49  
 50  ### CRITICAL (Potentially Offensive)
 51  
 52  #### South Korea: ₩325,777 → ₩328,000
 53  
 54  - **Issue**: Triple 7 ending is unlucky (ghost associations)
 55  - **Solution**: Round to 328,000 (includes lucky 8, round thousands)
 56  - **Impact**: Avoids cultural offense, adds prosperity symbolism
 57  
 58  #### China: ¥637 → ¥688
 59  
 60  - **Issue**: Ends in unlucky 7
 61  - **Solution**: ¥688 (double 8 = very auspicious for prosperity)
 62  - **Impact**: Removes unlucky number, adds double-prosperity symbolism
 63  
 64  ### HIGH PRIORITY (Significant Conversion Impact)
 65  
 66  #### United States & Canada: $307 → $297
 67  
 68  - **Rationale**: Charm pricing + lucky 7 = optimal Western psychology
 69  - **Expected Lift**: 24%+ (based on MIT research)
 70  - **Impact**: Improved conversion rate, better price perception
 71  
 72  #### India: ₹3,097 → ₹3,001
 73  
 74  - **Rationale**: Endings in 1 are auspicious (new beginnings)
 75  - **Cultural**: Common in Indian business pricing
 76  - **Impact**: Aligns with local pricing conventions
 77  
 78  #### Germany: €207 → €210
 79  
 80  - **Rationale**: Germans strongly prefer round numbers
 81  - **Cultural**: Efficiency and quick decision-making priority
 82  - **Impact**: Faster purchase decisions
 83  
 84  #### Scandinavia (NO, SE, DK)
 85  
 86  - **Norway**: kr2,847 → kr2,850
 87  - **Sweden**: kr2,277 → kr2,300
 88  - **Denmark**: kr1,687 → kr1,700
 89  - **Rationale**: Nordic simplicity and transparency preference
 90  - **Impact**: Better price clarity, faster decisions
 91  
 92  ### MEDIUM PRIORITY (Optimization)
 93  
 94  #### Japan: ¥30,487 → ¥31,000
 95  
 96  - **Rationale**: Japanese prefer round, "honest" pricing
 97  - **Cultural**: Charm pricing is less effective in Japan
 98  - **Impact**: Improved trust perception
 99  
100  #### Australia & New Zealand: $347 → $337
101  
102  - **Rationale**: Optimize charm pricing (maintains lucky 7)
103  - **Alternative**: $339 (stronger .99 charm effect)
104  - **Impact**: Better price perception while keeping cultural symbolism
105  
106  #### Switzerland: CHF 227 → CHF 230
107  
108  - **Rationale**: Swiss law requires price clarity
109  - **Cultural**: Consumers highly attentive to hidden fees
110  - **Impact**: Legal compliance, improved transparency
111  
112  #### Mexico: $1,537 → $1,500
113  
114  - **Rationale**: Latin America prefers stable round pricing
115  - **Cultural**: High-context cultures see odd endings as manipulative
116  - **Impact**: Improved trust during economic uncertainty
117  
118  #### Austria: €227 → €230
119  
120  - **Rationale**: Follows German efficiency preference
121  - **Impact**: Faster decision-making
122  
123  ## Countries with Acceptable Prices (No Changes)
124  
125  - **Poland**: Prices include lucky 7, avoid 13 ✓
126  - **Ireland**: Western charm pricing works ✓
127  - **Indonesia**: Minimal number superstitions ✓
128  - **UK**: £157 acceptable, charm pricing effective ✓
129  - **France**: Charm pricing accepted ✓
130  - **Italy**: Charm pricing works well ✓
131  - **Spain**: Charm pricing accepted ✓
132  - **Netherlands**: Mixed market, current acceptable ✓
133  - **Belgium**: Mixed market, current acceptable ✓
134  - **Singapore**: Western influence dominant ✓
135  
136  ## Implementation Details
137  
138  ### Price Update Script
139  
140  Use `scripts/update-cultural-pricing.js` to apply optimizations:
141  
142  ```bash
143  # Preview changes without applying
144  node scripts/update-cultural-pricing.js --dry-run
145  
146  # Apply by priority level
147  node scripts/update-cultural-pricing.js --priority critical
148  node scripts/update-cultural-pricing.js --priority high
149  node scripts/update-cultural-pricing.js --priority medium
150  
151  # Apply all at once
152  node scripts/update-cultural-pricing.js --priority all
153  ```
154  
155  ### Weekly Repricing Integration
156  
157  The weekly repricing cron job (`src/cron/weekly-repricing.js`) has been updated to:
158  
159  1. **Skip overridden prices**: Countries with `price_overridden=1` are preserved
160  2. **Apply cultural rounding**: Uses `applyCulturalRounding()` function instead of universal `.97` endings
161  3. **Respect regional preferences**: Automatically applies appropriate rounding based on country code
162  
163  **Cultural Rounding Rules:**
164  
165  - Western markets (US, CA, AU, NZ, UK, FR, IT, ES, IE): Charm pricing (.97/.99)
166  - German/Nordic (DE, NO, SE, DK, CH, AT): Round numbers (10, 50, 100)
167  - China: Endings in 8 or 88 (prosperity)
168  - Japan: Round hundreds/thousands (honest pricing)
169  - Korea: Round thousands, avoid 4 and 7
170  - India: Endings in 1 (new beginnings)
171  - Mexico: Round hundreds/thousands (stability)
172  - Poland: Endings in 7, avoid 13
173  
174  ### Database Schema
175  
176  Optimized prices are marked with:
177  
178  - `price_overridden = 1`: Indicates manual override for cultural optimization
179  - `override_reason`: Short explanation of the optimization
180  - `market_notes`: Detailed cultural rationale and research findings
181  - `override_date`: Timestamp of optimization
182  
183  ## Testing & Validation
184  
185  ### Pre-Deployment Testing
186  
187  1. ✅ Dry-run mode tested for all priority levels
188  2. ✅ Critical updates applied (KR, CN)
189  3. ✅ High priority updates applied (US, CA, IN, DE, NO, SE, DK)
190  4. ✅ Medium priority updates applied (JP, AU, NZ, CH, MX, AT)
191  
192  ### Post-Deployment Monitoring
193  
194  **Week 1-2**: Monitor conversion rates for critical markets (KR, CN)
195  **Week 3-4**: Monitor conversion rates for high-priority markets
196  **Week 5-8**: Analyze overall impact across all optimized markets
197  
198  **Key Metrics:**
199  
200  - Conversion rate by country
201  - Revenue per customer by country
202  - Customer feedback/complaints about pricing
203  - Payment completion rates
204  
205  ### Rollback Plan
206  
207  If conversion rates decline in any market:
208  
209  1. Check if cultural preferences were misapplied
210  2. Review customer feedback for pricing concerns
211  3. Use price override to test alternatives:
212     ```bash
213     node scripts/update-cultural-pricing.js --country KR --price 330000 --reason "Testing alternative"
214     ```
215  4. A/B test between optimized and original prices
216  
217  ## Research Sources
218  
219  All recommendations based on:
220  
221  - [MIT research on charm pricing effectiveness (24%+ lift)](https://capitaloneshopping.com/research/pricing-psychology-statistics/)
222  - [Cross-cultural psychology studies](https://pixoo.app/blog/charm-pricing-cultural-psychology-markets)
223  - [Regional consumer behavior analysis](https://storebrief.com/ledger/paid-media-performance/pricing-psychology-by-region-charm-vs-round-prices-and-rounding-rules)
224  - [Cultural numerology research](https://nextshark.com/lucky-numbers-superstitions-and-phone-numbers)
225  - [Chinese lucky numbers](https://www.chinatravel.com/culture/chinese-lucky-number)
226  - [Indian numerology](https://www.coohom.com/in/article/unveiling-the-lucky-numbers-for-luck-india)
227  - [Polish superstitions](https://culture.pl/en/article/13-super-polish-superstitions)
228  - [Swiss pricing requirements](https://ewm.swiss/en/blog/pricing-psychological-how-to-present-your-rates-to-maximize-conversions)
229  - [Nordic consumer behavior](https://yougov.com/articles/53592-nordic-behavior-change-digest-get-ahead-of-the-2026-shopper-landscape)
230  
231  ## Future Considerations
232  
233  ### A/B Testing Opportunities
234  
235  Test in mixed markets (NL, BE, ID) to determine optimal strategy:
236  
237  - Netherlands: Charm (.97) vs Round (250)
238  - Belgium: Charm (.97) vs Round (200)
239  - Indonesia: Current (946,037) vs Round (950,000)
240  
241  ### Additional Markets
242  
243  When expanding to new countries, research:
244  
245  1. Cultural number preferences (lucky/unlucky)
246  2. Regional pricing psychology (charm vs round)
247  3. Economic context (stability vs uncertainty)
248  4. Legal requirements (price transparency laws)
249  5. Competitive landscape (local pricing norms)
250  
251  ### Seasonal Adjustments
252  
253  Consider cultural calendar events:
254  
255  - Chinese New Year: Emphasize 8 in pricing
256  - Ghost Month (July-Aug): Avoid 7 in East Asia
257  - Diwali: Consider 1 endings in India
258  - Christmas/Holiday: Western charm pricing more effective
259  
260  ## Summary
261  
262  The cultural pricing optimization addresses:
263  
264  - ✅ Critical cultural issues (KR, CN) that could offend customers
265  - ✅ High-impact conversion opportunities (US, CA, DE, Scandinavia)
266  - ✅ Medium-level optimizations (JP, AU, NZ, CH, MX, AT)
267  - ✅ Automated cultural rounding in weekly repricing
268  - ✅ Research-backed recommendations for all 25 markets
269  
270  **Expected Results:**
271  
272  - Removal of culturally offensive pricing (KR, CN)
273  - 10-24% conversion lift in charm pricing markets (US, CA, AU, NZ)
274  - Faster decision-making in round-number markets (DE, NO, SE, DK)
275  - Improved cultural alignment across all markets