const APPLE_SANS_SP = "-apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif"; const APPLE_TEXT_SP = "-apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif"; const CaseStudiesSection = () => { const bp = useBreakpoint(); const isMobile = bp === "mobile"; const isTablet = bp === "tablet"; const cols = isMobile ? 1 : isTablet ? 2 : 3; return (
Numbers,
not vibes.} lede="Every campaign tracked pixel-to-payment. Last quarter, across six clients." />
{CASES.map((c) => )}
); }; const CASES = [ { brand: "Trimly", cat: "D2C Weight Loss", bigStat: "4.7×", bigLabel: "ROAS in 60 days", row1: { k: "CPA", v: "$38 → $20" }, row2: { k: "Ad spend", v: "$18K / mo" }, quote: "Meta went from break-even to our #1 channel.", dark: false }, { brand: "Raterunners", cat: "Shipping SaaS", bigStat: "-25%", bigLabel: "Lead Gen cost", row1: { k: "Onboarding", v: "+84%" }, row2: { k: "CAC", v: "$48 → $38" }, quote: "The hooks actually understand our user.", dark: true }, { brand: "MintPlay", cat: "Gaming App", bigStat: "42", bigLabel: "TikTok reels in 2 weeks", row1: { k: "Consistency", v: "98.8%" }, row2: { k: "Creative tests", v: "228 in 60 days" }, quote: "They help sharpen the process!", dark: false }, { brand: "Kedor", cat: "B2B Building Material", bigStat: "$7.9M", bigLabel: "social media views in 3 months", row1: { k: "CPA", v: "$110 → $19" }, row2: { k: "Project rate", v: "+71%" }, quote: "Projects triple, sales team happy.", dark: false }, { brand: "Mobili Rebecca", cat: "D2C Furniture", bigStat: "6.1X", bigLabel: "Avg. ROAS across ads", row1: { k: "CPA", v: "-38%" }, row2: { k: "REVENUE", v: "+18% week" }, quote: "Their approach adapt to today's market!", dark: true }, { brand: "Steamatic SFV", cat: "Construction Services", bigStat: "+37%", bigLabel: "Revenue growth in a year", row1: { k: "CPA", v: "$89 → $24" }, row2: { k: "Reach", v: "4.1M locals" }, quote: "Knowledge, creativity and strategic insight", dark: false }, ]; const CaseCard = ({ c, isMobile }) => { const bg = c.dark ? "#051B42" : "rgba(179,205,249,0.25)"; const fg = c.dark ? "#fff" : "#051B42"; const muted = c.dark ? "#B3CDF9" : "rgba(5,27,66,0.55)"; return (
{c.brand}
{c.cat}
{c.bigStat}
{c.bigLabel}
{[c.row1, c.row2].map((r, i) => (
{r.k}
{r.v}
))}
"{c.quote}"
); }; const TestimonialsSection = () => { const bp = useBreakpoint(); const isMobile = bp === "mobile"; const isTablet = bp === "tablet"; const cols = isMobile ? 1 : isTablet ? 2 : 3; return (
Trusted by founders
doing the scaling.} lede="Not influencers. Not agencies reselling our work. Actual operators running actual brands." />
{TESTIMONIALS.map((t, i) => (
))}
); }; const TESTIMONIALS = [ { name: "Galit Shokrian", role: "Founder, Trimly", initials: "GS", avatarBg: "linear-gradient(135deg,#f4a08c,#c86a78)", avatar: "uploads/avatars/galit-shokrian.png", quote: "I originally hired Di Fiore Creative to help with our digital marketing campaigns, and they quickly became an invaluable partner. They stepped in, took ownership of our creative and campaign strategy, and within just weeks reduced our CPA by 41% while increasing traffic fivefold." }, { name: "Michael Garganese", role: "CEO, Mintplay", initials: "MG", avatarBg: "linear-gradient(135deg,#4361EE,#2b2b99)", avatar: "uploads/avatars/michael-garganese.png", quote: "Di Fiore Creative is instrumental in guiding the creative process and execution for our project. From early concept discussions through final delivery, they help refine the vision, sharpen the messaging, and bring everything together in a cohesive way. They are highly professional and organized throughout the engagement." }, { name: "Austin Smith", role: "CEO, Raterunners", initials: "AS", avatarBg: "linear-gradient(135deg,#051B42,#4361EE)", avatar: "uploads/avatars/austin-smith.png", quote: "As a financial SaaS in supply chain, we struggled to find an agency that understood performance creative. Di Fiore nailed it — our lead gen cost dropped 25% and we finally have ads that don't look like every other software company." }, { name: "Ada Di Fiore", role: "President, OHME Group SRL", initials: "AD", avatarBg: "linear-gradient(135deg,#687a3c,#3a4620)", avatar: "uploads/avatars/ada-di-fiore.png", quote: "The speed is insane. We used to wait 3 weeks for a single ad. Di Fiore delivers full creative batches in 48 hours. Our testing velocity went through the roof and so did our revenue." }, { name: "Donatella Caravaggio", role: "CMO, Mobili Rebecca", initials: "DC", avatarBg: "linear-gradient(135deg,#b5896a,#7a4e2e)", avatar: "uploads/avatars/donatella-caravaggio.png", quote: "Their innovative approach seamlessly adapts to today's dynamic market. They know how to turn projects into real-world action and measurable outcomes." }, { name: "Liza Henry", role: "CFO, Steamatic SFV", initials: "LH", avatarBg: "linear-gradient(135deg,#0f3d4a,#d4a574)", avatar: "uploads/avatars/liza-henry.png", quote: "We hired Di Fiore Creative to analyze our existing marketing efforts and develop a new, vibrant website complete with creative content and strategic marketing direction. At the time, we were working with another company that was falling short, and the difference after bringing Di Fiore Creative on board was immediate. Their knowledge, creativity, and strategic insight have had a profound impact on our presence in the industry. Beyond the results, working with their team has significantly streamlined the time we need to dedicate to this area of our business, allowing me to focus my energy elsewhere." }, ]; const TestimonialCard = ({ t }) => (
{Array.from({ length: 5 }).map((_, i) => ( ))}
"{t.quote}"
{t.avatar ? ( {t.name} ) : (
{t.initials}
)}
{t.name}
{t.role}
); window.CaseStudiesSection = CaseStudiesSection; window.TestimonialsSection = TestimonialsSection;