/* leadsite — mobile-first, no framework. Navy + amber, system fonts. */
:root {
  --navy: #16324f;
  --navy-2: #1d4368;
  --ink: #1f2937;
  --mut: #5b6472;
  --bg: #f8fafc;
  --line: #e5e7eb;
  --amber: #f59e0b;
  --amber-2: #d97706;
  --green: #16a34a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* header */
.hdr { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; }
.hdr-in { display: flex; align-items: center; gap: 18px; height: 60px; }
.brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 18px; color: var(--navy);
  text-decoration: none; letter-spacing: -0.01em; white-space: nowrap;
}
.nav { display: none; gap: 18px; margin-left: 8px; }
.nav a { text-decoration: none; color: var(--mut); font-size: 15px; }
.nav a:hover { color: var(--navy); }
.hdr-in .btn-sm { margin-left: auto; }

/* buttons */
.btn {
  display: inline-block; background: var(--amber); color: #1a1204;
  font-weight: 700; text-decoration: none; text-align: center;
  border: 0; border-radius: 8px; cursor: pointer;
  padding: 10px 18px; font-size: 15px;
  transition: background .15s;
}
.btn:hover { background: var(--amber-2); color: #fff; }
.btn-lg { padding: 14px 26px; font-size: 17px; width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 14px; white-space: nowrap; }

/* hero */
.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 70%); color: #fff; }
.hero-in { display: grid; gap: 28px; padding: 40px 20px 48px; }
.hero-copy h1 { font-size: 30px; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 12px; }
.hero-copy > p { font-size: 17px; color: #cfdae6; margin-bottom: 18px; }
.hero-cta { display: none; }
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { padding-left: 30px; position: relative; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--green);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="white" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round" d="M6 12.5l4 4 8-9"/></svg>');
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}
.ticks.dark li { color: var(--ink); }

/* quote form */
.form-card {
  background: #fff; color: var(--ink); border-radius: 12px;
  padding: 22px 20px; box-shadow: 0 10px 30px rgba(10, 25, 41, .25);
}
.form-card h3 { font-size: 20px; color: var(--navy); }
.form-sub { font-size: 14px; color: var(--mut); margin: 4px 0 14px; }
.form-card form { display: grid; gap: 12px; }
.form-card label { font-size: 13px; font-weight: 600; color: var(--navy); display: grid; gap: 5px; }
.form-card .opt { color: var(--mut); font-weight: 400; }
.form-card input, .form-card select {
  font: inherit; font-size: 15px; width: 100%;
  border: 1px solid #cbd5e1; border-radius: 8px; padding: 10px 12px; background: #fff;
}
.form-card input:focus, .form-card select:focus {
  outline: 2px solid var(--amber); outline-offset: 0; border-color: var(--amber);
}
.form-fine { font-size: 12px; color: var(--mut); text-align: center; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

/* sections */
.sec { padding: 44px 20px; }
.sec h2 { font-size: 24px; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 20px; }

/* service cards */
.cards { display: grid; gap: 14px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 20px; text-decoration: none; display: block;
  transition: box-shadow .15s, transform .15s;
}
.card:hover { box-shadow: 0 8px 22px rgba(10, 25, 41, .10); transform: translateY(-2px); }
.card-icon { width: 46px; height: 46px; color: var(--navy); margin-bottom: 10px; }
.card h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.card p { font-size: 14px; color: var(--mut); margin-bottom: 10px; }
.card-link { font-size: 14px; font-weight: 700; color: var(--amber-2); }

/* how it works */
.steps-band { background: #eef2f6; }
.steps { display: grid; gap: 18px; }
.step { background: #fff; border-radius: 12px; padding: 20px; border: 1px solid var(--line); }
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 700; margin-bottom: 10px;
}
.step h3 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.step p { font-size: 14px; color: var(--mut); }

/* testimonials */
.quotes { display: grid; gap: 14px; }
.quotes blockquote {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--amber);
  border-radius: 10px; padding: 18px; font-size: 15px; color: var(--ink);
}
.quotes cite { display: block; margin-top: 10px; font-style: normal; font-size: 13px; color: var(--mut); }

/* service page split */
.split { display: grid; gap: 22px; }
.split p { margin-bottom: 12px; color: var(--ink); }
.trust-box { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; height: fit-content; }
.trust-box h3 { font-size: 16px; color: var(--navy); margin-bottom: 12px; }

/* thanks */
.thanks { display: flex; justify-content: center; }
.thanks-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 36px 26px; text-align: center; max-width: 520px;
}
.thanks-card h1 { font-size: 26px; color: var(--navy); margin: 12px 0 10px; }
.thanks-card p { color: var(--mut); margin-bottom: 12px; }
.thanks-tip { font-size: 13px; }
.thanks-card .btn { margin-top: 8px; width: auto; }

/* legal */
.legal { max-width: 760px; }
.legal h1 { font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.legal h2 { font-size: 18px; margin: 22px 0 6px; }
.legal p { margin-bottom: 10px; color: var(--ink); }

/* footer */
.ftr { background: var(--navy); color: #b9c7d4; padding: 30px 0 26px; margin-top: 20px; }
.ftr-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 14px; }
.ftr-links a { color: #dbe5ee; text-decoration: none; font-size: 14px; }
.ftr-links a:hover { text-decoration: underline; }
.ftr-note { font-size: 12px; margin-bottom: 8px; }
.ftr-copy { font-size: 12px; color: #8fa2b5; }

/* ≥760px */
@media (min-width: 760px) {
  .nav { display: flex; }
  .hero-in { grid-template-columns: 1.15fr .85fr; align-items: center; padding: 56px 20px 64px; }
  .hero-copy h1 { font-size: 40px; }
  .hero-cta { display: none; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1.4fr .6fr; }
  .btn-lg { width: auto; }
  .form-card .btn-lg { width: 100%; }
}

/* mobile sticky CTA */
@media (max-width: 759px) {
  .hero-form { order: 2; }
  .hero-copy { order: 1; }
}
