import { Link } from "react-router";
import { ArrowLeft, Shield } from "lucide-react";

export default function PrivacyPolicy() {
  return (
    <main className="min-h-screen bg-[#050505] pt-24 pb-16">
      <div className="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8">
        <Link to="/" className="inline-flex items-center gap-2 text-sm text-[#a5a5a5] hover:text-white mb-6 transition-colors">
          <ArrowLeft className="w-4 h-4" /> Back to Home
        </Link>

        <div className="glass-card rounded-2xl p-8">
          <div className="flex items-center gap-3 mb-6">
            <div className="w-10 h-10 rounded-lg bg-[#5b9aff]/10 flex items-center justify-center">
              <Shield className="w-5 h-5 text-[#5b9aff]" />
            </div>
            <h1 className="text-2xl font-bold text-white">Privacy Policy</h1>
          </div>

          <div className="text-sm text-[#a5a5a5] leading-relaxed space-y-4">
            <p><strong className="text-white">Last Updated:</strong> January 1, 2026</p>
            <p>Deal Stack Tools (&quot;we&quot;, &quot;our&quot;, or &quot;us&quot;) is committed to protecting your privacy. This Privacy Policy explains how we collect, use, store, and protect your personal information when you use our website and services.</p>

            <h2 className="text-lg font-semibold text-white mt-6 mb-2">1. Information We Collect</h2>
            <p>We collect only the information necessary to provide our services:</p>
            <ul className="list-disc list-inside space-y-1 ml-4">
              <li><strong className="text-white">Contact Information:</strong> Name, email address, and phone number provided during checkout or account registration.</li>
              <li><strong className="text-white">Payment Information:</strong> We do not store credit card or banking details. Payments are processed through secure third-party providers (PayPal, UPI, crypto wallets).</li>
              <li><strong className="text-white">Order Information:</strong> Products purchased, purchase date, and delivery details.</li>
              <li><strong className="text-white">Communication Records:</strong> Messages sent via WhatsApp, Telegram, or email for customer support purposes.</li>
              <li><strong className="text-white">Technical Data:</strong> IP address, browser type, and device information collected automatically for security and analytics.</li>
            </ul>

            <h2 className="text-lg font-semibold text-white mt-6 mb-2">2. How We Use Your Information</h2>
            <ul className="list-disc list-inside space-y-1 ml-4">
              <li>To process and deliver your orders</li>
              <li>To provide customer support and technical assistance</li>
              <li>To send order confirmations, delivery updates, and renewal reminders</li>
              <li>To improve our website and services</li>
              <li>To detect and prevent fraud or unauthorized access</li>
              <li>To comply with legal obligations</li>
            </ul>

            <h2 className="text-lg font-semibold text-white mt-6 mb-2">3. Information Sharing</h2>
            <p>We do not sell, rent, or trade your personal information to third parties. We may share information only with:</p>
            <ul className="list-disc list-inside space-y-1 ml-4">
              <li><strong className="text-white">Payment Processors:</strong> Secure payment gateways to process transactions</li>
              <li><strong className="text-white">Legal Authorities:</strong> When required by law or to protect our rights</li>
            </ul>

            <h2 className="text-lg font-semibold text-white mt-6 mb-2">4. Data Security</h2>
            <p>We implement industry-standard security measures including SSL encryption, secure servers, and regular security audits. All WhatsApp and Telegram communications are handled through encrypted channels.</p>

            <h2 className="text-lg font-semibold text-white mt-6 mb-2">5. Data Retention</h2>
            <p>We retain your information for as long as necessary to provide our services and comply with legal obligations. You may request deletion of your personal data at any time by contacting us via WhatsApp.</p>

            <h2 className="text-lg font-semibold text-white mt-6 mb-2">6. Your Rights</h2>
            <p>You have the right to access, correct, or delete your personal information. To exercise these rights, contact us at <strong className="text-white">contact@dealstacktools.shop</strong> or via WhatsApp at <strong className="text-white">+91 7038146526</strong>.</p>

            <h2 className="text-lg font-semibold text-white mt-6 mb-2">7. Cookies</h2>
            <p>We use minimal cookies to improve your browsing experience. These include session cookies for cart functionality and analytics cookies to understand website usage. You can disable cookies in your browser settings.</p>

            <h2 className="text-lg font-semibold text-white mt-6 mb-2">8. Contact Us</h2>
            <p>For privacy-related questions, contact us via WhatsApp at +91 7038146526 or email at contact@dealstacktools.shop.</p>
          </div>
        </div>
      </div>
    </main>
  );
}
