1016 lines
36 KiB
HTML
1016 lines
36 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Powder Coating Logix — Shop Software Built by a Powder Coater</title>
|
||
<meta name="description" content="Powder coating shop software for quoting, job tracking, inventory, invoicing, payments, and understanding which jobs actually make money.">
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||
<style>
|
||
*, *::before, *::after {
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
html {
|
||
scroll-behavior: smooth;
|
||
}
|
||
|
||
body, h1, h2, h3, p, ul {
|
||
margin: 0;
|
||
}
|
||
|
||
body {
|
||
--black: #0b0c0d;
|
||
--dark: #121416;
|
||
--panel: #181b1e;
|
||
--panel-soft: #1d2023;
|
||
--border: #303438;
|
||
--orange: #f45b00;
|
||
--orange-dark: #c94a00;
|
||
--white: #f4f2ed;
|
||
--text: #cbc8c1;
|
||
--muted: #85898e;
|
||
background: var(--black);
|
||
color: var(--text);
|
||
font-family: "Barlow", sans-serif;
|
||
font-size: 17px;
|
||
font-weight: 400;
|
||
line-height: 1.65;
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
img, video {
|
||
max-width: 100%;
|
||
}
|
||
|
||
a {
|
||
color: inherit;
|
||
}
|
||
|
||
button, a {
|
||
-webkit-tap-highlight-color: transparent;
|
||
}
|
||
|
||
.container {
|
||
width: min(1180px, calc(100% - 48px));
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.eyebrow {
|
||
color: var(--orange);
|
||
font-size: .8rem;
|
||
font-weight: 700;
|
||
letter-spacing: .12em;
|
||
text-transform: uppercase;
|
||
margin-bottom: .8rem;
|
||
}
|
||
|
||
h1, h2 {
|
||
font-family: "Bebas Neue", sans-serif;
|
||
color: var(--white);
|
||
font-weight: 400;
|
||
letter-spacing: .015em;
|
||
line-height: .95;
|
||
}
|
||
|
||
h1 {
|
||
font-size: clamp(3.7rem, 6.4vw, 6.8rem);
|
||
max-width: 760px;
|
||
}
|
||
|
||
h2 {
|
||
font-size: clamp(3rem, 6vw, 5.4rem);
|
||
}
|
||
|
||
h3 {
|
||
color: var(--white);
|
||
font-size: 1.15rem;
|
||
line-height: 1.25;
|
||
}
|
||
|
||
.lead {
|
||
font-size: 1.15rem;
|
||
line-height: 1.75;
|
||
max-width: 700px;
|
||
}
|
||
|
||
.muted {
|
||
color: var(--muted);
|
||
}
|
||
|
||
.button {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
min-height: 50px;
|
||
padding: .8rem 1.35rem;
|
||
border: 1px solid transparent;
|
||
border-radius: 4px;
|
||
font-weight: 700;
|
||
text-decoration: none;
|
||
transition: background .2s, border-color .2s, color .2s, transform .2s;
|
||
}
|
||
|
||
.button:hover {
|
||
transform: translateY(-1px);
|
||
}
|
||
|
||
.button-primary {
|
||
background: var(--orange);
|
||
color: white;
|
||
}
|
||
|
||
.button-primary:hover {
|
||
background: var(--orange-dark);
|
||
}
|
||
|
||
.button-secondary {
|
||
border-color: var(--border);
|
||
color: var(--white);
|
||
}
|
||
|
||
.button-secondary:hover {
|
||
border-color: var(--orange);
|
||
color: var(--orange);
|
||
}
|
||
|
||
nav {
|
||
position: sticky;
|
||
top: 0;
|
||
z-index: 20;
|
||
background: rgba(11, 12, 13, .94);
|
||
border-bottom: 1px solid var(--border);
|
||
}
|
||
|
||
.nav-inner {
|
||
min-height: 76px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
gap: 2rem;
|
||
}
|
||
|
||
.logo img {
|
||
height: 72px;
|
||
width: auto;
|
||
display: block;
|
||
}
|
||
|
||
.nav-links {
|
||
display: flex;
|
||
gap: 1.6rem;
|
||
list-style: none;
|
||
font-size: .92rem;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.nav-links a {
|
||
color: var(--muted);
|
||
text-decoration: none;
|
||
}
|
||
|
||
.nav-links a:hover {
|
||
color: var(--white);
|
||
}
|
||
|
||
.nav-actions {
|
||
display: flex;
|
||
gap: .7rem;
|
||
}
|
||
|
||
.nav-actions .button {
|
||
min-height: 42px;
|
||
padding: .55rem 1rem;
|
||
font-size: .9rem;
|
||
}
|
||
|
||
section {
|
||
padding: 7rem 0;
|
||
border-top: 1px solid rgba(48,52,56,.7);
|
||
}
|
||
|
||
.hero {
|
||
border-top: 0;
|
||
padding: 4.25rem 0 4.5rem;
|
||
background: radial-gradient(circle at 76% 44%, rgba(244,91,0,.10), transparent 34%), var(--black);
|
||
}
|
||
|
||
.hero-inner {
|
||
display: grid;
|
||
grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
|
||
gap: 3rem;
|
||
align-items: center;
|
||
}
|
||
|
||
.hero-copy {
|
||
position: relative;
|
||
z-index: 2;
|
||
}
|
||
|
||
.hero-copy .lead {
|
||
margin-top: 1.5rem;
|
||
max-width: 670px;
|
||
}
|
||
|
||
.hero-actions {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: .8rem;
|
||
margin-top: 2rem;
|
||
}
|
||
|
||
.trial-note {
|
||
margin-top: .8rem;
|
||
font-size: .9rem;
|
||
color: var(--muted);
|
||
}
|
||
|
||
.built-by {
|
||
margin-top: 2.25rem;
|
||
padding-left: 1rem;
|
||
border-left: 3px solid var(--orange);
|
||
max-width: 650px;
|
||
}
|
||
|
||
.built-by strong {
|
||
color: var(--white);
|
||
}
|
||
|
||
.hero-video {
|
||
background: var(--panel);
|
||
border: 1px solid var(--border);
|
||
border-radius: 5px;
|
||
overflow: hidden;
|
||
box-shadow: 18px 18px 0 rgba(244,91,0,.12);
|
||
}
|
||
|
||
.hero-video video {
|
||
display: block;
|
||
width: 100%;
|
||
aspect-ratio: 16 / 10;
|
||
object-fit: cover;
|
||
object-position: top center;
|
||
}
|
||
|
||
.shop-proof {
|
||
background: var(--dark);
|
||
}
|
||
|
||
.story-layout {
|
||
display: grid;
|
||
grid-template-columns: .9fr 1.1fr;
|
||
gap: 4.5rem;
|
||
align-items: center;
|
||
}
|
||
|
||
.shop-photo {
|
||
min-height: 560px;
|
||
background: url("images/brembo-shop.jpg") center center / cover no-repeat;
|
||
border: 1px solid var(--border);
|
||
border-radius: 5px;
|
||
}
|
||
|
||
.story-copy p + p {
|
||
margin-top: 1rem;
|
||
}
|
||
|
||
.story-copy h2 {
|
||
margin-bottom: 1.4rem;
|
||
}
|
||
|
||
.story-signoff {
|
||
margin-top: 1.7rem;
|
||
color: var(--white);
|
||
font-weight: 700;
|
||
}
|
||
|
||
.workflow-head,
|
||
.features-head,
|
||
.pricing-head {
|
||
display: grid;
|
||
grid-template-columns: 1fr 1fr;
|
||
gap: 4rem;
|
||
align-items: end;
|
||
margin-bottom: 3.5rem;
|
||
}
|
||
|
||
.workflow-list {
|
||
border-top: 1px solid var(--border);
|
||
}
|
||
|
||
.workflow-step {
|
||
display: grid;
|
||
grid-template-columns: 64px 1fr 1.2fr;
|
||
gap: 1.4rem;
|
||
padding: 1.7rem 0;
|
||
border-bottom: 1px solid var(--border);
|
||
align-items: start;
|
||
}
|
||
|
||
.workflow-number {
|
||
font-family: "Bebas Neue", sans-serif;
|
||
font-size: 2.3rem;
|
||
color: var(--orange);
|
||
line-height: 1;
|
||
}
|
||
|
||
.workflow-step p {
|
||
color: var(--muted);
|
||
}
|
||
|
||
.workflow-shot {
|
||
height: 430px;
|
||
margin-top: 3rem;
|
||
border: 1px solid var(--border);
|
||
border-radius: 5px;
|
||
overflow: hidden;
|
||
background: var(--panel);
|
||
}
|
||
|
||
.workflow-shot img {
|
||
display: block;
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
object-position: top center;
|
||
}
|
||
|
||
.feature {
|
||
display: grid;
|
||
grid-template-columns: 1fr 1.08fr;
|
||
gap: 4rem;
|
||
align-items: center;
|
||
padding: 3.8rem 0;
|
||
border-top: 1px solid var(--border);
|
||
}
|
||
|
||
.feature:nth-of-type(even) .feature-copy {
|
||
order: 2;
|
||
}
|
||
|
||
.feature:nth-of-type(even) .feature-visual {
|
||
order: 1;
|
||
}
|
||
|
||
.feature-copy h3 {
|
||
font-family: "Bebas Neue", sans-serif;
|
||
font-size: clamp(2.3rem, 4vw, 3.8rem);
|
||
font-weight: 400;
|
||
margin-bottom: 1rem;
|
||
}
|
||
|
||
.feature-copy p {
|
||
max-width: 540px;
|
||
}
|
||
|
||
.feature-points {
|
||
margin-top: 1.2rem;
|
||
padding-left: 1.1rem;
|
||
}
|
||
|
||
.feature-points li {
|
||
margin: .4rem 0;
|
||
}
|
||
|
||
.feature-visual {
|
||
background: var(--panel);
|
||
border: 1px solid var(--border);
|
||
border-radius: 5px;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.feature-visual img {
|
||
display: block;
|
||
width: 100%;
|
||
}
|
||
|
||
.small-tools {
|
||
margin-top: 2.8rem;
|
||
padding: 2rem;
|
||
background: var(--dark);
|
||
border: 1px solid var(--border);
|
||
border-radius: 5px;
|
||
}
|
||
|
||
.small-tools h3 {
|
||
margin-bottom: .6rem;
|
||
}
|
||
|
||
.tool-list {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: .6rem;
|
||
list-style: none;
|
||
margin-top: 1.2rem;
|
||
}
|
||
|
||
.tool-list li {
|
||
padding: .5rem .75rem;
|
||
border: 1px solid var(--border);
|
||
border-radius: 4px;
|
||
color: var(--text);
|
||
font-size: .92rem;
|
||
}
|
||
|
||
.quote {
|
||
position: relative;
|
||
padding: 5rem 0;
|
||
color: white;
|
||
background: linear-gradient( 90deg, rgba(11, 12, 13, .96), rgba(11, 12, 13, .76) ), url("images/shop-wide.jpg") center 45% / cover no-repeat;
|
||
border-top: 1px solid var(--border);
|
||
border-bottom: 1px solid var(--border);
|
||
}
|
||
|
||
.quote blockquote {
|
||
font-family: "Bebas Neue", sans-serif;
|
||
font-size: clamp(2.4rem, 5vw, 4.6rem);
|
||
line-height: 1;
|
||
max-width: 900px;
|
||
text-shadow: 0 3px 18px rgba(0, 0, 0, .9);
|
||
}
|
||
|
||
.quote p {
|
||
margin-top: 1rem;
|
||
font-weight: 700;
|
||
color: var(--text);
|
||
}
|
||
|
||
.pricing {
|
||
background: var(--dark);
|
||
}
|
||
|
||
.pricing-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(4, 1fr);
|
||
border-top: 1px solid var(--border);
|
||
border-left: 1px solid var(--border);
|
||
}
|
||
|
||
.plan {
|
||
padding: 2rem;
|
||
background: var(--panel);
|
||
border-right: 1px solid var(--border);
|
||
border-bottom: 1px solid var(--border);
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
|
||
.plan.featured {
|
||
background: var(--panel-soft);
|
||
box-shadow: inset 0 4px 0 var(--orange);
|
||
}
|
||
|
||
.plan-name {
|
||
color: var(--orange);
|
||
font-weight: 700;
|
||
}
|
||
|
||
.price {
|
||
font-family: "Bebas Neue", sans-serif;
|
||
color: var(--white);
|
||
font-size: 3.6rem;
|
||
line-height: 1;
|
||
margin: .8rem 0 0;
|
||
}
|
||
|
||
.period {
|
||
color: var(--muted);
|
||
font-size: .88rem;
|
||
margin-bottom: 1.4rem;
|
||
}
|
||
|
||
.plan ul {
|
||
list-style: none;
|
||
margin-bottom: 1.8rem;
|
||
flex: 1;
|
||
}
|
||
|
||
.plan li {
|
||
padding: .45rem 0;
|
||
border-bottom: 1px solid rgba(48,52,56,.65);
|
||
font-size: .92rem;
|
||
}
|
||
|
||
.plan .button {
|
||
width: 100%;
|
||
}
|
||
|
||
.plan-note {
|
||
margin-top: 1rem;
|
||
font-size: .9rem;
|
||
color: var(--muted);
|
||
max-width: 760px;
|
||
}
|
||
|
||
.faq-layout {
|
||
display: grid;
|
||
grid-template-columns: .75fr 1.25fr;
|
||
gap: 4rem;
|
||
}
|
||
|
||
.faq-list {
|
||
border-top: 1px solid var(--border);
|
||
}
|
||
|
||
details {
|
||
border-bottom: 1px solid var(--border);
|
||
}
|
||
|
||
summary {
|
||
cursor: pointer;
|
||
color: var(--white);
|
||
font-weight: 700;
|
||
padding: 1.25rem 0;
|
||
list-style: none;
|
||
}
|
||
|
||
summary::-webkit-details-marker {
|
||
display: none;
|
||
}
|
||
|
||
summary::after {
|
||
content: "+";
|
||
float: right;
|
||
color: var(--orange);
|
||
}
|
||
|
||
details[open] summary::after {
|
||
content: "–";
|
||
}
|
||
|
||
details p {
|
||
color: var(--muted);
|
||
padding: 0 0 1.4rem;
|
||
max-width: 760px;
|
||
}
|
||
|
||
.final-cta {
|
||
text-align: center;
|
||
background: var(--dark);
|
||
}
|
||
|
||
.final-cta h2 {
|
||
max-width: 850px;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.final-cta .lead {
|
||
margin: 1.2rem auto 0;
|
||
}
|
||
|
||
.final-cta .hero-actions {
|
||
justify-content: center;
|
||
}
|
||
|
||
footer {
|
||
border-top: 1px solid var(--border);
|
||
padding: 2.5rem 0;
|
||
}
|
||
|
||
.footer-inner {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
gap: 2rem;
|
||
color: var(--muted);
|
||
font-size: .9rem;
|
||
}
|
||
|
||
.footer-links {
|
||
display: flex;
|
||
gap: 1.2rem;
|
||
list-style: none;
|
||
}
|
||
|
||
.footer-links a {
|
||
text-decoration: none;
|
||
}
|
||
|
||
.footer-links a:hover {
|
||
color: var(--white);
|
||
}
|
||
|
||
@media (max-width: 1000px) {
|
||
.hero-inner,
|
||
.story-layout,
|
||
.workflow-head,
|
||
.features-head,
|
||
.pricing-head,
|
||
.feature,
|
||
.faq-layout {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
|
||
.hero-video {
|
||
max-width: 720px;
|
||
}
|
||
|
||
.feature:nth-of-type(even) .feature-copy,
|
||
.feature:nth-of-type(even) .feature-visual {
|
||
order: initial;
|
||
}
|
||
|
||
.pricing-grid {
|
||
grid-template-columns: 1fr 1fr;
|
||
}
|
||
|
||
.shop-photo {
|
||
min-height: 420px;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 720px) {
|
||
body {
|
||
font-size: 16px;
|
||
}
|
||
|
||
.container {
|
||
width: min(100% - 30px, 1180px);
|
||
}
|
||
|
||
section {
|
||
padding: 5rem 0;
|
||
}
|
||
|
||
.nav-links {
|
||
display: none;
|
||
}
|
||
|
||
.logo img {
|
||
height: 60px;
|
||
}
|
||
|
||
.nav-actions .button-secondary {
|
||
display: none;
|
||
}
|
||
|
||
.hero {
|
||
padding: 3.5rem 0 4rem;
|
||
background: var(--black);
|
||
}
|
||
|
||
h1 {
|
||
font-size: clamp(3.25rem, 15vw, 5.4rem);
|
||
}
|
||
|
||
.hero-inner {
|
||
grid-template-columns: 1fr;
|
||
gap: 2.25rem;
|
||
}
|
||
|
||
.hero-video {
|
||
width: 100%;
|
||
box-shadow: 10px 10px 0 rgba(244,91,0,.12);
|
||
}
|
||
|
||
.workflow-step {
|
||
grid-template-columns: 48px 1fr;
|
||
}
|
||
|
||
.workflow-step p {
|
||
grid-column: 2;
|
||
}
|
||
|
||
.workflow-shot {
|
||
height: auto;
|
||
max-height: none;
|
||
}
|
||
|
||
.workflow-shot img {
|
||
height: auto;
|
||
object-fit: contain;
|
||
}
|
||
|
||
.pricing-grid {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
|
||
.footer-inner {
|
||
flex-direction: column;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
<nav>
|
||
<div class="container nav-inner">
|
||
<a class="logo" href="#home"><img src="images/PCL_Logo.png" alt="Powder Coating Logix"></a>
|
||
<ul class="nav-links">
|
||
<li><a href="#story">Why PCL</a></li>
|
||
<li><a href="#workflow">How It Works</a></li>
|
||
<li><a href="#features">What It Does</a></li>
|
||
<li><a href="#pricing">Pricing</a></li>
|
||
</ul>
|
||
<div class="nav-actions">
|
||
<a class="button button-secondary" href="https://app.powdercoatinglogix.com" target="_blank" rel="noopener">Log In</a>
|
||
<a class="button button-primary" href="https://app.powdercoatinglogix.com/Registration" target="_blank" rel="noopener">Start Free Trial</a>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
|
||
<main>
|
||
<section class="hero" id="home">
|
||
<div class="container hero-inner">
|
||
<div class="hero-copy">
|
||
<div class="eyebrow">Powder coating shop software</div>
|
||
<h1>Know what’s in your shop, what it needs, and whether it made money.</h1>
|
||
<p class="lead">Powder Coating Logix keeps quotes, jobs, parts, photos, powder, invoices, and payments tied together—from the first customer call through pickup.</p>
|
||
<div class="hero-actions">
|
||
<a class="button button-primary" href="https://app.powdercoatinglogix.com/Registration" target="_blank" rel="noopener">Start Your 14-Day Trial</a>
|
||
<a class="button button-secondary" href="#workflow">See the Workflow</a>
|
||
</div>
|
||
<p class="trial-note">No credit card required.</p>
|
||
<div class="built-by">
|
||
<strong>Built by a software developer who also owns a powder coating shop.</strong><br>
|
||
Not adapted from a generic CRM, job tracker, or manufacturing package.
|
||
</div>
|
||
</div>
|
||
<div class="hero-video">
|
||
<video autoplay muted loop playsinline>
|
||
<source src="video/IntroVideo.mp4" type="video/mp4">
|
||
</video>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="shop-proof" id="story">
|
||
<div class="container story-layout">
|
||
<div class="shop-photo" role="img" aria-label="Freshly powder-coated Brembo brake caliper hanging inside SCP Powder Coating"></div>
|
||
<div class="story-copy">
|
||
<div class="eyebrow">Why I built it</div>
|
||
<h2>I got tired of patching the shop together.</h2>
|
||
<p>I’m Scott, the owner of SCP Powder Coating in Clayton, North Carolina. Before opening the shop, I spent more than 20 years building software.</p>
|
||
<p>Like a lot of coaters, we were bouncing between QuickBooks, spreadsheets, handwritten notes, text messages, and a whiteboard just to answer basic questions: What is waiting to be blasted? Did we order the powder? Is the customer paid? Did this job actually make money?</p>
|
||
<p>Powder Coating Logix started as the system I wanted in my own shop. Every major feature has to survive real customers, real parts, real employees, and real production chaos before I trust it.</p>
|
||
<p class="story-signoff">It is software for coaters because it is built and tested inside a coating shop.</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="workflow">
|
||
<div class="container">
|
||
<div class="workflow-head">
|
||
<div>
|
||
<div class="eyebrow">The basic workflow</div>
|
||
<h2>One job record from quote to final payment.</h2>
|
||
</div>
|
||
<p class="lead">Stop retyping the same customer, parts, notes, prices, and photos into different systems as work moves through the shop.</p>
|
||
</div>
|
||
|
||
<div class="workflow-list">
|
||
<div class="workflow-step">
|
||
<div class="workflow-number">01</div>
|
||
<h3>Quote the job</h3>
|
||
<p>Build a quick estimate or a detailed quote with labor, powder, overhead, margin, photos, and customer notes.</p>
|
||
</div>
|
||
<div class="workflow-step">
|
||
<div class="workflow-number">02</div>
|
||
<h3>Turn it into production work</h3>
|
||
<p>Convert the approved quote into a job without losing the parts, pricing, photos, or promises made to the customer.</p>
|
||
</div>
|
||
<div class="workflow-step">
|
||
<div class="workflow-number">03</div>
|
||
<h3>See where it is on the floor</h3>
|
||
<p>Know what is waiting, blasting, coating, curing, in QC, ready for pickup, or sitting around longer than it should.</p>
|
||
</div>
|
||
<div class="workflow-step">
|
||
<div class="workflow-number">04</div>
|
||
<h3>Invoice it and get paid</h3>
|
||
<p>Apply deposits, take partial payments, send invoices, and let customers pay online without breaking the job history apart.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="workflow-shot">
|
||
<img src="images/screenshots/DailyJobBoard.png" alt="Powder Coating Logix daily job board">
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="features">
|
||
<div class="container">
|
||
<div class="features-head">
|
||
<div>
|
||
<div class="eyebrow">What makes it useful</div>
|
||
<h2>Built around the places coating shops lose time and money.</h2>
|
||
</div>
|
||
<p class="lead">PCL is not trying to impress you with a hundred disconnected widgets. It is meant to make the work already happening in your shop easier to see, price, and control.</p>
|
||
</div>
|
||
|
||
<article class="feature">
|
||
<div class="feature-copy">
|
||
<div class="eyebrow">Shop visibility</div>
|
||
<h3>See the jobs that need attention before the customer calls.</h3>
|
||
<p>Open the board and see what is stalled, what is due, what is ready for pickup, and what the crew should work on next.</p>
|
||
<ul class="feature-points">
|
||
<li>Custom production stages</li>
|
||
<li>Daily and full-shop job boards</li>
|
||
<li>Shop-floor access without full admin accounts</li>
|
||
</ul>
|
||
</div>
|
||
<div class="feature-visual">
|
||
<img src="images/screenshots/ShopDisplay.png" alt="Powder Coating Logix shop display">
|
||
</div>
|
||
</article>
|
||
|
||
<article class="feature">
|
||
<div class="feature-copy">
|
||
<div class="eyebrow">Pricing and costing</div>
|
||
<h3>Find the jobs that looked profitable but ate up two extra hours in blasting.</h3>
|
||
<p>Compare what you expected against what actually happened. Track labor, powder, rework, overhead, cycle time, and margin without building another spreadsheet.</p>
|
||
<ul class="feature-points">
|
||
<li>Custom pricing formulas</li>
|
||
<li>Estimated versus actual labor</li>
|
||
<li>Job profitability and cycle-time reporting</li>
|
||
</ul>
|
||
</div>
|
||
<div class="feature-visual">
|
||
<img src="images/screenshots/Reporting.png" alt="Powder Coating Logix profitability reporting">
|
||
</div>
|
||
</article>
|
||
|
||
<article class="feature">
|
||
<div class="feature-copy">
|
||
<div class="eyebrow">Powder and materials</div>
|
||
<h3>Know whether you have the powder before the job reaches the booth.</h3>
|
||
<p>Track what is on hand, what jobs need, what has been ordered, and what is running low. Keep the material side connected to the work instead of relying on memory.</p>
|
||
<ul class="feature-points">
|
||
<li>Powder usage by job</li>
|
||
<li>Low-stock and reorder tracking</li>
|
||
<li>Needed, ordered, and received powder workflow</li>
|
||
</ul>
|
||
</div>
|
||
<div class="feature-visual">
|
||
<img src="images/screenshots/Inventory.png" alt="Powder inventory in Powder Coating Logix">
|
||
</div>
|
||
</article>
|
||
|
||
<div class="small-tools">
|
||
<h3>And the rest of the day-to-day shop work</h3>
|
||
<p class="muted">These are not separate add-ons. They are part of the same workflow.</p>
|
||
<ul class="tool-list">
|
||
<li>AI-assisted photo quoting</li>
|
||
<li>Oven scheduling</li>
|
||
<li>Customer portal</li>
|
||
<li>Online payments</li>
|
||
<li>Appointments</li>
|
||
<li>Photos and notes</li>
|
||
<li>Purchase orders</li>
|
||
<li>Accounting tools</li>
|
||
<li>Employee time tracking</li>
|
||
<li>Customer messaging</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="quote">
|
||
<div class="container">
|
||
<blockquote>“I don’t want another piece of software my shop has to work around. PCL has to work the way the shop works.”</blockquote>
|
||
<p>— Scott Pouliot, founder of Powder Coating Logix and owner of SCP Powder Coating</p>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="pricing" id="pricing">
|
||
<div class="container">
|
||
<div class="pricing-head">
|
||
<div>
|
||
<div class="eyebrow">Pricing</div>
|
||
<h2>Start small. Move up when the shop needs more.</h2>
|
||
</div>
|
||
<p class="lead">Every plan starts with a 14-day free trial. No credit card required.</p>
|
||
</div>
|
||
|
||
<div class="pricing-grid">
|
||
<div class="plan">
|
||
<div class="plan-name">Starter</div>
|
||
<div class="price">$19.99</div>
|
||
<div class="period">per month · $199/year · 1 user</div>
|
||
<ul>
|
||
<li>1 active job</li>
|
||
<li>100 customers</li>
|
||
<li>5 quotes per month</li>
|
||
<li>10 catalog items</li>
|
||
<li>2 photos per job and quote</li>
|
||
<li>5 AI photo quotes per month</li>
|
||
<li>AI inventory assistance</li>
|
||
</ul>
|
||
<a class="button button-secondary" href="https://app.powdercoatinglogix.com/Registration" target="_blank" rel="noopener">Start Trial</a>
|
||
</div>
|
||
|
||
<div class="plan">
|
||
<div class="plan-name">Basic</div>
|
||
<div class="price">$69</div>
|
||
<div class="period">per month · $690/year · 1 user</div>
|
||
<ul>
|
||
<li>Up to 5 active jobs</li>
|
||
<li>250 customers</li>
|
||
<li>10 quotes per month</li>
|
||
<li>50 catalog items</li>
|
||
<li>4 photos per job and quote</li>
|
||
<li>10 AI photo quotes per month</li>
|
||
<li>AI inventory assistance</li>
|
||
</ul>
|
||
<a class="button button-secondary" href="https://app.powdercoatinglogix.com/Registration" target="_blank" rel="noopener">Start Trial</a>
|
||
</div>
|
||
|
||
<div class="plan featured">
|
||
<div class="plan-name">Pro</div>
|
||
<div class="price">$149</div>
|
||
<div class="period">per month · $1,490/year · up to 5 users</div>
|
||
<ul>
|
||
<li>Up to 20 active jobs</li>
|
||
<li>2,500 customers</li>
|
||
<li>50 quotes per month</li>
|
||
<li>200 catalog items</li>
|
||
<li>6 photos per job and quote</li>
|
||
<li>50 AI photo quotes per month</li>
|
||
<li>Online payments and accounting</li>
|
||
<li>SMS notifications</li>
|
||
<li>Custom formulas and customer portal</li>
|
||
</ul>
|
||
<a class="button button-primary" href="https://app.powdercoatinglogix.com/Registration" target="_blank" rel="noopener">Start Trial</a>
|
||
</div>
|
||
|
||
<div class="plan">
|
||
<div class="plan-name">Enterprise</div>
|
||
<div class="price">$349</div>
|
||
<div class="period">per month · $3,490/year · unlimited users</div>
|
||
<ul>
|
||
<li>Unlimited active jobs</li>
|
||
<li>Unlimited customers and quotes</li>
|
||
<li>Unlimited catalog items</li>
|
||
<li>Unlimited photos</li>
|
||
<li>Unlimited AI photo quotes</li>
|
||
<li>Online payments and accounting</li>
|
||
<li>SMS notifications</li>
|
||
<li>Custom formulas and customer portal</li>
|
||
</ul>
|
||
<a class="button button-secondary" href="https://app.powdercoatinglogix.com/Registration" target="_blank" rel="noopener">Start Trial</a>
|
||
</div>
|
||
</div>
|
||
|
||
<p class="plan-note">All plans include AI photo quoting and AI inventory assistance. Pro and Enterprise add online payments, accounting, SMS notifications, custom formulas, and the customer portal.</p>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="faq">
|
||
<div class="container faq-layout">
|
||
<div>
|
||
<div class="eyebrow">Common questions</div>
|
||
<h2>Straight answers.</h2>
|
||
<p class="lead" style="margin-top:1rem;">You can also email us directly at <a href="mailto:info@powdercoatinglogix.com">info@powdercoatinglogix.com</a>.</p>
|
||
</div>
|
||
<div class="faq-list">
|
||
<details open>
|
||
<summary>Do I have to set everything up before I can try it?</summary>
|
||
<p>No. Guided setup gets the basics in place, and the dashboard walks you through creating your first quote, job, and invoice.</p>
|
||
</details>
|
||
<details>
|
||
<summary>Can employees update jobs from the shop floor?</summary>
|
||
<p>Yes. Shop access codes let employees update status from shared devices without giving them full administrative access.</p>
|
||
</details>
|
||
<details>
|
||
<summary>Does it replace QuickBooks?</summary>
|
||
<p>PCL can handle operational accounting features, invoicing, payments, receivables, payables, reconciliation, and reporting. Some shops may still choose to keep QuickBooks for their accountant or year-end workflow.</p>
|
||
</details>
|
||
<details>
|
||
<summary>Can customers approve quotes and pay online?</summary>
|
||
<p>Yes. The customer portal supports quote approval, invoices, payments, messaging, appointments, and account information where enabled by the shop.</p>
|
||
</details>
|
||
<details>
|
||
<summary>What happens after the trial?</summary>
|
||
<p>You choose the plan that fits your shop. There is no credit card required to start the trial, so nothing automatically bills you just for testing it.</p>
|
||
</details>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="final-cta">
|
||
<div class="container">
|
||
<div class="eyebrow">Try it with a real job</div>
|
||
<h2>Put one quote through the system and see whether it fits your shop.</h2>
|
||
<p class="lead">You do not need a sales call, a credit card, or a giant setup project to find out.</p>
|
||
<div class="hero-actions">
|
||
<a class="button button-primary" href="https://app.powdercoatinglogix.com/Registration" target="_blank" rel="noopener">Start the Free Trial</a>
|
||
<a class="button button-secondary" href="mailto:info@powdercoatinglogix.com">Ask Scott a Question</a>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</main>
|
||
|
||
<footer>
|
||
<div class="container footer-inner">
|
||
<div>© 2026 Powder Coating Logix · Built in Clayton, North Carolina</div>
|
||
<ul class="footer-links">
|
||
<li><a href="#workflow">Workflow</a></li>
|
||
<li><a href="#features">Features</a></li>
|
||
<li><a href="#pricing">Pricing</a></li>
|
||
<li><a href="mailto:info@powdercoatinglogix.com">Contact</a></li>
|
||
</ul>
|
||
</div>
|
||
</footer>
|
||
|
||
</body>
|
||
</html> |