:root {
  --accent: #0b6e4f;
  --accent-dark: #085a40;
  --ink: #1a1a1a;
  --muted: #555;
  --bg-alt: #f4f7f6;
  --radius: 10px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  padding-bottom: 70px;
}
.wrap { max-width: 960px; margin: 0 auto; padding: 0 20px; }
a { color: var(--accent); }

.site-header { border-bottom: 1px solid #e3e3e3; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.brand { font-size: 1.25rem; font-weight: 800; color: var(--ink); text-decoration: none; }
.site-nav { display: flex; flex-wrap: wrap; gap: 4px 18px; padding: 8px 20px 12px; font-size: .95rem; }
.site-nav a { text-decoration: none; color: var(--muted); }
.site-nav a:hover { color: var(--accent); }

.call-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
}
.call-btn:hover { background: var(--accent-dark); }
.call-btn.big { font-size: 1.15rem; padding: 14px 26px; margin: 14px 0; }

.hero { background: var(--bg-alt); padding: 56px 0; text-align: center; }
.hero.small { padding: 36px 0; }
.hero h1 { font-size: 2.1rem; margin-bottom: 10px; }
.hero .sub { max-width: 640px; margin: 0 auto 8px; color: var(--muted); font-size: 1.1rem; }
.trust { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin-top: 14px; }
.trust li { font-weight: 600; }
.trust li::before { content: "\2713  "; color: var(--accent); }

main section { padding: 34px 0; }
main h2 { font-size: 1.5rem; margin-bottom: 14px; }
main h2 + p { margin-bottom: 18px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card {
  border: 1px solid #e3e3e3;
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow .15s;
}
.card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.card h3 { margin-bottom: 6px; color: var(--accent); }
.card .more { color: var(--accent); font-weight: 700; }

.alt { background: var(--bg-alt); }
.alt .wrap { padding-top: 6px; padding-bottom: 6px; }
.alt h2 { margin-top: 18px; }

.cta-band { background: var(--accent); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band a { color: #fff; }
.cta-band .call-btn { background: #fff; color: var(--accent); }

.checklist, .areas { list-style: none; margin: 0 0 22px; }
.checklist li::before { content: "\2713  "; color: var(--accent); font-weight: 700; }
.checklist li, .areas li { padding: 4px 0; }
.areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.steps { margin: 0 0 22px 20px; }
.steps li { margin-bottom: 10px; }

details { border: 1px solid #e3e3e3; border-radius: var(--radius); padding: 12px 16px; margin-bottom: 10px; }
details summary { font-weight: 700; cursor: pointer; }
details p { margin-top: 8px; color: var(--muted); }

.lead-form { max-width: 520px; }
.lead-form label { display: block; font-weight: 600; margin-bottom: 14px; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: 10px; margin-top: 4px;
  border: 1px solid #ccc; border-radius: 6px; font: inherit;
}

.site-footer { background: #14201c; color: #cfd8d4; padding: 30px 0; margin-top: 20px; }
.site-footer a { color: #fff; }
.site-footer .fine { font-size: .85rem; opacity: .7; margin-top: 10px; }

.sticky-call {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--accent); color: #fff;
  text-align: center; padding: 14px;
  font-weight: 800; font-size: 1.05rem; text-decoration: none;
  display: none;
}
@media (max-width: 720px) {
  .sticky-call { display: block; }
  .hero h1 { font-size: 1.6rem; }
}
