import { CheckCircle, Clock, Shield, Headphones, CreditCard, Award } from "lucide-react"

const features = [
  { icon: CheckCircle, title: "Genuine Accounts", desc: "All licenses are 100% authentic from official channels. Zero ban risk guaranteed." },
  { icon: Clock, title: "Fast Activation", desc: "Most orders delivered within 2-10 minutes via WhatsApp or email." },
  { icon: Shield, title: "Secure Checkout", desc: "End-to-end encrypted transactions with multiple secure payment options." },
  { icon: CreditCard, title: "Affordable Pricing", desc: "Save up to 96% compared to official retail prices. No hidden fees." },
  { icon: Headphones, title: "24/7 Expert Support", desc: "Our dedicated team is always available via WhatsApp and Telegram." },
  { icon: Award, title: "24H Money Back", desc: "Full refund guarantee if we cannot resolve your issue within 24 hours." },
]

export function WhyChooseSection() {
  return (
    <section className="py-20 px-4">
      <div className="max-w-6xl mx-auto">
        <div className="text-center mb-12">
          <h2 className="text-3xl md:text-4xl font-bold mb-3">Why Choose Subscription Hero</h2>
          <p className="text-slate-400 max-w-xl mx-auto">Trusted by 10,000+ customers worldwide with a 99.8% success rate</p>
        </div>
        <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
          {features.map((f, i) => (
            <div key={i} className="glass-card p-6 hover:border-[#22c55e]/30 transition-all duration-300 group">
              <div className="w-12 h-12 rounded-xl bg-gradient-to-br from-[#f97316]/20 to-[#22c55e]/20 flex items-center justify-center mb-4 group-hover:from-[#f97316]/30 group-hover:to-[#22c55e]/30 transition-all">
                <f.icon className="w-6 h-6 text-[#f97316]" />
              </div>
              <h3 className="font-semibold text-lg mb-2">{f.title}</h3>
              <p className="text-sm text-slate-400">{f.desc}</p>
            </div>
          ))}
        </div>
      </div>
    </section>
  )
}
