-- migration_policies.sql
-- Run once to seed default policy content into settings table

INSERT INTO settings (`key`, `value`) VALUES
  ('policy_privacy', '<p>Pep Launchpad collects your name, email, phone, address, and payment proof solely to process orders. We do not sell your data. All data is transmitted over HTTPS.</p><p>Questions? <a href="mailto:support@pep-launchpad.com">support@pep-launchpad.com</a></p>'),
  ('policy_terms',   '<p>All payments are manual via Zelle or Revolut. Orders confirm after payment verification. Fraudulent screenshots result in cancellation and a permanent ban. Refunds handled case-by-case within 7 days of receiving your order.</p><p>Questions? <a href="mailto:support@pep-launchpad.com">support@pep-launchpad.com</a></p>'),
  ('policy_contact', '<p>Email: <a href="mailto:support@pep-launchpad.com" style="color:#3b82f6">support@pep-launchpad.com</a><br>Response time: typically 1-2 business hours.<br><a href="https://pep-launchpad.com" target="_blank" style="color:#3b82f6">pep-launchpad.com</a></p>')
ON DUPLICATE KEY UPDATE `key` = `key`;
