<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SimplyDial — Unified Cloud Communications</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--navy: #0B1120;
--navy-2: #111827;
--navy-3: #1C2A40;
--navy-card: #162032;
--electric: #3B82F6;
--electric-light: #60A5FA;
--electric-glow: rgba(59, 130, 246, 0.15);
--teal: #14B8A6;
--teal-light: #2DD4BF;
--white: #FFFFFF;
--text-primary: #F1F5F9;
--text-secondary: #94A3B8;
--text-muted: #64748B;
--border: rgba(255,255,255,0.07);
--border-hover: rgba(59, 130, 246, 0.4);
--font: 'Sora', sans-serif;
--font-body: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body {
font-family: var(--font-body);
background: var(--navy);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
/* NAV */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
padding: 0 2rem;
height: 72px;
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(11, 17, 32, 0.85);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
}
.nav-logo img {
height: 36px;
width: auto;
display: block;
}
.nav-links {
display: flex;
align-items: center;
gap: 2.5rem;
list-style: none;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 0.875rem;
font-weight: 400;
letter-spacing: 0.01em;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
background: var(--electric);
color: #fff !important;
padding: 0.5rem 1.25rem;
border-radius: 8px;
font-weight: 500 !important;
transition: background 0.2s, opacity 0.2s !important;
}
.nav-cta:hover { background: var(--electric-light); opacity: 1 !important; color: #fff !important; }
/* HERO */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
padding: 120px 2rem 80px;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -200px; left: 50%;
transform: translateX(-50%);
width: 900px; height: 900px;
background: radial-gradient(ellipse, rgba(59,130,246,0.12) 0%, transparent 70%);
pointer-events: none;
}
.hero::after {
content: '';
position: absolute;
bottom: 0; right: -100px;
width: 600px; height: 600px;
background: radial-gradient(ellipse, rgba(20,184,166,0.08) 0%, transparent 70%);
pointer-events: none;
}
.hero-inner {
max-width: 1100px;
margin: 0 auto;
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 1;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: var(--electric-glow);
border: 1px solid rgba(59,130,246,0.3);
border-radius: 100px;
padding: 0.35rem 1rem;
font-size: 0.75rem;
font-weight: 500;
color: var(--electric-light);
letter-spacing: 0.04em;
text-transform: uppercase;
margin-bottom: 1.5rem;
}
.badge-dot {
width: 6px; height: 6px;
border-radius: 50%;
background: var(--electric);
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.hero h1 {
font-family: var(--font);
font-size: clamp(2.2rem, 4vw, 3.5rem);
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.02em;
margin-bottom: 1.25rem;
}
.hero h1 em {
font-style: normal;
background: linear-gradient(135deg, var(--electric-light), var(--teal-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-sub {
font-size: 1.1rem;
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 2.5rem;
max-width: 480px;
}
.hero-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.btn-primary {
background: var(--electric);
color: #fff;
padding: 0.875rem 2rem;
border-radius: 10px;
font-family: var(--font);
font-weight: 600;
font-size: 0.95rem;
text-decoration: none;
border: none;
cursor: pointer;
transition: background 0.2s, transform 0.15s;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.btn-primary:hover { background: #2563EB; transform: translateY(-1px); }
.btn-outline {
background: transparent;
color: var(--text-primary);
padding: 0.875rem 2rem;
border-radius: 10px;
font-family: var(--font);
font-weight: 500;
font-size: 0.95rem;
text-decoration: none;
border: 1px solid var(--border-hover);
cursor: pointer;
transition: border-color 0.2s, background 0.2s, transform 0.15s;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.btn-outline:hover { border-color: var(--electric-light); background: var(--electric-glow); transform: translateY(-1px); }
/* HERO VISUAL */
.hero-visual {
position: relative;
}
.dash-card {
background: var(--navy-card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 1.5rem;
position: relative;
overflow: hidden;
}
.dash-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), transparent);
}
.dash-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1.25rem;
}
.dash-title {
font-family: var(--font);
font-size: 0.8rem;
font-weight: 600;
color: var(--text-secondary);
letter-spacing: 0.05em;
text-transform: uppercase;
}
.status-pill {
background: rgba(20,184,166,0.15);
border: 1px solid rgba(20,184,166,0.3);
color: var(--teal-light);
font-size: 0.7rem;
font-weight: 600;
padding: 0.2rem 0.6rem;
border-radius: 100px;
letter-spacing: 0.03em;
}
.metric-row {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
margin-bottom: 1.25rem;
}
.metric {
background: var(--navy-3);
border-radius: 10px;
padding: 0.875rem 1rem;
border: 1px solid var(--border);
}
.metric-label {
font-size: 0.7rem;
color: var(--text-muted);
letter-spacing: 0.03em;
margin-bottom: 0.35rem;
}
.metric-value {
font-family: var(--font);
font-size: 1.4rem;
font-weight: 700;
color: var(--text-primary);
}
.metric-sub {
font-size: 0.7rem;
color: var(--teal);
margin-top: 0.15rem;
}
.activity-list {
display: flex;
flex-direction: column;
gap: 0.6rem;
}
.activity-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.6rem 0.875rem;
background: var(--navy-3);
border-radius: 8px;
font-size: 0.8rem;
}
.activity-icon {
width: 28px; height: 28px;
border-radius: 7px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
font-size: 0.75rem;
}
.activity-icon.call { background: rgba(59,130,246,0.15); color: var(--electric-light); }
.activity-icon.sms { background: rgba(20,184,166,0.15); color: var(--teal-light); }
.activity-icon.teams { background: rgba(139,92,246,0.15); color: #A78BFA; }
.activity-name { color: var(--text-primary); font-weight: 500; flex: 1; }
.activity-time { color: var(--text-muted); font-size: 0.72rem; }
.float-badge {
position: absolute;
background: var(--navy-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 0.75rem 1rem;
display: flex;
align-items: center;
gap: 0.6rem;
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
animation: float 4s ease-in-out infinite;
}
.float-badge.top-right {
top: -20px; right: -24px;
animation-delay: 0s;
}
.float-badge.bot-left {
bottom: -16px; left: -24px;
animation-delay: 2s;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
}
.float-icon {
width: 32px; height: 32px;
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
font-size: 0.9rem;
font-weight: 700;
}
.float-text { font-size: 0.78rem; line-height: 1.3; }
.float-label { color: var(--text-muted); font-size: 0.68rem; }
/* SECTION COMMON */
section {
padding: 100px 2rem;
}
.section-inner {
max-width: 1100px;
margin: 0 auto;
width: 100%;
}
.section-label {
display: inline-block;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--electric);
margin-bottom: 0.75rem;
}
.section-title {
font-family: var(--font);
font-size: clamp(1.8rem, 3vw, 2.5rem);
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2;
margin-bottom: 1rem;
}
.section-sub {
color: var(--text-secondary);
font-size: 1rem;
max-width: 560px;
line-height: 1.7;
}
.section-head {
margin-bottom: 3.5rem;
}
/* FEATURES */
.features-bg {
background: var(--navy-2);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.feature-card {
background: var(--navy-card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 2rem;
transition: border-color 0.25s, transform 0.2s;
position: relative;
overflow: hidden;
}
.feature-card::after {
content: '';
position: absolute;
inset: 0;
border-radius: 16px;
background: linear-gradient(135deg, var(--electric-glow), transparent);
opacity: 0;
transition: opacity 0.3s;
}
.feature-card:hover {
border-color: rgba(59,130,246,0.3);
transform: translateY(-2px);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
width: 44px; height: 44px;
border-radius: 12px;
display: flex; align-items: center; justify-content: center;
margin-bottom: 1.25rem;
font-size: 1.1rem;
position: relative;
z-index: 1;
}
.icon-blue { background: rgba(59,130,246,0.15); color: var(--electric-light); }
.icon-teal { background: rgba(20,184,166,0.15); color: var(--teal-light); }
.icon-purple { background: rgba(139,92,246,0.15); color: #A78BFA; }
.icon-amber { background: rgba(251,191,36,0.15); color: #FCD34D; }
.icon-rose { background: rgba(244,63,94,0.15); color: #FB7185; }
.icon-green { background: rgba(34,197,94,0.15); color: #4ADE80; }
.feature-card h3 {
font-family: var(--font);
font-size: 1.05rem;
font-weight: 600;
margin-bottom: 0.6rem;
position: relative;
z-index: 1;
}
.feature-card p {
color: var(--text-secondary);
font-size: 0.9rem;
line-height: 1.65;
position: relative;
z-index: 1;
}
/* INTEGRATIONS */
.integrations-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 1rem;
margin-top: 3rem;
}
.integration-chip {
background: var(--navy-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.25rem 1rem;
text-align: center;
font-size: 0.85rem;
font-weight: 500;
color: var(--text-secondary);
transition: border-color 0.2s, color 0.2s, transform 0.2s;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.6rem;
}
.integration-chip:hover {
border-color: rgba(59,130,246,0.35);
color: var(--text-primary);
transform: translateY(-2px);
}
.integration-logo {
width: 36px; height: 36px;
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
font-size: 1rem;
font-weight: 700;
}
/* STATS */
.stats-section {
background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(20,184,166,0.06));
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
text-align: center;
}
.stat-number {
font-family: var(--font);
font-size: 2.8rem;
font-weight: 700;
background: linear-gradient(135deg, var(--electric-light), var(--teal-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 0.5rem;
}
.stat-label {
color: var(--text-secondary);
font-size: 0.875rem;
}
/* CTA */
.cta-section {
text-align: center;
}
.cta-box {
background: var(--navy-card);
border: 1px solid rgba(59,130,246,0.2);
border-radius: 24px;
padding: 4rem 2rem;
position: relative;
overflow: hidden;
}
.cta-box::before {
content: '';
position: absolute;
top: -120px; left: 50%;
transform: translateX(-50%);
width: 600px; height: 300px;
background: radial-gradient(ellipse, rgba(59,130,246,0.12), transparent 70%);
pointer-events: none;
}
.cta-box h2 {
font-family: var(--font);
font-size: clamp(1.8rem, 3vw, 2.5rem);
font-weight: 700;
letter-spacing: -0.02em;
margin-bottom: 1rem;
position: relative;
}
.cta-box p {
color: var(--text-secondary);
font-size: 1rem;
margin-bottom: 2.5rem;
max-width: 480px;
margin-left: auto;
margin-right: auto;
position: relative;
}
.cta-actions {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
position: relative;
}
/* FOOTER */
footer {
padding: 3rem 2rem;
border-top: 1px solid var(--border);
}
.footer-inner {
max-width: 1100px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1.5rem;
}
.footer-logo img { height: 28px; width: auto; }
.footer-links {
display: flex;
gap: 2rem;
list-style: none;
}
.footer-links a {
color: var(--text-muted);
text-decoration: none;
font-size: 0.85rem;
transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-copy {
color: var(--text-muted);
font-size: 0.8rem;
}
/* SVG icons inline */
.icon-svg { width: 18px; height: 18px; display: inline-block; vertical-align: middle; }
@media (max-width: 768px) {
.hero-inner { grid-template-columns: 1fr; gap: 3rem; }
.hero-visual { display: none; }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.nav-links { display: none; }
.footer-inner { flex-direction: column; align-items: flex-start; }
.features-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<div class="nav-logo">
<img src="https://app.simplydial.it/rest/system/image?category=logo&v=9F2547B7" alt="SimplyDial" onerror="this.style.display='none'; this.parentElement.innerHTML='<span style=\'font-family:Sora,sans-serif;font-weight:700;font-size:1.2rem;color:#F1F5F9;\'>SimplyDial</span>'">
</div>
<ul class="nav-links">
<li><a href="#features">Features</a></li>
<li><a href="#integrations">Integrations</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#contact" class="nav-cta">Get Started</a></li>
</ul>
</nav>
<!-- HERO -->
<section class="hero">
<div class="hero-inner">
<div class="hero-content">
<div class="hero-badge">
<span class="badge-dot"></span>
Unified Cloud Communications
</div>
<h1>Connect Your Team.<br><em>Simplify Everything.</em></h1>
<p class="hero-sub">SimplyDial brings voice, SMS, and your favourite business tools together in one cloud-hosted platform — so your team spends less time managing communications and more time getting things done.</p>
<div class="hero-actions">
<a href="#contact" class="btn-primary">
Get Started
<svg class="icon-svg" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
</a>
<a href="#features" class="btn-outline">
Explore Features
</a>
</div>
</div>
<!-- HERO VISUAL: Dashboard mockup -->
<div class="hero-visual">
<div class="float-badge top-right">
<div class="float-icon" style="background:rgba(139,92,246,0.15);color:#A78BFA;">
<svg width="16" height="16" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M9 9h6M9 12h6M9 15h4"/></svg>
</div>
<div class="float-text">
<div style="color:#F1F5F9;font-size:0.8rem;font-weight:600;">Teams Connected</div>
<div class="float-label">Microsoft 365 integration live</div>
</div>
</div>
<div class="dash-card">
<div class="dash-header">
<span class="dash-title">Communications Hub</span>
<span class="status-pill">● All systems live</span>
</div>
<div class="metric-row">
<div class="metric">
<div class="metric-label">Active Calls</div>
<div class="metric-value">24</div>
<div class="metric-sub">↑ 12% today</div>
</div>
<div class="metric">
<div class="metric-label">SMS Sent</div>
<div class="metric-value">1.4k</div>
<div class="metric-sub">↑ 8% today</div>
</div>
<div class="metric">
<div class="metric-label">Uptime</div>
<div class="metric-value">99.9%</div>
<div class="metric-sub" style="color:#4ADE80;">Excellent</div>
</div>
</div>
<div class="activity-list">
<div class="activity-item">
<div class="activity-icon call">
<svg width="14" height="14" fill="none" stroke="currentColor" stroke-width="2.5" viewBox="0 0 24 24"><path d="M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.8a19.79 19.79 0 01-3.07-8.64A2 2 0 012 1h3a2 2 0 012 1.72c.127.96.36 1.903.7 2.81a2 2 0 01-.45 2.11L6.91 8.92A16 16 0 0015.08 17l1.27-1.28a2 2 0 012.11-.45c.907.34 1.85.573 2.81.7A2 2 0 0122 16.92z"/></svg>
</div>
<span class="activity-name">Inbound call — Sales line</span>
<span class="activity-time">just now</span>
</div>
<div class="activity-item">
<div class="activity-icon sms">
<svg width="14" height="14" fill="none" stroke="currentColor" stroke-width="2.5" viewBox="0 0 24 24"><path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z"/></svg>
</div>
<span class="activity-name">SMS reply — Support queue</span>
<span class="activity-time">2 min ago</span>
</div>
<div class="activity-item">
<div class="activity-icon teams">
<svg width="14" height="14" fill="none" stroke="currentColor" stroke-width="2.5" viewBox="0 0 24 24"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M9 9h6M9 12h6M9 15h4"/></svg>
</div>
<span class="activity-name">Teams call — Ext. 2201</span>
<span class="activity-time">5 min ago</span>
</div>
</div>
</div>
<div class="float-badge bot-left">
<div class="float-icon" style="background:rgba(20,184,166,0.15);color:#2DD4BF;">
<svg width="16" height="16" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z"/></svg>
</div>
<div class="float-text">
<div style="color:#F1F5F9;font-size:0.8rem;font-weight:600;">SMS Delivered</div>
<div class="float-label">Two-way messaging active</div>
</div>
</div>
</div>
</div>
</section>
<!-- FEATURES -->
<section class="features-bg" id="features">
<div class="section-inner">
<div class="section-head">
<span class="section-label">Platform Features</span>
<h2 class="section-title">Everything your business<br>needs to communicate</h2>
<p class="section-sub">A complete communications stack, hosted in the cloud and managed for you — no on-premise hardware required.</p>
</div>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon icon-blue">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07A19.5 19.5 0 013.07 9.8a19.79 19.79 0 01-3.07-8.64A2 2 0 012 1h3a2 2 0 012 1.72c.127.96.36 1.903.7 2.81a2 2 0 01-.45 2.11L6.91 8.92A16 16 0 0015.08 17l1.27-1.28a2 2 0 012.11-.45c.907.34 1.85.573 2.81.7A2 2 0 0122 16.92z"/></svg>
</div>
<h3>Cloud Phone System</h3>
<p>Full-featured business phone with extensions, call routing, auto-attendants, call queues, voicemail-to-email, and call recording — everything you need, with no on-premise hardware.</p>
</div>
<div class="feature-card">
<div class="feature-icon icon-teal">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z"/></svg>
</div>
<h3>Business SMS & MMS</h3>
<p>Send and receive text messages and images directly on your business number. Two-way SMS and MMS keep conversations organized alongside your voice calls — no personal numbers needed.</p>
</div>
<div class="feature-card">
<div class="feature-icon icon-blue" style="background:rgba(99,102,241,0.15);color:#A5B4FC;">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><circle cx="12" cy="8" r="4"/><path d="M4 20c0-4 3.6-7 8-7s8 3 8 7"/><path d="M18 3l1.5 1.5M18 9l1.5-1.5M21 6h-2"/></svg>
</div>
<h3>AI Voice Agents</h3>
<p>Automate inbound calls with intelligent voice agents that greet callers, answer common questions, capture information, and route conversations — 24/7, without putting anyone on hold.</p>
</div>
<div class="feature-card">
<div class="feature-icon icon-purple">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M9 9h6M9 12h6M9 15h4"/></svg>
</div>
<h3>Microsoft Teams Integration</h3>
<p>Make and receive external calls directly within Teams. Your team keeps working in the tools they already know — with full PSTN calling powered by SimplyDial.</p>
</div>
<div class="feature-card">
<div class="feature-icon icon-amber">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="5" y="2" width="14" height="20" rx="2"/><path d="M12 18h.01"/><rect x="2" y="7" width="4" height="7" rx="1"/><rect x="18" y="7" width="4" height="7" rx="1"/></svg>
</div>
<h3>Any Device, Anywhere</h3>
<p>Take your business line with you. SimplyDial works on desk phones, desktop computers, and mobile devices — iOS and Android — so your team stays reachable whether they're in the office or on the road.</p>
</div>
<div class="feature-card">
<div class="feature-icon icon-green">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
</div>
<h3>Hosted & Managed in Canada</h3>
<p>Your platform runs on enterprise cloud infrastructure hosted in Canada, so your data stays local. No on-premise hardware to maintain — we handle the uptime for you.</p>
</div>
</div>
</div>
</section>
<!-- STATS -->
<section class="stats-section">
<div class="section-inner">
<div class="stats-grid">
<div>
<div class="stat-number">500+</div>
<div class="stat-label">Extensions Managed</div>
</div>
<div>
<div class="stat-number">50+</div>
<div class="stat-label">Integrations Available</div>
</div>
<div>
<div class="stat-number">Multi</div>
<div class="stat-label">Site & Location Ready</div>
</div>
<div>
<div class="stat-number">Canada</div>
<div class="stat-label">Data Hosted Locally</div>
</div>
</div>
</div>
</section>
<!-- INTEGRATIONS -->
<section id="integrations">
<div class="section-inner">
<div class="section-head">
<span class="section-label">Integrations</span>
<h2 class="section-title">Works with the tools<br>your team already uses</h2>
<p class="section-sub">SimplyDial connects to 50+ platforms — from CRMs and helpdesks to productivity suites and industry apps — so your communications fit right into your existing workflow.</p>
</div>
<div class="integrations-grid">
<div class="integration-chip">
<div class="integration-logo" style="background:rgba(139,92,246,0.15);color:#A78BFA;">
<svg width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M9 9h6M9 12h6M9 15h4"/></svg>
</div>
Microsoft Teams
</div>
<div class="integration-chip">
<div class="integration-logo" style="background:rgba(59,130,246,0.15);color:#60A5FA;">
<svg width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="2" y="3" width="20" height="14" rx="2"/><path d="M8 21h8M12 17v4"/></svg>
</div>
Microsoft 365
</div>
<div class="integration-chip">
<div class="integration-logo" style="background:rgba(34,197,94,0.15);color:#4ADE80;">
<svg width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 00-3-3.87M16 3.13a4 4 0 010 7.75"/></svg>
</div>
Salesforce CRM
</div>
<div class="integration-chip">
<div class="integration-logo" style="background:rgba(251,191,36,0.15);color:#FCD34D;">
<svg width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg>
</div>
Google Workspace
</div>
<div class="integration-chip">
<div class="integration-logo" style="background:rgba(244,63,94,0.15);color:#FB7185;">
<svg width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="M12 8v4l3 3"/></svg>
</div>
HubSpot
</div>
<div class="integration-chip">
<div class="integration-logo" style="background:rgba(20,184,166,0.15);color:#2DD4BF;">
<svg width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z"/></svg>
</div>
Slack
</div>
<div class="integration-chip">
<div class="integration-logo" style="background:rgba(99,102,241,0.15);color:#A5B4FC;">
<svg width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="3" y="4" width="18" height="18" rx="2"/><path d="M16 2v4M8 2v4M3 10h18"/></svg>
</div>
Zoho CRM
</div>
<div class="integration-chip">
<div class="integration-logo" style="background:rgba(251,146,60,0.15);color:#FB923C;">
<svg width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg>
</div>
Zendesk
</div>
<div class="integration-chip">
<div class="integration-logo" style="background:rgba(59,130,246,0.12);color:#93C5FD;">
<svg width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71"/><path d="M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71"/></svg>
</div>
REST API
</div>
<div class="integration-chip" style="border-style:dashed;opacity:0.6;">
<div class="integration-logo" style="background:rgba(148,163,184,0.1);color:#64748B;">
<svg width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><line x1="12" y1="8" x2="12" y2="16"/><line x1="8" y1="12" x2="16" y2="12"/></svg>
</div>
50+ More
</div>
</div>
</div>
</section>
<!-- CTA -->
<section class="cta-section" id="contact">
<div class="section-inner">
<div class="cta-box">
<h2>Ready to simplify your<br>business communications?</h2>
<p>Talk to our team and get your organization set up on a platform that grows with you.</p>
<div class="cta-actions">
<a href="mailto:[email protected]" class="btn-primary">
Contact Us
<svg class="icon-svg" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/><polyline points="22,6 12,13 2,6"/></svg>
</a>
<a href="tel:+1" class="btn-outline">Call Us</a>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-inner">
<div class="footer-logo">
<img src="https://app.simplydial.it/rest/system/image?category=logo&v=9F2547B7" alt="SimplyDial" onerror="this.style.display='none'; this.parentElement.innerHTML='<span style=\'font-family:Sora,sans-serif;font-weight:700;font-size:1rem;color:#64748B;\'>SimplyDial</span>'">
</div>
<ul class="footer-links">
<li><a href="#features">Features</a></li>
<li><a href="#integrations">Integrations</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
<p class="footer-copy">© <span id="footer-year"></span> SimplyDial. All rights reserved.</p>
</div>
</footer>
<script>
document.getElementById('footer-year').textContent = new Date().getFullYear();
</script>
</body>
</html>