184 lines
9.6 KiB
HTML
184 lines
9.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Janitorial QC — Quality control for janitorial contracts</title>
|
|
<meta name="description" content="Run inspections, track issues with SLA enforcement, and share live reports with your customers. Start free.">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
:root { --jqc-primary:#1a56db; --jqc-accent:#16a34a; }
|
|
body { font-family:-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; color:#1f2937; }
|
|
.navbar-brand { font-weight:700; letter-spacing:-.02em; }
|
|
.hero { background:linear-gradient(160deg,#eff4ff 0%,#f8fafc 60%,#f0fdf4 100%); padding:5rem 0 4.5rem; }
|
|
.hero h1 { font-size:2.6rem; font-weight:800; letter-spacing:-.03em; line-height:1.1; }
|
|
.hero .lead { color:#4b5563; font-size:1.15rem; max-width:34rem; }
|
|
.btn-jqc { background:var(--jqc-primary); border-color:var(--jqc-primary); color:#fff; }
|
|
.btn-jqc:hover { background:#1544b0; border-color:#1544b0; color:#fff; }
|
|
.feature-icon { width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;
|
|
background:#eff4ff;color:var(--jqc-primary);font-size:1.35rem;font-weight:700; }
|
|
.section { padding:4.5rem 0; }
|
|
.price-card { border:1px solid #e5e7eb;border-radius:14px;height:100%; transition:box-shadow .15s,transform .15s; }
|
|
.price-card:hover { box-shadow:0 10px 30px rgba(0,0,0,.07); transform:translateY(-2px); }
|
|
.price-card.popular { border-color:var(--jqc-primary); box-shadow:0 10px 30px rgba(26,86,219,.12); }
|
|
.price-amt { font-size:2rem;font-weight:800;letter-spacing:-.02em; }
|
|
.plan-feat { font-size:.9rem;color:#374151; }
|
|
.plan-feat .yes { color:var(--jqc-accent);font-weight:700; }
|
|
.plan-feat .no { color:#cbd5e1; }
|
|
footer { background:#0f172a;color:#94a3b8;padding:2.5rem 0; }
|
|
footer a { color:#cbd5e1;text-decoration:none; }
|
|
/* Phone polish — scale the oversized hero/section spacing on small screens */
|
|
@media (max-width:576px){
|
|
.hero { padding:3rem 0 2.5rem; }
|
|
.hero h1 { font-size:1.9rem; }
|
|
.hero .lead { font-size:1.05rem; }
|
|
.section { padding:3rem 0; }
|
|
.price-amt { font-size:1.75rem; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Nav -->
|
|
<nav class="navbar navbar-expand-md navbar-light bg-white border-bottom sticky-top">
|
|
<div class="container">
|
|
<a class="navbar-brand text-primary" href="#top">Janitorial<span style="color:var(--jqc-accent)">QC</span></a>
|
|
<div class="ms-auto d-flex align-items-center gap-2">
|
|
<a class="nav-link d-none d-sm-inline text-secondary" href="#features">Features</a>
|
|
<a class="nav-link d-none d-sm-inline text-secondary" href="#pricing">Pricing</a>
|
|
<a class="btn btn-jqc btn-sm px-3" href="{{ signup_url }}">Start free</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero -->
|
|
<header class="hero" id="top">
|
|
<div class="container">
|
|
<div class="row align-items-center g-5">
|
|
<div class="col-lg-7">
|
|
<span class="badge rounded-pill text-bg-success-subtle text-success mb-3">No credit card required</span>
|
|
<h1 class="mb-3">Quality control for janitorial contracts.</h1>
|
|
<p class="lead mb-4">
|
|
Run structured inspections, track issues with automatic SLA enforcement,
|
|
and give your customers a live window into every facility — all in one place.
|
|
</p>
|
|
<div class="d-flex flex-wrap gap-2">
|
|
<a class="btn btn-jqc btn-lg px-4" href="{{ signup_url }}">Register free</a>
|
|
<a class="btn btn-outline-secondary btn-lg px-4" href="#pricing">See plans</a>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-5">
|
|
<div class="bg-white rounded-4 shadow-sm p-4 border">
|
|
<div class="d-flex justify-content-between align-items-center mb-3">
|
|
<strong>Facility scorecard</strong>
|
|
<span class="badge text-bg-success">96%</span>
|
|
</div>
|
|
<div class="progress mb-2" role="progressbar" aria-label="score"><div class="progress-bar bg-success" style="width:96%"></div></div>
|
|
<small class="text-muted">Restrooms</small>
|
|
<div class="progress mb-2 mt-1"><div class="progress-bar bg-success" style="width:92%"></div></div>
|
|
<small class="text-muted">Lobby & entrances</small>
|
|
<div class="progress mb-2 mt-1"><div class="progress-bar" style="width:78%;background:#f59e0b"></div></div>
|
|
<small class="text-muted">Open issues</small>
|
|
<div class="d-flex gap-2 mt-2">
|
|
<span class="badge text-bg-danger">1 critical</span>
|
|
<span class="badge text-bg-warning">2 high</span>
|
|
<span class="badge text-bg-secondary">3 open</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Features -->
|
|
<section class="section" id="features">
|
|
<div class="container">
|
|
<div class="text-center mb-5">
|
|
<h2 class="fw-bold">Everything you need to prove clean.</h2>
|
|
<p class="text-muted">From the inspector's tablet to the customer's inbox.</p>
|
|
</div>
|
|
<div class="row g-4">
|
|
<div class="col-md-6 col-lg-3">
|
|
<div class="feature-icon mb-3">✓</div>
|
|
<h5 class="fw-semibold">Custom inspections</h5>
|
|
<p class="text-muted small mb-0">Build templates with a drag-and-drop form editor. Score areas, attach photos, and capture GPS at submit time.</p>
|
|
</div>
|
|
<div class="col-md-6 col-lg-3">
|
|
<div class="feature-icon mb-3">⏰</div>
|
|
<h5 class="fw-semibold">Issues with SLA</h5>
|
|
<p class="text-muted small mb-0">Flag problems by severity. The SLA engine escalates automatically and alerts the right people before deadlines slip.</p>
|
|
</div>
|
|
<div class="col-md-6 col-lg-3">
|
|
<div class="feature-icon mb-3">📊</div>
|
|
<h5 class="fw-semibold">Live reports</h5>
|
|
<p class="text-muted small mb-0">Score trends, aging, SLA compliance, and per-facility PDF summaries — on demand or on a schedule.</p>
|
|
</div>
|
|
<div class="col-md-6 col-lg-3">
|
|
<div class="feature-icon mb-3">📱</div>
|
|
<h5 class="fw-semibold">Offline iPad app</h5>
|
|
<p class="text-muted small mb-0">Inspectors work anywhere. Records sync automatically when a connection returns — no lost data in the field.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Pricing -->
|
|
<section class="section bg-light" id="pricing">
|
|
<div class="container">
|
|
<div class="text-center mb-5">
|
|
<h2 class="fw-bold">Simple plans that grow with you.</h2>
|
|
<p class="text-muted">Start on the Free plan — upgrade any time.</p>
|
|
</div>
|
|
<div class="row g-4 align-items-stretch">
|
|
{% for p in plans %}
|
|
<div class="col-md-6 col-lg-3">
|
|
<div class="price-card p-4 {% if p.code == 'pro' %}popular{% endif %}">
|
|
{% if p.code == 'pro' %}<span class="badge text-bg-primary mb-2">Most popular</span>{% endif %}
|
|
<h5 class="fw-bold mb-1">{{ p.name }}</h5>
|
|
<div class="price-amt mb-3">{{ p.price_label }}</div>
|
|
<ul class="list-unstyled plan-feat mb-4">
|
|
<li class="mb-2"><span class="yes">✓</span> {{ p.max_users or 'Unlimited' }} users</li>
|
|
<li class="mb-2"><span class="yes">✓</span> {{ p.max_facilities or 'Unlimited' }} facilities</li>
|
|
<li class="mb-2"><span class="yes">✓</span> {{ p.max_inspections_month or 'Unlimited' }} inspections/mo</li>
|
|
<li class="mb-2">{% if p.allow_mobile_api %}<span class="yes">✓</span>{% else %}<span class="no">✗</span>{% endif %} Mobile iPad app</li>
|
|
<li class="mb-2">{% if p.allow_scheduled_reports %}<span class="yes">✓</span>{% else %}<span class="no">✗</span>{% endif %} Scheduled reports</li>
|
|
<li class="mb-2">{% if p.allow_branding %}<span class="yes">✓</span>{% else %}<span class="no">✗</span>{% endif %} Custom branding</li>
|
|
<li class="mb-2">{% if p.allow_custom_domain %}<span class="yes">✓</span>{% else %}<span class="no">✗</span>{% endif %} Custom domain</li>
|
|
</ul>
|
|
<a href="{{ signup_url }}" class="btn w-100 {% if p.code == 'pro' %}btn-jqc{% else %}btn-outline-secondary{% endif %}">
|
|
{% if p.code == 'free' %}Get started{% else %}Choose {{ p.name }}{% endif %}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<p class="text-center text-muted small mt-4 mb-0">
|
|
Every workspace gets its own secure database and a <strong>your-name.{{ base_domain }}</strong> address.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA -->
|
|
<section class="section text-center">
|
|
<div class="container">
|
|
<h2 class="fw-bold mb-3">Ready to see cleaner results?</h2>
|
|
<p class="text-muted mb-4">Set up your workspace in under two minutes.</p>
|
|
<a class="btn btn-jqc btn-lg px-5" href="{{ signup_url }}">Register for free</a>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container d-flex flex-column flex-md-row justify-content-between align-items-center gap-2">
|
|
<span>© Janitorial QC</span>
|
|
<span class="d-flex gap-3">
|
|
<a href="#features">Features</a>
|
|
<a href="#pricing">Pricing</a>
|
|
<a href="{{ signup_url }}">Register</a>
|
|
</span>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|