function FAQ() { const items = [ { cat: 'About', q: 'Tell me about your agency?', a: 'Nexcut is a full-service content agency. We handle strategy, scripting, editing, thumbnails and SEO for creators and founders who want consistent output without losing time to production.', }, { cat: 'Content', q: 'Tell me about your content plan?', a: 'You film once for ~2 hours. We then script, edit and deliver a month of platform-native content — long form, shorts, captions and thumbnails — ready to post on Instagram, TikTok, LinkedIn and YouTube.', }, { cat: 'Services', q: 'What services will you provide?', a: 'YouTube long-form editing, short-form video for Reels and TikTok, podcast editing, ad creatives and VSLs, plus thumbnails, captions and SEO descriptions.', }, { cat: 'Guarantee', q: "What if I don't get the results?", a: "We work in monthly sprints. If we don't hit the agreed goals, we keep iterating until we do — no extra cost. The first strategy session is always free.", }, { cat: 'Compare', q: "Why wouldn't I hire a freelancer?", a: 'A freelancer edits. We run an end-to-end system — strategy, script, edit, thumbnail, distribution, with a dedicated team and a CRM so nothing falls through.', }, { cat: 'Workflow', q: 'Tell me about your workflow?', a: 'Onboarding call → strategy doc → batch shoot → 48-hour first cuts → revisions → publish. You get a Slack channel, a CRM dashboard and weekly reporting.', }, ]; const [open, setOpen] = useState(0); return (
{/* Rise from black at top — cinematic match with CTA fade-out */}
{/* Backdrop: subtle grid */}
{/* Soft accent halo behind the left column */}
{/* LEFT: heading + helper card */}

Questions
you may ask.

Six things founders ask us before signing. If yours isn't here, ping us — we usually answer within the hour.

N
R
K
Still curious?
Replies in < 1 hour

Hop on a 20-min strategy call. No pitch, no contract — we'll just map out what your content month could look like.

Book a free call
{/* RIGHT: accordion */}
{items.map((it, i) => { const isOpen = open === i; const num = String(i + 1).padStart(2, '0'); return (
{it.a}
); })}
); } Object.assign(window, { FAQ });