function App() {
  return (
    <div data-screen-label="Green Parcel Express — home">
      <Header />
      <Hero />

      {/* Quote section */}
      <section className="bg-paper-soft py-20 md:py-24">
        <div className="max-w-[1280px] mx-auto px-5 md:px-8">
          <div className="mb-10">
            <SectionHead
              eyebrow="Pricing · transparent"
              title={<>No portal. <span className="italic text-gpx-700">Just a price.</span></>}
              lede="Pick a service, drop your zips, see your rate. Same engine our dispatchers use — quoted to the dollar, locked for 14 days."
            />
          </div>
          <QuoteEngine />
        </div>
      </section>

      <Services />
      <HowItWorks />
      <Coverage />
      <Lanes />
      <FAQ_section />
      <CTA />
      <Footer />
    </div>
  );
}

ReactDOM.createRoot(document.getElementById("root")).render(<App />);
