:root {
  --ink: #17211b;
  --muted: #617069;
  --line: #dae4dd;
  --soft: #f3f7f1;
  --white: #ffffff;
  --brand: #286b45;
  --brand-strong: #17462d;
  --accent: #c7772e;
  --accent-strong: #99561d;
  --shadow: 0 14px 34px rgba(23, 33, 27, 0.12);
  --radius: 8px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--white);
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}
.brand { display: grid; text-decoration: none; }
.brand strong { font-size: 18px; }
.brand span { color: var(--muted); font-size: 13px; }
.nav-links { display: flex; align-items: center; gap: 18px; font-size: 14px; }
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.button, button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--accent);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(199,119,46,.2);
}
.button:hover, button:hover { background: var(--accent-strong); }
.button.secondary { background: var(--brand); box-shadow: 0 8px 18px rgba(40,107,69,.2); }
.button.secondary:hover { background: var(--brand-strong); }
.button.ghost { color: var(--brand-strong); background: var(--white); border: 1px solid var(--line); box-shadow: none; }
.hero {
  min-height: 640px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13,35,24,.88), rgba(13,35,24,.54), rgba(13,35,24,.16)),
    url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1800&q=80") center / cover;
}
.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 76px 20px 64px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #d7ecd8;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .98;
}
.hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #eef7ef;
  font-size: 19px;
}
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 14px; color: #dcebdd; font-size: 13px; }
.section { padding: 76px 20px; }
.section.soft { background: var(--soft); }
.wrap { max-width: var(--max); margin: 0 auto; }
.split {
  display: grid;
  grid-template-columns: minmax(0,1fr) 380px;
  gap: 44px;
  align-items: start;
}
h1, h2, h3 { letter-spacing: 0; }
.section h2 { margin: 0 0 18px; font-size: clamp(28px,4vw,42px); line-height: 1.08; }
.section h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.18; }
.lead { max-width: 800px; color: var(--muted); font-size: 18px; }
.grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 30px; }
.grid.two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(23,33,27,.04);
}
.card p { margin: 0; color: var(--muted); }
.list { display: grid; gap: 12px; padding: 0; margin: 22px 0 0; list-style: none; }
.list li { position: relative; padding-left: 28px; color: var(--muted); }
.list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); }
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.form-panel h2 { margin-top: 0; font-size: 24px; }
form { display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-weight: 800; font-size: 14px; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
textarea { min-height: 108px; resize: vertical; }
.check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-weight: 500; }
.check input { width: 18px; min-height: 18px; margin-top: 3px; }
.notice { margin-top: 12px; color: var(--muted); font-size: 13px; }
.steps { counter-reset: step; display: grid; gap: 14px; margin-top: 24px; }
.step { counter-increment: step; display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.step::before { content: counter(step); width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--white); background: var(--brand); font-weight: 900; }
.faq { display: grid; gap: 12px; margin-top: 24px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; background: var(--white); }
.faq summary { cursor: pointer; font-weight: 900; }
.faq p { color: var(--muted); }
.mini-hero { background: var(--brand-strong); color: var(--white); padding: 72px 20px; }
.mini-hero h1 { max-width: 850px; margin: 0; font-size: clamp(34px,5vw,58px); line-height: 1; }
.mini-hero p { max-width: 760px; margin: 12px 0 0; color: #e2f1e3; font-size: 18px; }
.site-footer { padding: 42px 20px 92px; color: #dcebdd; background: #122a1d; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-inner a { color: #dcebdd; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 25; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.sticky-cta a { min-height: 58px; display: grid; place-items: center; color: var(--white); background: var(--brand); text-decoration: none; font-weight: 900; }
.sticky-cta a:last-child { background: var(--accent); }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero { min-height: 600px; }
  .split, .grid, .grid.two { grid-template-columns: 1fr; }
  .section { padding: 58px 18px; }
  .sticky-cta { display: grid; }
}
