# Sell Your Commercial Truck or Van | Fast Appraisal | SRQ Auto

:::raw
<script>
window.addEventListener('message', function(e) {
  if (e.data?.type === 'savvy-form-resize') {
    var f = document.getElementById('savvy-form-srq-auto-sell-commercial-vehicle');
    if (f) f.style.height = e.data.height + 'px';
  }
});
</script>

<style>
  :root {
    --red: #bc0600;
    --red-hover: #9e0500;
    --navy: #0a2a5e;
    --ink: #1a1a1a;
    --ink-soft: #45576b;
    --card: #ffffff;
    --line: #e2e8f0;
    --bg: #f8f9fa;
    --radius: 8px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: var(--ink); background: var(--bg); line-height: 1.6; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; }

  /* ── Utility Bar ─────────────────────────────────────────── */
  .utilitybar {
    background: var(--red); color: #fff; font-size: 0.8rem; padding: 6px 0;
  }
  .utilitybar .wrap {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .utilitybar a { color: #fff; }
  .utilitybar .util-left { display: flex; align-items: center; gap: 1.2rem; }
  .utilitybar .util-item { display: flex; align-items: center; gap: 4px; }
  .utilitybar svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
  .utilitybar .util-right { display: flex; align-items: center; gap: 1rem; }

  /* ── Masthead ────────────────────────────────────────────── */
  .masthead {
    background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100;
  }
  .masthead .wrap {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between; min-height: 64px;
  }
  .masthead .brand-logo { height: 50px; width: auto; display: block; }
  .masthead .nav { display: flex; align-items: center; gap: 0; }
  .masthead .nav a {
    padding: 0.5rem 0.75rem; font-size: 0.9rem; color: var(--ink); white-space: nowrap;
    transition: color 0.15s;
  }
  .masthead .nav a:hover { color: var(--red); }
  .masthead .nav .btn-inv {
    background: var(--red); color: #fff; border-radius: var(--radius);
    padding: 0.45rem 1rem; margin-left: 0.5rem; font-weight: 700; font-size: 0.85rem;
  }
  .masthead .nav .btn-inv:hover { background: var(--red-hover); }

  /* ── Hero ─────────────────────────────────────────────────── */
  .hero {
    background: var(--navy); color: #fff; text-align: center;
    padding: 3.5rem 1.5rem 3rem; position: relative; overflow: hidden;
  }
  .hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,42,94,0.95), rgba(10,42,94,0.8));
  }
  .hero > * { position: relative; z-index: 1; }
  .hero h1 {
    font-size: 2.4rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 0.6rem;
    line-height: 1.2;
  }
  .hero .subtitle { font-size: 1.2rem; font-weight: 400; opacity: 0.9; margin-bottom: 1rem; }
  .hero p { max-width: 640px; margin: 0.4rem auto; font-size: 1rem; opacity: 0.85; }
  .hero .tagline { font-weight: 700; opacity: 1; font-size: 1.05rem; margin-top: 0.8rem; }

  /* ── Content wrap ────────────────────────────────────────── */
  .content { max-width: 960px; margin: 0 auto; padding: 2.5rem 1.5rem 3rem; }
  .content h2 {
    font-size: 1.6rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 0.5rem;
  }
  .content h3 { font-size: 1.05rem; font-weight: 700; }
  .content p { margin: 0.5rem 0; }
  .content hr { border: none; border-top: 1px solid var(--line); margin: 2.5rem 0; }
  .content ul { padding-left: 1.4rem; }
  .content ul li { line-height: 2; color: var(--ink-soft); }
  .section-title { text-align: center; margin-bottom: 1.5rem; }

  /* ── Form ─────────────────────────────────────────────────── */
  .form-wrap {
    max-width: 820px; margin: 0 auto 2rem; padding: 2rem 2.5rem;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }
  .form-heading {
    font-size: 1.15rem; font-weight: 700; color: var(--ink);
    margin: 1.5rem 0 0.8rem; padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--red);
  }
  .form-heading:first-child { margin-top: 0; }
  .form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .form-group { display: flex; flex-direction: column; }
  .form-group.full { grid-column: 1 / -1; }
  .form-group.span2 { grid-column: span 2; }
  .form-group label { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--ink); }
  .form-group .req { color: var(--red); font-weight: 700; }
  .form-group input, .form-group select, .form-group textarea {
    padding: 0.55rem 0.75rem; border: 1px solid var(--line); border-radius: 6px;
    font-size: 0.9rem; font-family: inherit; background: #fff; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(188,6,0,0.08);
  }
  .form-group textarea { resize: vertical; min-height: 72px; }
  .form-submit { text-align: center; margin-top: 1.5rem; }
  .btn-red {
    display: inline-block; background: var(--red); color: #fff;
    padding: 0.75rem 2.2rem; border-radius: var(--radius); font-weight: 700;
    font-size: 1rem; border: none; cursor: pointer; transition: background 0.2s;
    text-decoration: none;
  }
  .btn-red:hover { background: var(--red-hover); }

  /* ── Steps ────────────────────────────────────────────────── */
  .steps { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 1.5rem 0; }
  .step {
    text-align: center; padding: 1.4rem 1rem;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    flex: 1 1 155px; max-width: 180px;
  }
  .step-num { font-size: 1.8rem; font-weight: 800; color: var(--red); margin-bottom: 0.4rem; }
  .step h3 { font-size: 0.95rem; margin: 0 0 0.35rem; }
  .step p { font-size: 0.82rem; color: var(--ink-soft); margin: 0; line-height: 1.4; }

  /* ── Benefit cards ───────────────────────────────────────── */
  .benefits { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .benefit {
    padding: 1.4rem; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); flex: 1 1 240px; max-width: 300px;
  }
  .benefit h3 { margin: 0 0 0.4rem; font-size: 1rem; }
  .benefit p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

  /* ── CTA box ─────────────────────────────────────────────── */
  .cta-box {
    text-align: center; max-width: 780px; margin: 0 auto;
    padding: 2.5rem 2rem; background: var(--card);
    border: 2px solid var(--red); border-radius: var(--radius);
  }
  .cta-box h2 { font-size: 1.2rem; color: var(--ink-soft); margin: 0 0 0.2rem; }
  .cta-box .big { font-size: 2rem; color: var(--red); margin: 0 0 0.8rem; font-weight: 800; }

  /* ── Dealer box ──────────────────────────────────────────── */
  .dealer-box {
    max-width: 780px; margin: 0 auto; padding: 2rem;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  }

  /* ── FAQ ──────────────────────────────────────────────────── */
  .faq { max-width: 780px; margin: 0 auto; }
  .faq h3 { margin: 1.3rem 0 0.25rem; }
  .faq p { color: var(--ink-soft); }

  /* ── Final CTA ───────────────────────────────────────────── */
  .final-cta { text-align: center; max-width: 680px; margin: 0 auto; padding: 2rem 0; }
  .final-cta .big { font-size: 1.8rem; color: var(--red); margin: 0 0 0.8rem; font-weight: 800; }

  /* ── Footer ──────────────────────────────────────────────── */
  .site-footer { background: #000; color: #fff; padding: 2.5rem 0 1.5rem; margin-top: 0; }
  .site-footer .wrap {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between;
  }
  .site-footer .footer-brand { flex: 0 0 240px; }
  .site-footer .footer-brand img { height: 45px; margin-bottom: 0.8rem; filter: brightness(0) invert(1); }
  .site-footer .footer-contact { font-size: 0.85rem; line-height: 1.8; color: #aab; }
  .site-footer .footer-contact a { color: #ccc; }
  .site-footer .footer-links { flex: 1; display: flex; gap: 2.5rem; justify-content: flex-end; }
  .site-footer .footer-links-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.6rem; color: #fff; }
  .site-footer .footer-links-col a { display: block; font-size: 0.82rem; color: #aab; padding: 0.15rem 0; }
  .site-footer .footer-links-col a:hover { color: #fff; }
  .site-footer .footer-bottom {
    max-width: 1200px; margin: 1.5rem auto 0; padding: 1rem 32px 0;
    border-top: 1px solid #333; font-size: 0.78rem; color: #667;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-social { display: flex; gap: 0.6rem; margin-top: 0.8rem; }
  .footer-social a { color: #aab; transition: color 0.15s; }
  .footer-social a:hover { color: #fff; }
  .footer-social svg { width: 20px; height: 20px; fill: currentColor; }

  /* ── Preview banner ──────────────────────────────────────── */
  .preview-banner {
    background: #fef3cd; color: #856404; text-align: center; padding: 8px 1rem;
    font-size: 0.82rem; border-bottom: 1px solid #ffc107;
  }

  /* ── Responsive ──────────────────────────────────────────── */
  @media (max-width: 768px) {
    .utilitybar .util-right { display: none; }
    .masthead .nav a { font-size: 0.8rem; padding: 0.4rem 0.5rem; }
    .masthead .wrap { padding: 0 16px; }
    .hero h1 { font-size: 1.7rem; }
    .hero { padding: 2.5rem 1rem 2rem; }
    .content { padding: 1.5rem 1rem 2rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.span2 { grid-column: span 1; }
    .form-wrap { padding: 1.5rem 1.2rem; }
    .site-footer .wrap { flex-direction: column; }
    .site-footer .footer-links { justify-content: flex-start; }
  }
  @media (max-width: 480px) {
    .masthead .nav { display: none; }
    .hero h1 { font-size: 1.5rem; }
  }
</style>

<!-- ── Hero ──────────────────────────────────────────────────── -->
<section class="hero">
  <h1 style="max-width: none!important;">Sell Your Commercial Vehicle to SRQ Auto</h1>
  <div class="subtitle">Get a Fast Offer for Your Commercial Vehicle</div>
  <p>Commercial trucks, vans, buses and specialty vehicles are different &mdash; and their upfits matter.</p>
  <p>Submit your VIN and upfit information and let SRQ Auto's commercial vehicle specialists evaluate what you have.</p>
  <p class="tagline">Quick Appraisal. Same-Day Payment. Transportation Available.</p>
  <p class="tagline">Any Commercial Vehicle. Any Upfit. Any Condition.</p>
</section>

<!-- ── Main Content ──────────────────────────────────────────── -->
<div class="content">

  <iframe src="https://savvy-forms-952362582307.us-central1.run.app/embed/srq-auto-sell-commercial-vehicle" style="width:100%;border:none;min-height:500px" id="savvy-form-srq-auto-sell-commercial-vehicle"></iframe>


  <hr>

  <!-- How It Works -->
  <h2 class="section-title" style="font-size:1.8rem;">Selling Your Commercial Vehicle Is Easy</h2>
  <div class="steps">
    <div class="step">
      <div class="step-num">1</div>
      <h3>Show Us the Vehicle</h3>
      <p>Submit your VIN, mileage, upfit information and a few photos.</p>
    </div>
    <div class="step">
      <div class="step-num">2</div>
      <h3>Get Your Appraisal</h3>
      <p>Our team evaluates the chassis AND the commercial upfit.</p>
    </div>
    <div class="step">
      <div class="step-num">3</div>
      <h3>Accept Your Offer</h3>
      <p>We'll coordinate the paperwork, title and applicable payoff.</p>
    </div>
    <div class="step">
      <div class="step-num">4</div>
      <h3>Get Paid</h3>
      <p>Same-day payment when the transaction can be completed that day.</p>
    </div>
    <div class="step">
      <div class="step-num">5</div>
      <h3>Transportation</h3>
      <p>If needed, SRQ Auto can help coordinate pickup.</p>
    </div>
  </div>

  <hr>

  <!-- Why SRQ -->
  <div style="max-width:780px;margin:0 auto;">
    <h2 class="section-title">Your Commercial Vehicle Is More Than a VIN.</h2>
    <p>A standard vehicle appraisal may tell you what the chassis is worth. But a Knapheide service body, enclosed KUV, liftgate, wheelchair conversion, landscape body, shelving package, dump body, compressor or other commercial equipment can change the value of the complete vehicle.</p>
    <p><strong>SRQ Auto specializes in commercial vehicles.</strong></p>
    <p>We understand the chassis, the upfit and the businesses that use them. That's why we want to see the entire vehicle &mdash; not just the VIN.</p>
    <p><strong>You don't have to figure out what your commercial vehicle is worth. That's what we do.</strong></p>
  </div>

  <hr>

  <!-- Benefits -->
  <h2 class="section-title">A Better Way to Sell a Commercial Vehicle</h2>
  <div class="benefits">
    <div class="benefit">
      <h3>Quick Appraisal</h3>
      <p>Send us the VIN, mileage, photos and upfit information. Our team evaluates the complete vehicle &mdash; not just the chassis.</p>
    </div>
    <div class="benefit">
      <h3>Same-Day Payment</h3>
      <p>Accept our offer and we'll work to complete payment the same day.</p>
    </div>
    <div class="benefit">
      <h3>Transportation Available</h3>
      <p>Your vehicle doesn't necessarily need to be brought to SRQ Auto. We can help coordinate transportation when needed.</p>
    </div>
    <div class="benefit">
      <h3>Payoff? No Problem.</h3>
      <p>If there's an existing loan, provide the basic payoff information and we'll help coordinate the transaction.</p>
    </div>
    <div class="benefit">
      <h3>No Auction Required</h3>
      <p>No waiting for sale day. No wondering whether a specialized commercial vehicle will attract the right buyer.</p>
    </div>
  </div>

  <hr>

  <!-- SEND IT ANYWAY -->
  <div class="cta-box">
    <h2>Too Ugly? Too Weird? Too Specialized?</h2>
    <div class="big">SEND IT ANYWAY.</div>
    <p style="color:var(--ink-soft);line-height:1.8;">
      High mileage? Dents and scratches? Old company graphics? Strange utility body?<br>
      Wheelchair lift? Specialty equipment? Unusual commercial upfit?
    </p>
    <p><strong>We want to see it.</strong></p>
    <p style="color:var(--ink-soft);">No commercial vehicle is too unusual for SRQ Auto to consider.</p>
    <p><strong>Any Commercial Vehicle. Any Upfit. Any Condition.</strong></p>
    <p style="margin-top:1.2rem;"><a class="btn-red" href="#" onclick="window.scrollTo({top:0,behavior:'smooth'});return false;">Show Us What You've Got</a></p>
  </div>

  <hr>

  <!-- Vehicles We Buy -->
  <div style="max-width:780px;margin:0 auto;">
    <h2 class="section-title">Looking to Sell a Box Truck, Utility Truck, Work Van or Other Commercial Vehicle?</h2>
    <p>Whether you're selling one work truck or replacing an entire fleet, SRQ Auto buys commercial vehicles directly. We consider:</p>
    <ul>
      <li>Utility &amp; Service Trucks</li>
      <li>Enclosed Utility / KUV Trucks</li>
      <li>Box Trucks</li>
      <li>Cargo Vans</li>
      <li>Shuttle Buses</li>
      <li>Wheelchair Accessible Vehicles</li>
      <li>Passenger Vans</li>
      <li>Flatbeds</li>
      <li>Dump Trucks</li>
      <li>Landscape Trucks</li>
      <li>Isuzu NPR / LCF Trucks</li>
      <li>Heavy-Duty Pickups</li>
      <li>Specialty Commercial Upfits</li>
    </ul>
  </div>

  <hr>

  <!-- Dealer Section -->
  <div class="dealer-box">
    <h2 style="text-align:center;margin:0 0 0.3rem;">Dealers: Got a Commercial Trade You Don't Want?</h2>
    <h3 style="text-align:center;font-weight:400;color:var(--ink-soft);margin:0 0 1.2rem;font-size:1.05rem;">Before You Send It to Auction, Send It to SRQ Auto.</h3>
    <p>Your store doesn't need to understand the upfit, find the right commercial auction or wait to see what happens on sale day.</p>
    <p>Send us: <strong>VIN + Photos + Mileage + Upfit</strong></p>
    <p>We'll take it from there.</p>
    <ul>
      <li>Quick commercial appraisal</li>
      <li>Same-day payment</li>
      <li>Fast pickup</li>
      <li>Transportation available</li>
      <li>No auction seller fees</li>
      <li>No waiting for auction day</li>
      <li>No transportation expense to the auction</li>
      <li>No post-sale arbitration headaches</li>
      <li>Turn an unwanted trade into cash quickly</li>
    </ul>
    <h3 style="margin-top:1.5rem;">And don't cherry-pick what you send us.</h3>
    <p style="color:var(--ink-soft);">Utility trucks, box trucks, buses, wheelchair vehicles, cargo vans, strange upfits, high-mileage units and commercial vehicles you're simply not sure what to do with:</p>
    <p style="font-size:1.3rem;text-align:center;"><strong>SEND US EVERYTHING.</strong></p>
    <p style="text-align:center;margin-top:1rem;"><a class="btn-red" href="#" onclick="window.scrollTo({top:0,behavior:'smooth'});return false;">Appraise a Commercial Trade</a></p>
  </div>

  <hr>

  <!-- FAQ -->
  <div class="faq">
    <h2 class="section-title">Frequently Asked Questions</h2>

    <h3>What types of commercial vehicles does SRQ Auto buy?</h3>
    <p>SRQ Auto considers utility trucks, service trucks, box trucks, cargo vans, shuttle buses, wheelchair-accessible vehicles, passenger vans, flatbeds, dump trucks, landscape trucks, heavy-duty pickups, Isuzu NPR/LCF trucks and specialty commercial vehicles.</p>

    <h3>Does my commercial vehicle need to be in excellent condition?</h3>
    <p>No. We want to see commercial vehicles in a wide range of conditions. High mileage, cosmetic damage, old graphics or an unusual upfit do not automatically disqualify a vehicle.</p>

    <h3>Does SRQ Auto consider the value of my commercial upfit?</h3>
    <p>Yes. Unlike a generic passenger-car appraisal, SRQ Auto specializes in commercial vehicles and evaluates the body, upfit and installed commercial equipment as part of the vehicle.</p>

    <h3>Can I sell a commercial vehicle that I still owe money on?</h3>
    <p>Yes. Provide basic lienholder and approximate payoff information with your submission and our team can help coordinate the payoff process.</p>

    <h3>Do I have to bring my vehicle to Bradenton?</h3>
    <p>Not necessarily. SRQ Auto can help arrange transportation when needed.</p>

    <h3>Do you buy commercial vehicles from dealers?</h3>
    <p>Yes. We encourage automobile dealers to submit commercial trades before sending them to auction.</p>

    <h3>Can businesses and fleets submit multiple vehicles?</h3>
    <p>Yes. Businesses and fleet operators can submit multiple commercial vehicles for consideration.</p>
  </div>

  <hr>

  <!-- Final CTA -->
  <div class="final-cta">
    <h2 style="margin:0 0 0.3rem;">Have a Commercial Vehicle to Sell?</h2>
    <div class="big">Show Us What You've Got.</div>
    <p><strong>Quick Appraisal. Same-Day Payment. Transportation Available.</strong></p>
    <p><strong>Any Commercial Vehicle. Any Upfit. Any Condition.</strong></p>
    <p style="margin-top:1.2rem;"><a class="btn-red" href="#" onclick="window.scrollTo({top:0,behavior:'smooth'});return false;">Get My Offer</a></p>
  </div>

</div>
:::
