Insurance — Business Insurance Landing
A reassuring commercial-insurance landing page with a confident hero, four coverage-line cards for liability, property, workers comp and cyber, an industry-tailoring picker, a bundle-savings calculator, customer testimonials and a request-a-quote form that validates inline.
MCP
Code
:root {
--blue: #2563eb;
--blue-d: #1d4ed8;
--green: #15a06b;
--blue-50: #eef4ff;
--ink: #0f1a2b;
--muted: #5a6b82;
--bg: #f3f7fc;
--white: #ffffff;
--line: #dce6f4;
--radius: 16px;
--shadow: 0 10px 30px rgba(15, 26, 43, 0.08);
--shadow-sm: 0 2px 8px rgba(15, 26, 43, 0.06);
--font: 'Inter', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: var(--font);
color: var(--ink);
background: var(--bg);
line-height: 1.55;
-webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.sr-only {
position: absolute; width: 1px; height: 1px;
padding: 0; margin: -1px; overflow: hidden;
clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible {
outline: 3px solid rgba(37, 99, 235, 0.45);
outline-offset: 2px;
border-radius: 6px;
}
/* ---------- buttons ---------- */
.btn {
display: inline-flex; align-items: center; justify-content: center;
gap: 8px; font: inherit; font-weight: 600;
padding: 13px 22px; border-radius: 12px;
border: 1px solid transparent; cursor: pointer;
transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(37,99,235,.28); }
.btn-primary:hover { background: var(--blue-d); }
.btn-ghost { background: var(--white); color: var(--blue-d); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); }
.btn-sm { padding: 9px 16px; border-radius: 10px; }
.btn-block { width: 100%; }
/* ---------- header ---------- */
.site-head {
position: sticky; top: 0; z-index: 20;
display: flex; align-items: center; gap: 24px;
padding: 14px 32px;
background: rgba(255,255,255,.85);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 9px; font-size: 18px; }
.brand-mark {
display: grid; place-items: center;
width: 30px; height: 30px; border-radius: 9px;
background: var(--blue); color: #fff; font-size: 13px;
}
.brand-name { font-weight: 700; }
.brand-name strong { color: var(--blue-d); }
.nav { display: flex; gap: 22px; margin-left: auto; font-weight: 500; color: var(--muted); }
.nav a:hover { color: var(--ink); }
.site-head .btn-sm { margin-left: 8px; }
/* ---------- hero ---------- */
.hero {
display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px;
align-items: center;
padding: 72px 32px 64px;
max-width: 1180px; margin: 0 auto;
}
.eyebrow {
display: inline-flex; align-items: center; gap: 8px;
background: var(--blue-50); color: var(--blue-d);
font-size: 13px; font-weight: 600;
padding: 6px 12px; border-radius: 999px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800; margin: 18px 0 14px; }
.lede { font-size: 1.08rem; color: var(--muted); max-width: 34ch; }
.hero-cta { display: flex; gap: 12px; margin: 26px 0 30px; flex-wrap: wrap; }
.trust-row { list-style: none; display: flex; gap: 30px; }
.trust-row li { display: flex; flex-direction: column; }
.trust-row strong { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.trust-row span { font-size: 13px; color: var(--muted); }
.hero-card {
background: var(--white); border-radius: 20px;
box-shadow: var(--shadow); border: 1px solid var(--line);
padding: 24px;
}
.hc-head { display: flex; justify-content: space-between; align-items: center; }
.hc-tag { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.hc-biz { font-size: 1.15rem; font-weight: 700; margin-top: 14px; }
.hc-sub { color: var(--muted); font-size: 14px; }
.hc-lines { list-style: none; margin: 18px 0; display: grid; gap: 1px; background: var(--line); border-radius: 12px; overflow: hidden; }
.hc-lines div { display: flex; justify-content: space-between; background: var(--white); padding: 11px 14px; }
.hc-lines dt { color: var(--muted); font-size: 14px; }
.hc-lines dd { font-weight: 600; font-size: 14px; }
.hc-foot {
display: flex; justify-content: space-between; align-items: center;
background: var(--blue-50); border-radius: 12px; padding: 14px 16px;
}
.hc-foot span { color: var(--muted); font-weight: 500; }
.hc-foot strong { font-size: 1.7rem; font-weight: 800; color: var(--blue-d); }
.hc-foot small { font-size: .9rem; font-weight: 600; color: var(--muted); }
.badge { display: inline-block; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.badge-green { background: rgba(21,160,107,.12); color: var(--green); }
/* ---------- sections ---------- */
.section { max-width: 1180px; margin: 0 auto; padding: 64px 32px; }
.section-tint { max-width: none; background: var(--blue-50); }
.section-tint > * { max-width: 1180px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; max-width: 56ch; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }
.section-head p { color: var(--muted); margin-top: 10px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
background: var(--white); border: 1px solid var(--line);
border-radius: var(--radius); padding: 24px;
box-shadow: var(--shadow-sm);
transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.ci { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; font-size: 22px; margin-bottom: 14px; }
.ci-blue { background: var(--blue-50); }
.ci-green { background: rgba(21,160,107,.12); }
.card h3 { font-size: 1.12rem; font-weight: 700; }
.card p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }
.from { color: var(--ink) !important; font-weight: 500; margin-top: 14px !important; }
.from strong { color: var(--blue-d); font-size: 1.25rem; font-weight: 800; }
/* ---------- industries ---------- */
.industry {
background: var(--white); border: 1px solid var(--line);
border-radius: 20px; box-shadow: var(--shadow); overflow: hidden;
display: grid; grid-template-columns: 280px 1fr;
}
.ind-tabs { display: flex; flex-direction: column; border-right: 1px solid var(--line); background: #fbfdff; }
.ind-tab {
font: inherit; text-align: left; padding: 18px 22px;
background: none; border: 0; border-left: 3px solid transparent;
cursor: pointer; color: var(--muted); font-weight: 600;
transition: background .12s ease, color .12s ease;
}
.ind-tab:hover { background: var(--blue-50); color: var(--ink); }
.ind-tab.is-active { background: var(--white); color: var(--blue-d); border-left-color: var(--blue); }
.ind-panel { padding: 32px; }
.ind-panel h3 { font-size: 1.4rem; font-weight: 800; }
.ind-panel > p { color: var(--muted); margin: 10px 0 18px; max-width: 50ch; }
.ind-lines { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.ind-lines li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.ind-lines li::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(21,160,107,.14); color: var(--green); font-size: 13px; font-weight: 700; }
.ind-price { font-size: 1.05rem; color: var(--muted); }
.ind-price strong { color: var(--blue-d); font-size: 1.5rem; font-weight: 800; }
/* ---------- bundle calculator ---------- */
.calc {
display: grid; grid-template-columns: 1.3fr .9fr; gap: 24px;
background: var(--white); border: 1px solid var(--line);
border-radius: 20px; box-shadow: var(--shadow); padding: 28px;
}
.calc-lines { border: 0; display: grid; gap: 12px; }
.calc-line {
display: flex; align-items: center; gap: 12px;
padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px;
font-weight: 600; cursor: pointer; transition: border-color .12s ease, background .12s ease;
}
.calc-line:hover { border-color: var(--blue); }
.calc-line input { width: 18px; height: 18px; accent-color: var(--blue); cursor: pointer; }
.calc-amt { margin-left: auto; color: var(--muted); font-weight: 600; font-size: 14px; }
.calc-out { background: var(--blue-50); border-radius: 16px; padding: 26px; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.calc-label { color: var(--muted); font-weight: 600; }
.calc-total { font-size: 3rem; font-weight: 800; color: var(--blue-d); line-height: 1; margin: 6px 0; }
.calc-total::before { content: "$"; font-size: 1.6rem; vertical-align: top; }
.calc-total small { font-size: 1.1rem; font-weight: 600; color: var(--muted); }
.calc-save { color: var(--green); font-weight: 600; font-size: 14px; margin-bottom: 18px; }
/* ---------- testimonials ---------- */
#stories .cards { grid-template-columns: repeat(3, 1fr); }
.quote {
background: var(--white); border: 1px solid var(--line);
border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
}
.quote blockquote { font-size: 1.05rem; color: var(--ink); }
.quote figcaption { margin-top: 18px; display: flex; flex-direction: column; }
.quote figcaption strong { font-weight: 700; }
.quote figcaption span { color: var(--muted); font-size: 14px; }
/* ---------- quote form ---------- */
.quote-wrap {
display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
background: var(--ink); color: #fff;
border-radius: 24px; padding: 44px;
}
.quote-copy h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; }
.quote-copy p { color: #b9c6d8; margin: 12px 0 22px; }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.checklist li::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; font-size: 13px; font-weight: 700; flex: 0 0 auto; }
.quote-form { background: var(--white); color: var(--ink); border-radius: 18px; padding: 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.field input, .field select {
width: 100%; font: inherit; padding: 12px 14px;
border: 1px solid var(--line); border-radius: 11px; background: #fff;
transition: border-color .12s ease, box-shadow .12s ease;
}
.field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.15); outline: none; }
.field.invalid input, .field.invalid select { border-color: #dc2626; }
.err { display: block; color: #dc2626; font-size: 13px; font-weight: 500; min-height: 0; margin-top: 5px; }
.form-note { color: var(--muted); font-size: 12.5px; margin-top: 12px; }
.form-ok { background: rgba(21,160,107,.12); color: var(--green); font-weight: 600; padding: 12px 14px; border-radius: 11px; margin-top: 14px; }
/* ---------- footer ---------- */
.site-foot {
background: var(--white); border-top: 1px solid var(--line);
padding: 40px 32px;
display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px;
max-width: 1180px; margin: 0 auto;
}
.foot-col p { color: var(--muted); font-size: 14px; margin-top: 8px; max-width: 40ch; }
.foot-links { display: flex; gap: 20px; justify-content: flex-end; align-items: flex-start; flex-wrap: wrap; color: var(--muted); font-weight: 500; }
.foot-links a:hover { color: var(--blue-d); }
.foot-legal { grid-column: 1 / -1; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); padding-top: 18px; }
/* ---------- responsive ---------- */
@media (max-width: 900px) {
.hero { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
.cards { grid-template-columns: repeat(2, 1fr); }
#stories .cards { grid-template-columns: 1fr; }
.industry { grid-template-columns: 1fr; }
.ind-tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
.ind-tab { border-left: 0; border-bottom: 3px solid transparent; white-space: nowrap; }
.ind-tab.is-active { border-left: 0; border-bottom-color: var(--blue); }
.calc, .quote-wrap, .site-foot { grid-template-columns: 1fr; }
.foot-links { justify-content: flex-start; }
}
@media (max-width: 520px) {
.nav { display: none; }
.site-head { padding: 12px 18px; }
.section { padding: 44px 18px; }
.hero { padding: 36px 18px; }
.cards { grid-template-columns: 1fr; }
.trust-row { gap: 20px; flex-wrap: wrap; }
.quote-wrap { padding: 28px 20px; }
.calc, .industry { box-shadow: var(--shadow-sm); }
.calc-total { font-size: 2.4rem; }
}/* Business Insurance Landing — vanilla JS, no libraries. */
(function () {
"use strict";
/* ---------- Industry tailoring tabs ---------- */
var INDUSTRIES = {
retail: {
name: "Retail & e-commerce",
desc: "Stock, storefronts and online orders covered. Most retailers start with a Business Owner's Policy plus cyber for card data.",
lines: ["General liability", "Commercial property", "Cyber liability", "Product liability"],
price: "$89",
},
construction: {
name: "Construction & trades",
desc: "Higher-risk work needs sturdier limits. Contractors bundle liability with workers' comp and tools coverage as standard.",
lines: ["General liability", "Workers' compensation", "Tools & equipment", "Commercial auto"],
price: "$162",
},
tech: {
name: "Tech & startups",
desc: "Your biggest exposure is data and contracts. Tech teams lean on cyber and professional liability over physical property.",
lines: ["Cyber liability", "Professional liability (E&O)", "General liability", "Workers' compensation"],
price: "$74",
},
hospitality: {
name: "Food & hospitality",
desc: "Foot traffic, food and staff all add risk. Restaurants and cafés pair a BOP with workers' comp and liquor liability.",
lines: ["General liability", "Commercial property", "Workers' compensation", "Liquor liability"],
price: "$118",
},
};
var tabs = Array.prototype.slice.call(document.querySelectorAll(".ind-tab"));
var indName = document.getElementById("ind-name");
var indDesc = document.getElementById("ind-desc");
var indLines = document.getElementById("ind-lines");
var indPrice = document.getElementById("ind-price");
function renderIndustry(key) {
var data = INDUSTRIES[key];
if (!data) return;
indName.textContent = data.name;
indDesc.textContent = data.desc;
indPrice.textContent = data.price;
indLines.innerHTML = "";
data.lines.forEach(function (line) {
var li = document.createElement("li");
li.textContent = line;
indLines.appendChild(li);
});
}
tabs.forEach(function (tab) {
tab.addEventListener("click", function () {
tabs.forEach(function (t) {
t.classList.remove("is-active");
t.setAttribute("aria-selected", "false");
});
tab.classList.add("is-active");
tab.setAttribute("aria-selected", "true");
renderIndustry(tab.dataset.ind);
});
});
renderIndustry("retail");
/* ---------- Bundle savings calculator ---------- */
var checks = Array.prototype.slice.call(document.querySelectorAll(".calc-line input"));
var totalEl = document.getElementById("calc-total");
var saveEl = document.getElementById("calc-save");
function recalc() {
var selected = checks.filter(function (c) { return c.checked; });
var raw = selected.reduce(function (sum, c) { return sum + Number(c.dataset.price); }, 0);
// Tiered bundle discount: 2 lines 8%, 3 lines 15%, 4 lines 22%.
var rate = selected.length >= 4 ? 0.22 : selected.length === 3 ? 0.15 : selected.length === 2 ? 0.08 : 0;
var saved = Math.round(raw * rate);
var total = raw - saved;
totalEl.textContent = total;
if (saved > 0) {
saveEl.textContent = "Bundle discount " + Math.round(rate * 100) + "% applied · save $" + saved + "/mo";
saveEl.style.visibility = "visible";
} else {
saveEl.textContent = "Add a second line to unlock bundle savings";
}
}
checks.forEach(function (c) { c.addEventListener("change", recalc); });
recalc();
/* ---------- Quote form validation ---------- */
var form = document.getElementById("quote-form");
var ok = document.getElementById("form-ok");
var emailRe = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
function setError(input, msg) {
var field = input.closest(".field");
var err = field.querySelector(".err");
field.classList.toggle("invalid", !!msg);
err.textContent = msg || "";
if (msg) input.setAttribute("aria-invalid", "true");
else input.removeAttribute("aria-invalid");
return !msg;
}
function validateField(input) {
var v = input.value.trim();
if (input.id === "q-name") return setError(input, v ? "" : "Please enter your name.");
if (input.id === "q-email") {
if (!v) return setError(input, "Please enter your business email.");
return setError(input, emailRe.test(v) ? "" : "Enter a valid email address.");
}
if (input.id === "q-emp") return setError(input, v ? "" : "Select your team size.");
return true;
}
["q-name", "q-email", "q-emp"].forEach(function (id) {
var el = document.getElementById(id);
el.addEventListener("blur", function () { validateField(el); });
el.addEventListener("input", function () {
if (el.closest(".field").classList.contains("invalid")) validateField(el);
});
});
form.addEventListener("submit", function (e) {
e.preventDefault();
var fields = ["q-name", "q-email", "q-emp"].map(function (id) { return document.getElementById(id); });
var valid = fields.map(validateField).every(Boolean);
if (!valid) {
ok.hidden = true;
var firstBad = form.querySelector(".field.invalid input, .field.invalid select");
if (firstBad) firstBad.focus();
return;
}
var name = document.getElementById("q-name").value.trim().split(" ")[0];
ok.hidden = false;
ok.textContent = "Thanks, " + name + "! An advisor will email your tailored quote within one business day.";
form.reset();
recalc();
});
})();<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Beacon Commercial — Business Insurance</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="site-head">
<a class="brand" href="#top" aria-label="Beacon Commercial home">
<span class="brand-mark" aria-hidden="true">▲</span>
<span class="brand-name">Beacon<strong>Commercial</strong></span>
</a>
<nav class="nav" aria-label="Primary">
<a href="#coverage">Coverage</a>
<a href="#industries">Industries</a>
<a href="#bundle">Bundle & save</a>
<a href="#stories">Stories</a>
</nav>
<a class="btn btn-primary btn-sm" href="#quote">Get a quote</a>
</header>
<main id="top">
<!-- HERO -->
<section class="hero" aria-labelledby="hero-title">
<div class="hero-copy">
<span class="eyebrow"><span class="dot" aria-hidden="true"></span> Trusted by 12,400+ businesses</span>
<h1 id="hero-title">Confident coverage for the business you built.</h1>
<p class="lede">
Liability, property, workers' comp and cyber — bundled into one simple policy with a
dedicated advisor. Licensed in all 50 states, claims paid in days, not weeks.
</p>
<div class="hero-cta">
<a class="btn btn-primary" href="#quote">Request a free quote</a>
<a class="btn btn-ghost" href="#coverage">See coverage lines</a>
</div>
<ul class="trust-row" aria-label="Company highlights">
<li><strong>A+</strong><span>AM Best rating</span></li>
<li><strong>4.8/5</strong><span>9,200 reviews</span></li>
<li><strong>98%</strong><span>claims approved</span></li>
</ul>
</div>
<aside class="hero-card" aria-label="Sample policy summary">
<div class="hc-head">
<span class="hc-tag">Sample policy</span>
<span class="badge badge-green">Active</span>
</div>
<p class="hc-biz">Maple & Oak Joinery, LLC</p>
<p class="hc-sub">Business Owner's Policy · 14 employees</p>
<dl class="hc-lines">
<div><dt>General liability</dt><dd>$2M / occurrence</dd></div>
<div><dt>Commercial property</dt><dd>$750K</dd></div>
<div><dt>Workers' comp</dt><dd>Included</dd></div>
<div><dt>Cyber add-on</dt><dd>$250K</dd></div>
</dl>
<div class="hc-foot">
<span>Bundled monthly</span>
<strong>$214<small>/mo</small></strong>
</div>
</aside>
</section>
<!-- COVERAGE -->
<section id="coverage" class="section" aria-labelledby="coverage-title">
<header class="section-head">
<h2 id="coverage-title">Coverage lines that fit how you operate</h2>
<p>Pick the protection you need today, add more as you grow. Plain-English policies, no fine-print surprises.</p>
</header>
<div class="cards" role="list">
<article class="card" role="listitem">
<span class="ci ci-blue" aria-hidden="true">🛡️</span>
<h3>General liability</h3>
<p>Covers third-party injury, property damage and legal defense when something goes wrong on the job.</p>
<p class="from">from <strong>$39</strong>/mo</p>
</article>
<article class="card" role="listitem">
<span class="ci ci-green" aria-hidden="true">🏢</span>
<h3>Commercial property</h3>
<p>Protects your space, equipment and inventory against fire, theft, storms and the unexpected.</p>
<p class="from">from <strong>$54</strong>/mo</p>
</article>
<article class="card" role="listitem">
<span class="ci ci-blue" aria-hidden="true">👷</span>
<h3>Workers' compensation</h3>
<p>Required in most states — pays medical bills and lost wages if an employee is injured at work.</p>
<p class="from">from <strong>$47</strong>/mo</p>
</article>
<article class="card" role="listitem">
<span class="ci ci-green" aria-hidden="true">🔒</span>
<h3>Cyber liability</h3>
<p>Breach response, data recovery and customer notification if your systems are attacked.</p>
<p class="from">from <strong>$29</strong>/mo</p>
</article>
</div>
</section>
<!-- INDUSTRIES -->
<section id="industries" class="section section-tint" aria-labelledby="ind-title">
<header class="section-head">
<h2 id="ind-title">Tailored to your industry</h2>
<p>We've written policies for thousands of businesses like yours. Choose a sector to see a recommended bundle.</p>
</header>
<div class="industry">
<div class="ind-tabs" role="tablist" aria-label="Industries">
<button class="ind-tab is-active" role="tab" aria-selected="true" data-ind="retail">Retail & e-commerce</button>
<button class="ind-tab" role="tab" aria-selected="false" data-ind="construction">Construction & trades</button>
<button class="ind-tab" role="tab" aria-selected="false" data-ind="tech">Tech & startups</button>
<button class="ind-tab" role="tab" aria-selected="false" data-ind="hospitality">Food & hospitality</button>
</div>
<div class="ind-panel" role="tabpanel" aria-live="polite">
<h3 id="ind-name">Retail & e-commerce</h3>
<p id="ind-desc">Stock, storefronts and online orders covered. Most retailers start with a Business Owner's Policy plus cyber for card data.</p>
<ul id="ind-lines" class="ind-lines"></ul>
<p class="ind-price">Recommended bundle from <strong id="ind-price">$89</strong>/mo</p>
</div>
</div>
</section>
<!-- BUNDLE CALCULATOR -->
<section id="bundle" class="section" aria-labelledby="bundle-title">
<header class="section-head">
<h2 id="bundle-title">Bundle policies, save up to 22%</h2>
<p>Combine the lines you need and watch the monthly total drop. Toggle to estimate your savings.</p>
</header>
<div class="calc">
<fieldset class="calc-lines">
<legend class="sr-only">Choose coverage lines to bundle</legend>
<label class="calc-line">
<input type="checkbox" data-price="39" checked /> General liability
<span class="calc-amt">$39/mo</span>
</label>
<label class="calc-line">
<input type="checkbox" data-price="54" checked /> Commercial property
<span class="calc-amt">$54/mo</span>
</label>
<label class="calc-line">
<input type="checkbox" data-price="47" /> Workers' compensation
<span class="calc-amt">$47/mo</span>
</label>
<label class="calc-line">
<input type="checkbox" data-price="29" /> Cyber liability
<span class="calc-amt">$29/mo</span>
</label>
</fieldset>
<aside class="calc-out" aria-live="polite">
<p class="calc-label">Estimated monthly</p>
<p class="calc-total"><span id="calc-total">93</span><small>/mo</small></p>
<p class="calc-save" id="calc-save">Bundle discount applied · save $0/mo</p>
<a class="btn btn-primary btn-block" href="#quote">Lock in this bundle</a>
</aside>
</div>
</section>
<!-- TESTIMONIALS -->
<section id="stories" class="section section-tint" aria-labelledby="stories-title">
<header class="section-head">
<h2 id="stories-title">Businesses sleep better with Beacon</h2>
<p>Real coverage, real claims, real people who answer the phone.</p>
</header>
<div class="cards">
<figure class="quote">
<blockquote>“A pipe burst over a holiday weekend. Beacon had an adjuster on site Tuesday and the claim paid by Friday.”</blockquote>
<figcaption><strong>Dana Whitfield</strong><span>Owner, Whitfield Bakery — Austin, TX</span></figcaption>
</figure>
<figure class="quote">
<blockquote>“Switching three policies into one bundle cut our premium 19% and gave us a single renewal date. No more juggling.”</blockquote>
<figcaption><strong>Marcus Lee</strong><span>COO, Northgate Logistics — Columbus, OH</span></figcaption>
</figure>
<figure class="quote">
<blockquote>“The cyber add-on covered breach notifications and a forensics team. For a 20-person studio, that was a lifesaver.”</blockquote>
<figcaption><strong>Priya Nadar</strong><span>Founder, Loom & Pixel — Denver, CO</span></figcaption>
</figure>
</div>
</section>
<!-- QUOTE CTA -->
<section id="quote" class="section" aria-labelledby="quote-title">
<div class="quote-wrap">
<div class="quote-copy">
<h2 id="quote-title">Get your free quote in under 5 minutes</h2>
<p>Tell us a little about your business and a licensed advisor will send a tailored quote — no obligation, no spam.</p>
<ul class="checklist">
<li>No-cost, no-commitment estimate</li>
<li>One advisor, every policy</li>
<li>Coverage that scales as you grow</li>
</ul>
</div>
<form class="quote-form" id="quote-form" novalidate>
<div class="field">
<label for="q-name">Full name</label>
<input id="q-name" name="name" type="text" autocomplete="name" required />
<span class="err" data-for="q-name"></span>
</div>
<div class="field">
<label for="q-email">Business email</label>
<input id="q-email" name="email" type="email" autocomplete="email" required />
<span class="err" data-for="q-email"></span>
</div>
<div class="field">
<label for="q-emp">Employees</label>
<select id="q-emp" name="employees" required>
<option value="">Select size…</option>
<option value="1-5">1–5</option>
<option value="6-20">6–20</option>
<option value="21-50">21–50</option>
<option value="51-200">51–200</option>
<option value="200+">200+</option>
</select>
<span class="err" data-for="q-emp"></span>
</div>
<button class="btn btn-primary btn-block" type="submit">Request my quote</button>
<p class="form-note">By submitting you agree to be contacted about a quote. We never sell your data.</p>
<p class="form-ok" id="form-ok" hidden role="status"></p>
</form>
</div>
</section>
</main>
<footer class="site-foot">
<div class="foot-col">
<span class="brand-name">Beacon<strong>Commercial</strong></span>
<p>Commercial insurance, simplified. Licensed in all 50 states. NPN #8842177.</p>
</div>
<nav class="foot-links" aria-label="Footer">
<a href="#coverage">Coverage</a>
<a href="#industries">Industries</a>
<a href="#bundle">Bundle</a>
<a href="#quote">Get a quote</a>
</nav>
<p class="foot-legal">© 2026 Beacon Commercial Insurance Services. Illustrative demo — not a real offer.</p>
</footer>
<script src="script.js"></script>
</body>
</html>Business Insurance Landing
A calm, credible landing page for a commercial-insurance brand. The hero leads with a confident headline, trust stats and a primary quote call-to-action, set on a soft blue field. Four coverage cards lay out the core lines — general liability, commercial property, workers’ compensation and cyber — each with a plain-language summary and a “from” price.
An industry picker lets visitors tailor the pitch: choosing a sector (retail, construction, tech, hospitality) swaps the recommended bundle and updates copy. A small bundle-savings calculator shows how combining policies lowers the monthly total, and testimonials add social proof.
The request-a-quote form validates name, business email and employee count inline, then shows a friendly confirmation. Everything is vanilla JS with accessible labels, focus styles and a mobile breakpoint.
Illustrative UI only — not a real insurance offer or quote.