RENEW 500HR - Early Bird (2 Payments)

Split your investment into two payments and save $880 compared to regular program pricing.


✓ Payment 1: $2,310 (due January 1, 2026)
✓ Payment 2: $2,310 (due February 11, 2026)
✓ Total: $4,620 (includes 5% processing fee)
✓ Savings: $880 vs. regular program
✓ Enrollment: Secured with first payment

Stripe::Checkout::Session.create({ mode: 'payment', payment_method_types: ['card'], payment_method_types: ['card', 'affirm'], line_items: [{ price_data: { currency: 'usd', product_data: { name: 'T-shirt', }, # Make sure the total amount fits within Affirm's transaction amount limits unit_amount: 5000, }, quantity: 1, }], shipping_address_collection: { # Shipping address is optional but recommended to pass in # Specify which shipping countries Checkout should provide as options for shipping locations allowed_countries: ['US'], }, # If you already have the shipping address, provide it in payment_intent_data: # payment_intent_data: { # shipping: { # name: 'Jenny Rosen', # address: { # line1: '1234 Main Street', # city: 'San Francisco', # state: 'CA', # country: 'US', # postal_code: '94111', # }, # }, # }, success_url: 'https://example.com/success', cancel_url: 'https://example.com/cancel', })