// ----- Config: links you should replace ----- const CALENDLY_LINK = "https://calendly.com/YOUR_LINK"; const QBO_PAYMENT_LINK = "https://YOUR_QBO_PAYMENT_LINK"; // hosted QuickBooks payment URL (or route from your webhook) const MSA_URL = "https://wortheartists.com/msa"; const LICENSING_URL = "https://wortheartists.com/licensing"; // ----- Pricing Configuration ----- const RATES = { photoDay: 5995, videoDayBase: 5995, storycraftDay: 7795, storycraftBaseAddon: 7500, headshotIndividual: 450, headshotPerPerson: 175, headshotGroupBaseDay: 5995, studioPerHour: 135, extraImage: 60, overtimeHour: 350, travelFee: 1975, dronePerDay: 950, btsPerDay: 1200, retouchBundle10: 600, }; const MULTIPLIERS = { weekend: 0.15, holiday: 0.25, rush: 0.10 }; // ----- Minimal UI helpers (so you don't need extra UI libs) ----- function Label({ htmlFor, className = "", children }) { return ; } function Input(props) { return ; } function Textarea(props) { return