File: //home/primrwxj/gistmi.thezonalhouse.info/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Business Leads Landing Page</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: linear-gradient(135deg, #fff4e8, #ffffff, #eafcff);
color: #1e293b;
line-height: 1.6;
}
a {
text-decoration: none;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
.hero {
padding: 70px 0 40px;
position: relative;
overflow: hidden;
}
.hero-grid {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 40px;
align-items: center;
}
.badge {
display: inline-block;
background: rgba(255,255,255,0.9);
border: 1px solid #fed7aa;
color: #7c2d12;
padding: 8px 16px;
border-radius: 999px;
font-size: 14px;
font-weight: bold;
margin-bottom: 20px;
}
h1 {
font-size: 52px;
line-height: 1.1;
margin-bottom: 20px;
color: #0f172a;
}
.hero p {
font-size: 18px;
color: #475569;
max-width: 600px;
margin-bottom: 25px;
}
.btn-group {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 35px;
}
.btn {
display: inline-block;
padding: 14px 24px;
border-radius: 14px;
font-weight: bold;
font-size: 15px;
transition: 0.25s ease;
}
.btn-primary {
background: #0f172a;
color: white;
}
.btn-primary:hover {
background: #1e293b;
}
.btn-secondary {
background: white;
color: #334155;
border: 1px solid #cbd5e1;
}
.btn-secondary:hover {
background: #f8fafc;
}
.feature-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
max-width: 700px;
}
.feature-card {
background: rgba(255,255,255,0.92);
border: 1px solid #e2e8f0;
border-radius: 18px;
padding: 18px;
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.feature-card h3 {
font-size: 15px;
margin-bottom: 8px;
}
.feature-card p {
font-size: 14px;
color: #64748b;
margin: 0;
}
.form-box {
background: white;
border-radius: 28px;
padding: 32px;
box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
border: 1px solid #e2e8f0;
}
.form-box h2 {
font-size: 30px;
margin-bottom: 8px;
color: #0f172a;
}
.form-box .intro {
font-size: 14px;
color: #64748b;
margin-bottom: 22px;
}
.form-group {
margin-bottom: 16px;
}
label {
display: block;
font-size: 14px;
font-weight: bold;
margin-bottom: 8px;
color: #334155;
}
input, select, textarea {
width: 100%;
padding: 14px 16px;
border-radius: 14px;
border: 1px solid #cbd5e1;
font-size: 15px;
outline: none;
}
input:focus, select:focus, textarea:focus {
border-color: #fb923c;
box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.15);
}
textarea {
min-height: 120px;
resize: vertical;
}
.submit-btn {
width: 100%;
border: none;
padding: 15px 20px;
border-radius: 14px;
color: white;
font-weight: bold;
font-size: 15px;
cursor: pointer;
background: linear-gradient(90deg, #f97316, #ec4899, #06b6d4);
}
.submit-btn:hover {
opacity: 0.95;
}
.privacy-note {
font-size: 12px;
color: #64748b;
text-align: center;
margin-top: 14px;
}
.services {
padding: 30px 0;
}
.services-box {
background: #0f172a;
color: white;
border-radius: 28px;
padding: 40px;
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}
.services-box .tag {
text-transform: uppercase;
letter-spacing: 2px;
font-size: 13px;
font-weight: bold;
color: #fdba74;
margin-bottom: 10px;
}
.services-box h2 {
font-size: 34px;
margin-bottom: 14px;
}
.services-box p.main-text {
color: #cbd5e1;
max-width: 700px;
margin-bottom: 28px;
}
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
}
.service-card {
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 18px;
padding: 22px;
}
.service-card h3 {
margin-bottom: 10px;
font-size: 20px;
}
.service-card p {
color: #cbd5e1;
font-size: 14px;
}
.benefits {
padding: 20px 0 40px;
}
.benefit-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
}
.benefit-card {
background: white;
border-radius: 18px;
padding: 22px;
border: 1px solid #e2e8f0;
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
font-weight: bold;
}
footer {
text-align: center;
padding: 10px 20px 35px;
color: #64748b;
font-size: 14px;
}
@media (max-width: 992px) {
.hero-grid,
.services-grid,
.feature-cards,
.benefit-grid {
grid-template-columns: 1fr;
}
h1 {
font-size: 40px;
}
}
@media (max-width: 600px) {
.hero {
padding-top: 45px;
}
h1 {
font-size: 32px;
}
.form-box,
.services-box {
padding: 24px;
}
.btn {
width: 100%;
text-align: center;
}
}
</style>
</head>
<body>
<section class="hero">
<div class="container hero-grid">
<div>
<div class="badge">Grow your business with confidence</div>
<h1>Get more leads for your business with a page that works while you sleep</h1>
<p>
Turn visitors into real prospects with a simple, attractive landing page designed to capture interest,
build trust, and encourage people to reach out.
</p>
<div class="btn-group">
<a href="#lead-form" class="btn btn-primary">Get Started</a>
<a href="#services" class="btn btn-secondary">View Services</a>
</div>
<div class="feature-cards">
<div class="feature-card">
<h3>Fast Setup</h3>
<p>Launch quickly and start collecting leads.</p>
</div>
<div class="feature-card">
<h3>Trusted Design</h3>
<p>Clean layout that feels professional.</p>
</div>
<div class="feature-card">
<h3>Built to Convert</h3>
<p>Clear calls to action that guide visitors.</p>
</div>
</div>
</div>
<div class="form-box" id="lead-form">
<h2>Let’s talk about your business</h2>
<p class="intro">Fill out the form below and take the first step toward attracting more customers.</p>
<form>
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" placeholder="Enter your full name" />
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" name="email" placeholder="Enter your email" />
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone" placeholder="Enter your phone number" />
</div>
<div class="form-group">
<label for="service">What do you need help with?</label>
<select id="service" name="service">
<option>Website Design</option>
<option>Digital Marketing</option>
<option>SEO</option>
<option>Branding</option>
<option>Other</option>
</select>
</div>
<div class="form-group">
<label for="message">Tell us about your project</label>
<textarea id="message" name="message" placeholder="Briefly describe your business or project"></textarea>
</div>
<button type="submit" class="submit-btn">Send My Request</button>
</form>
<p class="privacy-note">We respect your privacy and will only contact you about your inquiry.</p>
</div>
</div>
</section>
<section class="services" id="services">
<div class="container">
<div class="services-box">
<div class="tag">Services</div>
<h2>Simple solutions to help your business stand out</h2>
<p class="main-text">
Whether you need a website, stronger online visibility, or better branding, this page is designed to help you turn interest into action.
</p>
<div class="services-grid">
<div class="service-card">
<h3>Website Design</h3>
<p>Modern pages that make your business look trustworthy and ready for customers.</p>
</div>
<div class="service-card">
<h3>Marketing Support</h3>
<p>Clear messaging and lead generation tools that help people take the next step.</p>
</div>
<div class="service-card">
<h3>SEO Setup</h3>
<p>Foundational optimization to help your business get discovered online.</p>
</div>
</div>
</div>
</div>
</section>
<section class="benefits">
<div class="container benefit-grid">
<div class="benefit-card">Professional and colorful design</div>
<div class="benefit-card">Lead capture form above the fold</div>
<div class="benefit-card">Flexible enough to adapt for any business</div>
</div>
</section>
<footer>
© 2026 Your Business Name. All rights reserved.
</footer>
</body>
</html>