← back to Ventura Claw Leads

views/public/for-businesses.ejs

102 lines

<%- include('../partials/head', { title }) %>
<%- include('../partials/header') %>

<section class="long-form">
  <p class="kicker">For businesses</p>
  <h1 class="display-sm">Show up where your neighbors are looking.</h1>
  <p class="lede">Ventura Claw is a directory and lead-routing service for small businesses on Ventura Blvd. Locals search by category, neighborhood, or name; we route their messages straight to your inbox. No middleman, no markup, no transaction fees.</p>

  <div style="display:flex;gap:12px;flex-wrap:wrap;margin:32px 0 0">
    <a href="/find" class="btn btn-primary btn-lg">Find your business →</a>
    <a href="#tiers" class="btn btn-ghost btn-lg">See pricing</a>
  </div>
  <p class="muted" style="font-size:13px;margin:14px 0 0;line-height:1.6">
    Already in the directory? We've seeded 1,800+ listings from Ventura corridor public records.
    Search for your business by name — every listing has a free <strong>"Claim"</strong> button on its page.
    Free tier is forever; paid tiers unlock photos, descriptions, and priority placement.
  </p>

  <h2 id="tiers" style="margin-top:48px">Pricing</h2>
  <div class="tiers">
    <div class="tier-card">
      <h3>Free listing</h3>
      <p class="tier-price">$0<small> / forever</small></p>
      <ul>
        <li>Public profile in the directory</li>
        <li>Address, phone, website, Instagram</li>
        <li>Customer messages forwarded</li>
        <li>Standard placement in search</li>
      </ul>
      <p class="muted" style="font-size:12px;margin-top:14px">Auto-included for any business we add to the directory. Claim yours for free.</p>
    </div>

    <div class="tier-card">
      <h3>Starter</h3>
      <p class="tier-price">$49<small> / month</small></p>
      <ul>
        <li>Everything in free</li>
        <li>Custom description + photos</li>
        <li>"Claimed" badge in search</li>
        <li>Priority over unclaimed listings</li>
        <li>Monthly traffic report</li>
      </ul>
    </div>

    <div class="tier-card is-featured">
      <h3>Standard</h3>
      <p class="tier-price">$99<small> / month</small></p>
      <ul>
        <li>Everything in Starter</li>
        <li>"Standard" badge — appears above free listings</li>
        <li>Featured in category sidebar</li>
        <li>2 lead-form fields per profile (e.g., service type + preferred date)</li>
        <li>Lead delivery within 60 seconds</li>
      </ul>
      <p class="muted" style="font-size:12px;margin-top:14px;color:var(--brass)">Most popular for active local businesses</p>
    </div>

    <div class="tier-card">
      <h3>Premier</h3>
      <p class="tier-price">$199<small> / month</small></p>
      <ul>
        <li>Everything in Standard</li>
        <li>Featured on home page weekly rotation</li>
        <li>Top placement in category search</li>
        <li>Priority lead-form placement</li>
        <li>Quarterly campaign + co-marketing slots</li>
      </ul>
    </div>
  </div>

  <h2>How leads work</h2>
  <p>When a Ventura Claw visitor sends you a message through your profile page, we forward it to the email on file. The visitor's name, phone, ZIP, and message all go in one email — you reply directly. Ventura Claw is never on the reply-to line, never sets a price, never takes a cut of your transaction.</p>

  <h2>What this is not</h2>
  <ul>
    <li>Not a marketplace — we don't process payments between you and your customers.</li>
    <li>Not a contractor or professional referral service. We don't list licensed trades, medical, legal, financial, or real-estate professionals.</li>
    <li>Not a review site. Our directory ranks by claimed-status and tier, not by user reviews.</li>
  </ul>

  <h2>Two ways to get on Ventura Claw</h2>
  <ol>
    <li>
      <strong>Already on the boulevard:</strong> we've already added your business if it's a food, beauty, retail, fitness, pet-services, auto-detail, cleaning, or creative shop on Ventura Blvd between Sherman Oaks and Woodland Hills. <a href="/find">Find it</a>, click "Claim this listing", verify with email — about 60 seconds. The free tier covers a public profile, contact-form lead routing, and your hours/website/Instagram. No credit card required to claim.
    </li>
    <li>
      <strong>Not in the directory yet:</strong> email <a href="mailto:info@venturaclaw.com">info@venturaclaw.com</a> with your business name, address, and which tier you'd like. We'll add the listing and send you a claim link. Setup takes about 10 minutes.
    </li>
  </ol>

  <div style="margin:36px 0 0;padding:20px 24px;background:var(--bg);border:1px solid var(--brass);border-radius:8px">
    <p style="margin:0 0 6px;font-weight:600">Ready to claim?</p>
    <p class="muted" style="margin:0 0 14px;font-size:14px">Search by name — most Ventura Blvd businesses are already in the directory.</p>
    <form action="/find" method="get" style="display:flex;gap:8px;flex-wrap:wrap">
      <input type="search" name="q" placeholder="e.g. 'Boulevard Bagels' or 'Crave Sushi'" autocomplete="off" style="flex:1;min-width:220px;padding:10px 12px;border:1px solid var(--border);border-radius:6px;background:var(--bg);color:var(--fg)">
      <button type="submit" class="btn btn-primary">Search</button>
    </form>
  </div>
</section>

<%- include('../partials/footer') %>