// Bottom sections: Pricing, Team, FAQ, Final CTA, Footer function Pricing() { const plans = [ { name: "Basic", price: "€30", unit: "/ month", who: "For owner-operators getting started.", features: [ "NLP order collection from Telegram, WhatsApp, email", "Basic route matching with return-load suggestions", "Referral program", "Mobile-first workflow", "Community support", ], cta: "Join the waitlist", ctaPrimary: false, popular: false, }, { name: "Pro", price: "€50", unit: "/ month", who: "For carriers who want full control of profit.", features: [ "Everything in Basic", "Circular Route Optimizer (2–10 legs)", "Market Intelligence — price index, heatmaps", "EU Compliance Engine — 561/2006, cabotage, CO₂", "Exchange API integrations", "Priority support", ], cta: "Join the waitlist", ctaPrimary: true, popular: true, }, { name: "Fleet", price: "€40", unit: "/ vehicle / month", who: "For fleets of 5+ trucks.", features: [ "Everything in Pro", "Dispatcher dashboard", "Fleet-wide analytics and driver scoring", "Carbon reporting for shippers", "Minimum 5 vehicles", ], cta: "Talk to us", ctaPrimary: false, popular: false, }, { name: "Pay-per-use", price: "2–3%", unit: "per trip", who: "For carriers who prefer variable cost.", features: [ "Full access to NLP and routing", "No monthly fee", "Min €3 / max €15 per completed trip", "Switch to a subscription any time", ], cta: "Start here", ctaPrimary: false, popular: false, }, ]; return (
PRICING

Priced so you don't have to do the math twice.

No annual contracts. No per-seat fees. Cancel any month.

{plans.map((p,i)=>(
{p.popular &&
MOST POPULAR
}
{p.name}
{p.who}
{p.price} {p.unit}
    {p.features.map((f,j)=>(
  • {f}
  • ))}
{p.cta}
))}
); } function Team() { const founders = [ { name: "Artem Pogoreliuk", role: "CEO", bio: "22 years in management. Led multi-brand marketing (VW, Jaguar Land Rover, Hyundai) at Yug-Auto Holding. Owns the Spain launch, operations and partnerships." }, { name: "Yan Nezamutdinov", role: "CFO", bio: "16 years in logistics and agrotech finance. Runs finance, strategy and investor relations. Leads the ENISA process." }, { name: "Igor Zaitcev", role: "CTO", bio: "20 years in IT, 18 in logistics tech. Owns the platform, R&D and the path to ISO 27001." }, { name: "Ruslan Nezamutdinov", role: "CVO", bio: "43 years in logistics and international trade. Owns vision, industry relationships, exchange partnerships." }, ]; const stats = [ { n: "570,000+", l: "trips delivered on our existing platforms" }, { n: "100,000+", l: "active carriers using our tools" }, { n: "41.4M tons", l: "cargo moved through our systems in 2024" }, { n: "€930K+", l: "already invested in R&D for the EU product" }, ]; return (
THE TEAM

We've shipped this before. Three times.

Four co-founders. Three have worked together since 2009. Between us, over a century of experience in logistics, IT and business management. We've built a freight dispatching platform with 100,000+ users, a terminal queue system handling 476,000 trips a year across 29 terminals, and a full logistics workflow automation suite — all running in production today.

{stats.map((s,i)=>(
{s.n}
{s.l}
))}
{founders.map((f,i)=>(
{f.name} — {f.role}

{f.bio}

))}
); } function FAQ() { const items = [ { q: "When can I actually use Reexo?", a: "Closed beta for 10–20 hand-picked carriers in Spain starts Q4 2026. Public beta opens Q1–Q2 2027. Join the waitlist to get an invite when your region comes online. Honestly — if Spanish S.L. registration drags, Q4 could slip into Q1. We'll tell you when we know." }, { q: "Do I need to give up TIMOCOM or Trans.eu?", a: "No. Reexo integrates with them. You'll keep the orders you already have and get better routes around them." }, { q: "What languages do you support?", a: "English at launch. Spanish and Catalan in Q3 2026. Portuguese, French, German and Polish rolling out through 2027–2029." }, { q: "Is my data safe?", a: "Yes. GDPR-aligned, LOPDGDD-compliant, ISO 27001 preparation in progress. Data hosted in European data centers. We do not sell your operational data. Anonymized market intelligence is opt-in." }, { q: "How does billing work?", a: "Monthly subscription in EUR, charged automatically. Cancel any month, no annual contracts. Pay-per-use is charged only when a trip completes." }, { q: "I run a single truck. Is this really for me?", a: "Especially. 95% of the carriers in Spain run fewer than 5 trucks. The product was designed for you first." }, { q: "Can I become an investor or partner?", a: "Yes. We're in active discussions with angels, exchange operators and telematics providers. Write to team@reexo.ai." }, ]; return (
FAQ

The questions we get most often.

{items.map((it,i)=>(
{it.q} +
{it.a}
))}
); } function FinalCTA() { const [email, setEmail] = React.useState(""); const [submitted, setSubmitted] = React.useState(false); function submit(e){ e.preventDefault(); if(!email || !email.includes("@")) return; fetch("/api/waitlist", { method: "POST", headers: {"Content-Type": "application/json"}, body: JSON.stringify({email}) }).catch(()=>{}); setSubmitted(true); } return (

Stop losing €20,000 per truck, per year.

Join the waitlist. Pilots in Spain begin Q4 2026. Early carriers get a locked-in Basic subscription for their first 12 months.

{!submitted ? (
setEmail(e.target.value)} placeholder="you@yourcompany.com" required aria-label="Email" style={{flex:'1 1 220px'}} />
) : (
Thanks. You're on the list.
We'll reach out when Spain pilots open.
)}

No spam. Ever. We'll write when there's something real to show.

); } function Footer() { return ( ); } Object.assign(window, { Pricing, Team, FAQ, FinalCTA, Footer });