// Pre-foreclosure, Situations, Testimonials const PreForeclosure = () => { const paths = [ { label: "Behind on payments", title: "Mortgage modification", body: "Still want to keep the house? We'll connect you with our network of housing counselors and help negotiate a lower payment, a lower rate, or a new loan term directly with your lender.", how: [ "We pull your hardship details (job loss, medical, income drop)", "Our HUD-approved counselors build the package with you", "The bank reviews for a lower rate, longer term, or payment rollback", "You keep the house. Arrears get folded into the loan.", ], icon: , tag: "Keep the house", accent: "var(--leaf)", }, { label: "Owe more than it's worth", title: "Short sale (no cost to you)", body: "Underwater and need out? We negotiate directly with your bank to accept less than what's owed. You pay nothing. The bank pays the commissions, closing, and in most cases forgives the shortfall.", how: [ "$0 out of pocket, the bank covers fees, commissions, and title", "We handle the hardship letter, BPO, and lender negotiation", "Far less credit damage than a full foreclosure (often 2 years vs 7)", "Walk away clean. No deficiency chased in most NY cases.", ], icon: , tag: "Protect your credit", accent: "var(--gold-500)", }, { label: "62 or older", title: "Reverse mortgage", body: "Love your home and don't want to leave? A reverse mortgage turns your equity into tax-free monthly income or a lump sum. You stay in the house for life with zero monthly mortgage payment.", how: [ "Must be 62+ and have equity in your primary residence", "FHA-insured HECM program, you always own your home", "No monthly mortgage payment, ever, while you live there", "Use the funds to stop foreclosure, pay medical, or just live", ], icon: , tag: "Stay in your home", accent: "var(--brick)", }, ]; return (
{/* Ornament */}
{/* URGENT BANNER */}
Urgent · Time-sensitive · Act now
Facing foreclosure

DON'T LOSE
YOUR HOUSE
to the bank.

A foreclosure doesn't just take your house. It ruins your credit for 7 years, follows you onto every rental and job application, and often ends in bankruptcy. You don't have to let that happen.

There are three real paths to stop it, and the bank is never going to tell you about all three. We will. Free consultation. No obligation. No fee, ever.

{/* WHAT YOU LOSE - consequence strip */}
{[ { n: "7 yrs", l: "Credit damaged" }, { n: "20–160", l: "Point FICO drop" }, { n: "Yes", l: "Can force bankruptcy" }, { n: "Public", l: "Record. Forever." }, ].map((c,i) => (
{c.n}
{c.l}
))}
{/* SOLUTION HEADER */}

Three ways we save it.

All free to you · Pick the one that fits
{paths.map((p, i) => (
{e.currentTarget.style.background="rgba(245, 238, 223, .07)"; e.currentTarget.style.transform="translateY(-4px)"; e.currentTarget.style.borderColor="rgba(212, 162, 76, .4)"}} onMouseLeave={e=>{e.currentTarget.style.background="rgba(245, 238, 223, .04)"; e.currentTarget.style.transform="translateY(0)"; e.currentTarget.style.borderColor="rgba(245, 238, 223, .12)"}}>
{p.icon}
{p.tag}
If you're · {p.label}

{p.title}

{p.body}

{/* How it works */}
How it works
    {p.how.map((h, k) => (
  • {k+1} {h}
  • ))}
))}
{/* Timeline strip */}
Got a Notice of Default?
In NY you have roughly 120 days before the auction. Every week you wait, options disappear. Call now.
Call (518) 225-5350
); }; const Situations = () => { const items = [ { t:"Inherited a house", d:"Out-of-state probate? We buy it, keep the memories, skip the drive.", icon: }, { t:"Going through a divorce", d:"Clean split, one cash check, no agent dragging it out.", icon: }, { t:"Relocating for work", d:"Move on your new start date, not the buyer's financing timeline.", icon: }, { t:"Tired landlord", d:"Bad tenants included. You don't need to evict, we'll take it all.", icon: }, { t:"Medical or job loss", d:"Fast cash when you need it most. No credit check, no delays.", icon: }, { t:"Downsizing", d:"Empty nest or retiring? Skip showings. Pick your move-out day.", icon: }, { t:"Code violations", d:"Open permits, fines, liens, we take on whatever the city has flagged.", icon: }, { t:"Hoarder home", d:"Don't lift a finger. We buy it full. Take what you want.", icon: }, ]; return (
Situations we solve for

If life happened,
we have a path forward.

We're not looking for perfect. We're looking for real. Here are the most common situations homeowners bring through our door, and a solution for each one.

{items.map((it, i) => (
{e.currentTarget.style.transform="translateY(-4px)"; e.currentTarget.style.borderColor="var(--gold-500)"; e.currentTarget.style.boxShadow="var(--shadow-md)";}} onMouseLeave={e=>{e.currentTarget.style.transform="translateY(0)"; e.currentTarget.style.borderColor="var(--line)"; e.currentTarget.style.boxShadow="none";}}>
{it.icon}

{it.t}

{it.d}

))}

Not on this list? Tell us your situation, we've probably got a solution for it.

); }; const Testimonials = () => { const quotes = [ { q: "I inherited my mother's house in Schenectady and it was a mess. I live in Florida. Niko flew me out once, handled everything else, and I had a check in my account in 11 days. I don't know what I would have done without them.", n: "Denise R.", l: "Schenectady · Inherited sale", c: "$142, 000 · 11 days", }, { q: "We were 3 months behind and the bank was starting the foreclosure paperwork. They walked us through a short sale, we didn't pay a dime, and it didn't destroy our credit like we feared. Real human beings.", n: "Mike & Sarah T.", l: "Albany · Pre-foreclosure", c: "Short sale · Credit protected", }, { q: "I'm 74 and I wasn't ready to leave my house of 38 years. They set me up with a reverse mortgage specialist instead of pressuring me to sell. I still live here. I get a check every month now.", n: "Robert H.", l: "Saratoga · Reverse mortgage", c: "Stayed in home", }, ]; return (
Neighbors helping neighbors

400+ families.
One phone call each.

{[0, 1, 2, 3, 4].map(i => )}
4.9 avg · 200+ reviews
{quotes.map((t, i) => (
{t.l}
{t.c}
))}
); }; const StarIcon = () => ( ); Object.assign(window, { PreForeclosure, Situations, Testimonials });