import SEO from '../components/SEO';
import { pageKeywords } from '../data/keywords';
import { OrganizationSchema } from '../components/schemas';

export default function Privacy() {
  return (
    <>
      <SEO
        title="Privacy Policy | MFA Tools Net — Secure Payment & Data Protection"
        description="How we handle your data at MFA Tools Net. We collect very little, never sell your information, and take security seriously. UPI, PayPal, Binance, BTC/USDT accepted."
        keywords={pageKeywords.privacy}
      />
      <OrganizationSchema />
      <section className="pt-28 pb-10 lg:pt-32 lg:pb-14">
        <div className="container-main max-w-3xl">
          <h1 className="text-3xl sm:text-4xl font-extrabold text-white tracking-tight mb-4">Privacy Policy</h1>
          <p className="text-text-secondary mb-8">Last updated: January 2025</p>

          <div className="space-y-8 text-text-secondary text-sm leading-relaxed">
            <div>
              <h2 className="text-white font-semibold text-base mb-2">What Data We Collect</h2>
              <p>Honestly? Not much. When you place an order, we need your name, email, and WhatsApp number so we can deliver your product and stay in touch. That's pretty much it. We don't ask for your life story, your ID, or anything weird.</p>
            </div>

            <div>
              <h2 className="text-white font-semibold text-base mb-2">How We Use It</h2>
              <p>We use your info for exactly three things: (1) delivering your order, (2) sending you occasional updates about new products or deals, and (3) helping you out if you need support. We don't use your data for anything sneaky behind your back.</p>
            </div>

            <div>
              <h2 className="text-white font-semibold text-base mb-2">Cookies</h2>
              <p>Our website uses basic cookies to remember your currency preference and language settings. That's it. No tracking cookies from shady ad networks, no creepy retargeting. We're not fans of that stuff either.</p>
            </div>

            <div>
              <h2 className="text-white font-semibold text-base mb-2">Third-Party Services</h2>
              <p>We accept UPI, PayPal, Binance, and BTC/USDT for payments. We also use WhatsApp and Telegram for communication. These services have their own privacy policies, and we trust them to handle things securely.</p>
            </div>

            <div>
              <h2 className="text-white font-semibold text-base mb-2">Data Security</h2>
              <p>We never see or store your payment details — all transactions are handled securely by the respective payment providers. Your email and phone number are stored securely, and honestly, we're a small team. Nobody here has time to misuse your data.</p>
            </div>

            <div>
              <h2 className="text-white font-semibold text-base mb-2">Your Rights</h2>
              <p>You can ask us to delete your data anytime. Just send a message on WhatsApp and we'll wipe it. No questions asked. You also have the right to know what data we have on you — again, just ask.</p>
            </div>

            <div>
              <h2 className="text-white font-semibold text-base mb-2">Changes to This Policy</h2>
              <p>If we ever change this policy, we'll update the date at the top and let you know. We won't spring surprise changes on you. That's just not how we operate.</p>
            </div>

            <div className="bg-bg-secondary border border-bg-border rounded-2xl p-5">
              <p className="text-text-secondary">Got privacy concerns? Reach out anytime. WhatsApp: <a href="https://wa.me/917035146526" className="text-whatsapp hover:underline">+91 70351 46526</a> | Email: <a href="mailto:mfatoolsnet@gmail.com" className="text-accent-yellow hover:underline">mfatoolsnet@gmail.com</a></p>
            </div>
          </div>
        </div>
      </section>
    </>
  );
}
