<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Business OS</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:'Inter',sans-serif;
background:#f6f8fa;
color:#1f2937;
}
.container{
max-width:850px;
margin:auto;
padding:80px 25px;
}
.card{
background:#fff;
border-radius:18px;
padding:60px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}
.badge{
display:inline-block;
background:#034639;
color:white;
padding:8px 18px;
border-radius:999px;
font-size:.85rem;
margin-bottom:25px;
}
h1{
font-size:3rem;
line-height:1.1;
margin-bottom:20px;
}
p{
font-size:1.1rem;
color:#555;
line-height:1.8;
margin-bottom:25px;
}
.highlight{
color:#034639;
font-weight:600;
}
.section{
margin-top:50px;
}
.section h2{
margin-bottom:15px;
color:#111827;
}
.list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:18px;
margin-top:20px;
}
.item{
background:#f9fafb;
border:1px solid #ececec;
border-radius:12px;
padding:18px;
}
.item h3{
margin-bottom:8px;
font-size:1rem;
}
.item p{
font-size:.95rem;
margin:0;
}
.cta{
text-align:center;
margin-top:60px;
}
.button{
display:inline-block;
background:#034639;
color:white;
text-decoration:none;
padding:16px 36px;
border-radius:10px;
font-weight:600;
transition:.25s;
}
.button:hover{
background:#022f27;
}
.footer{
margin-top:50px;
text-align:center;
color:#888;
font-size:.9rem;
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<span class="badge">Welcome to Business OS</span>
<h1>Your business just got an upgrade.</h1>
<p>
We're excited to have you on board.
Over the next few days we'll build and install your
<span class="highlight">Business Operating System</span>—
a complete booking, communication, and customer management system
designed to help your business run more professionally.
</p>
<p>
Our goal is simple:
<strong>you focus on your craft while we handle the backend.</strong>
</p>
<div class="section">
<h2>Here's what we'll be setting up</h2>
<div class="list">
<div class="item">
<h3>🌐 Professional Website</h3>
<p>A modern one-page website designed to convert visitors into customers.</p>
</div>
<div class="item">
<h3>📅 Online Booking</h3>
<p>Customers can book appointments online without messaging back and forth.</p>
</div>
<div class="item">
<h3>💳 Payments & Deposits</h3>
<p>Optional online payments and deposits to reduce no-shows.</p>
</div>
<div class="item">
<h3>📲 Automated Messages</h3>
<p>Booking confirmations, reminders, follow-ups, and review requests.</p>
</div>
<div class="item">
<h3>👥 Customer Management</h3>
<p>Your customer information and appointments stay organized automatically.</p>
</div>
<div class="item">
<h3>⭐ Review Collection</h3>
<p>Automatically encourage satisfied customers to leave Google reviews.</p>
</div>
</div>
</div>
<div class="section">
<h2>What happens next?</h2>
<p>
Our onboarding process is straightforward:
</p>
<ol style="margin-left:25px;line-height:2;">
<li>Complete the onboarding questionnaire.</li>
<li>Upload your branding, photos, and business information.</li>
<li>We'll build and configure your Business OS.</li>
<li>You'll review everything before launch.</li>
<li>We publish your system and you're ready to accept bookings.</li>
</ol>
</div>
<div class="cta">
<a href="#" class="button">
Begin Onboarding
</a>
</div>
<div class="footer">
Questions?
<br><br>
Email us anytime and we'll be happy to help throughout the setup process.
</div>
</div>
</div>
</body>
</html>