:root {
  --bg: #f6f8f5;
  --ink: #102016;
  --muted: #526358;
  --brand: #28583d;
  --brand-dark: #173724;
  --accent: #d88b29;
  --card: #ffffff;
  --line: #dfe7dd;
  --soft: #edf4ea;
  --danger: #7a2e19;
  --shadow: 0 18px 45px rgba(20, 50, 32, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar { background: var(--brand-dark); color: white; font-size: 0.92rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 18px; padding: 9px 0; flex-wrap: wrap; }
.topbar a { color: white; font-weight: 700; text-decoration: none; }
header { background: rgba(246,248,245,.92); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 18px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; letter-spacing: -0.04em; }
.logo-mark { width: 42px; height: 42px; display: grid; place-items: center; background: var(--brand); color: white; border-radius: 12px; font-size: .72rem; letter-spacing: .04em; box-shadow: var(--shadow); }
.nav-links { display: flex; gap: 18px; align-items: center; font-weight: 700; color: var(--muted); font-size: .94rem; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--brand); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 18px; border-radius: 999px; border: 2px solid transparent; text-decoration: none; font-weight: 900; cursor: pointer; line-height: 1; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #1e1204; }
.btn-primary:hover { filter: brightness(.96); }
.btn-dark { background: var(--brand); color: white; }
.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 80% 20%, rgba(216,139,41,.22), transparent 35%), linear-gradient(135deg, #ecf5e8, #f9f5ed); }
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center; padding: 58px 0 50px; }
.eyebrow { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: #dbead6; color: var(--brand-dark); font-weight: 900; font-size: .86rem; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 16px; letter-spacing: -0.045em; }
h1 { font-size: clamp(2.25rem, 5vw, 4.65rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 3rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 16px; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 720px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 20px; }
.trust-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 24px; }
.trust-row div { background: rgba(255,255,255,.76); border: 1px solid var(--line); border-radius: 16px; padding: 13px; font-weight: 800; font-size: .93rem; }
.hero-card { background: var(--card); border: 1px solid var(--line); border-radius: 28px; padding: 24px; box-shadow: var(--shadow); }
.hero-card .badge { background: var(--soft); color: var(--brand); display: inline-block; padding: 6px 10px; border-radius: 10px; font-weight: 900; margin-bottom: 12px; }
.quote-box { background: var(--brand-dark); color: white; padding: 24px; border-radius: 24px; margin-top: 18px; }
.quote-box p { color: rgba(255,255,255,.84); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: block; font-weight: 800; font-size: .9rem; margin-bottom: 6px; }
input, select, textarea { width: 100%; padding: 13px 12px; border: 1px solid #cdd8ca; border-radius: 14px; font: inherit; background: white; color: var(--ink); }
textarea { min-height: 110px; resize: vertical; }
.full { grid-column: 1 / -1; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .78rem; color: var(--muted); margin: 0; }
.form-status { font-size: .88rem; font-weight: 800; margin: 0; }
.form-status-error { color: var(--danger); }
.btn:disabled { cursor: wait; opacity: .65; }
.small { font-size: .86rem; color: var(--muted); }
section { padding: 66px 0; }
.section-soft { background: var(--soft); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 10px 30px rgba(16,32,22,.06); }
.card strong { color: var(--brand-dark); }
.list-check { padding: 0; list-style: none; margin: 18px 0 0; }
.list-check li { margin: 10px 0; padding-left: 30px; position: relative; }
.list-check li:before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 900; }
.cost-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; background: white; border: 1px solid var(--line); }
.cost-table th, .cost-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.cost-table th { background: var(--brand); color: white; }
.cost-table tr:last-child td { border-bottom: 0; }
.kicker { color: var(--brand); font-weight: 900; text-transform: uppercase; font-size: .8rem; letter-spacing: .08em; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.area-tags span { padding: 9px 12px; border: 1px solid var(--line); background: white; border-radius: 999px; font-weight: 800; color: var(--muted); }
.faq details { background: white; border: 1px solid var(--line); border-radius: 18px; margin: 12px 0; padding: 18px; }
.faq summary { cursor: pointer; font-weight: 900; }
.faq p { margin-top: 12px; color: var(--muted); }
.cta { background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: white; border-radius: 34px; padding: 38px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.cta p { color: rgba(255,255,255,.82); }
.breadcrumbs { font-size: .88rem; color: var(--muted); padding-top: 22px; }
.breadcrumbs a { color: var(--brand); font-weight: 800; text-decoration: none; }
.page-hero { padding: 42px 0 30px; }
.content-narrow { max-width: 780px; }
.link-card { display: block; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.link-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.steps { counter-reset: step; list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps li { counter-increment: step; background: white; border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
.steps li:before { content: counter(step); display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 12px; border-radius: 50%; background: var(--brand); color: white; font-weight: 900; }
footer { background: #0d1b12; color: white; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 24px; }
footer a { color: rgba(255,255,255,.88); text-decoration: none; display: block; margin: 7px 0; }
.disclaimer { background: #fff7ed; color: #4b2a0b; border: 1px solid #f2d5ad; border-radius: 18px; padding: 15px; font-size: .92rem; }
.sticky-call { display: none; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 100; }
[hidden] { display: none !important; }
@media (max-width: 860px) {
  .hero .container, .grid-3, .grid-2, .footer-grid, .cta, .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav > .btn { padding: 11px 13px; font-size: .82rem; }
  .hero .container { padding: 42px 0 38px; }
  .trust-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  section { padding: 46px 0; }
  .sticky-call { display: block; }
  .sticky-call .btn { width: 100%; box-shadow: var(--shadow); }
}
