<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Refresh Your Leads</title>
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background: radial-gradient(circle at top, #1e293b, #020617);
color: #f8fafc;
line-height: 1.6;
}
header {
padding: 120px 20px 100px;
text-align: center;
max-width: 1100px;
margin: 0 auto;
}
h1 {
font-size: 3.8rem;
font-weight: 700;
margin-bottom: 24px;
letter-spacing: -1px;
}
header p {
font-size: 1.35rem;
color: #cbd5e1;
max-width: 780px;
margin: 0 auto 48px;
}
.cta {
display: inline-block;
background: linear-gradient(135deg, #3b82f6, #1d4ed8);
color: white;
font-weight: 600;
font-size: 1.15rem;
padding: 16px 48px;
border-radius: 12px;
text-decoration: none;
transition: all 0.25s ease;
box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}
.cta:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(59, 130, 246, 0.35);
}
section {
padding: 80px 20px;
max-width: 1100px;
margin: 0 auto;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 32px;
}
.card {
background: rgba(2, 6, 23, 0.8);
border: 1px solid #1e293b;
padding: 32px;
border-radius: 16px;
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-8px);
border-color: #334155;
box-shadow: 0 12px 32px rgba(30, 41, 59, 0.3);
}
.card .icon {
font-size: 2.5rem;
margin-bottom: 20px;
color: #60a5fa;
}
.card h3 {
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 16px;
}
.card p {
color: #94a3b8;
font-size: 1.05rem;
}
footer {
text-align: center;
padding: 60px 20px 40px;
color: #64748b;
font-size: 0.95rem;
border-top: 1px solid #1e293b;
}
</style>
</head>
<body>
<header>
<h1>Refresh Your Leads</h1>
<p>
We revive dead databases and turn ignored traffic into booked calls — automatically.<br>
Fast websites, AI chatbots, and n8n automations built for real results.
</p>
<a href="https://cal.reilimitless.com/karla" class="cta" target="_blank" rel="noopener noreferrer">
Book a Free 30-Min Systems Call
</a>
</header>
<section>
<div class="features">
<div class="card">
<div class="icon">⚡</div>
<h3>Instant Websites</h3>
<p>
Clean, blazing-fast sites live in hours — not months. Zero WordPress drama, zero ongoing headaches.
</p>
</div>
<div class="card">
<div class="icon">🤖</div>
<h3>AI Chatbots</h3>
<p>
24/7 lead qualifiers that answer questions, book calls, and filter junk — powered by AI. n8n chatbot integration dropping soon.
</p>
</div>
<div class="card">
<div class="icon">🔄</div>
<h3>Database Reactivation + Automation</h3>
<p>
Wake up old leads with smart n8n workflows: auto follow-ups, call booking, CRM sync — turning dormant data into revenue.
</p>
</div>
</div>
</section>
<footer>
© 2026 RefreshYourLeads.com — Built fast. Built smart.
</footer>
</body>
</html>