// Why Overcut — long-form value props as a numbered list of glass cards. const Why = () => { const { motion } = window.Motion; const items = [ { n: "01", title: "Three times the life", body: "Most coloured vinyls fade or yellow within 18–24 months. OVERCUT’s urethane top-coat is rated for triple that — five to seven years of true colour stability under real-world UV.", }, { n: "02", title: "Same install time as vinyl", body: "OVERCUT installs with the same heat gun, the same squeegee, and the same time-on-car as a traditional vinyl wrap. Your shop doesn’t slow down — your pricing doesn’t change.", }, { n: "03", title: "Self-healing top layer", body: "Sunlight, a heat gun, or a hot-water rinse and surface scratches reflow into the urethane. Daily-drive damage stops being a damage report.", }, { n: "04", title: "Tuned thickness, both ways", body: "Thin enough to wrap the tightest modern body lines without lifting. Thick enough to absorb chips and gravel from the road. We didn’t pick a number — we measured the cars.", }, { n: "05", title: "Priced to actually wrap your car", body: "We benchmarked every major colour-PPF brand and undercut them across the board. No tier games. No installer-only pricing tricks. Just a fair number, every roll.", }, { n: "06", title: "Built by car people", body: "OVERCUT exists because the founders couldn’t buy what they wanted: a colour PPF that performed at the top of the market without the top-of-the-market markup. So we made it.", }, ]; const fadeUp = (delay = 0) => ({ initial: { filter: "blur(10px)", opacity: 0, y: 20 }, whileInView: { filter: "blur(0px)", opacity: 1, y: 0 }, viewport: { once: true, amount: 0.15 }, transition: { duration: 0.7, ease: "easeOut", delay }, }); return (
// Why OVERCUT Six reasons.
One film.
{items.map((it, i) => (
{it.n}

{it.title}

))}
); }; window.Why = Why;