"use client" import { AlertTriangle, TrendingUp, Bot } from "lucide-react" import { Card, CardContent } from "@/components/ui/card" import { PricingChart } from "@/components/pricing-chart" import { pricingStats } from "@/lib/pricing-data" const callouts = [ { icon: AlertTriangle, title: "Your emergency is their payday", description: `Average ${pricingStats.avgPremium} premium on last-minute domestic flights. Your urgency is a revenue opportunity.`, color: "text-destructive", }, { icon: TrendingUp, title: `${pricingStats.markupRange} markup`, description: "Same seat. Same plane. Same crew. Different price because you needed it sooner.", color: "text-accent dark:text-accent", }, { icon: Bot, title: "It's not supply and demand. It's an algorithm.", description: "Airlines use dynamic pricing AI trained on one objective: maximize revenue extraction.", color: "text-primary", }, ] export function ProblemSection() { return (

Airlines use algorithms to maximize what you pay.

{`Here's what that looks like.`}

{/* Pricing chart */}
{/* Callout cards */}
{callouts.map((item) => (

{item.title}

{item.description}

))}
) }