:root {
  --bg: #f7f3ed;
  --text: #1f2a24;
  --muted: #5f6b63;
  --card: #ffffff;
  --accent: #2f6f4e;
  --accent-dark: #23533b;
  --line: #ded7cc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 4px 7px;
  border-radius: 8px;
  margin-right: 8px;
}
.nav-links { display: flex; gap: 20px; font-size: 15px; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 24px 70px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 76px); letter-spacing: -0.06em; margin-bottom: 20px; }
h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.04em; margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 10px; }
.lead { font-size: 21px; color: var(--muted); max-width: 680px; }
.hero-actions, .contact-box { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--accent);
}
.button:hover { background: var(--accent-dark); }
.button.secondary { background: transparent; color: var(--accent); }
.button.secondary:hover { background: #e8efe9; }
.hero-card, .card, .quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(31, 42, 36, 0.08);
}
.hero-card ul { padding-left: 20px; margin-bottom: 0; }
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 24px;
}
.muted {
  max-width: none;
  background: #ede7dc;
  padding-left: calc((100% - 1120px) / 2 + 24px);
  padding-right: calc((100% - 1120px) / 2 + 24px);
}
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card p { color: var(--muted); margin-bottom: 0; }
.example {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 700;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.steps div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 800;
  margin-bottom: 18px;
}
.steps p { color: var(--muted); margin-bottom: 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.split p { color: var(--muted); }
.quote-card p {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}
.contact {
  text-align: center;
  max-width: 820px;
}
.contact-box { justify-content: center; }
.small { font-size: 14px; color: var(--muted); }
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
  text-align: center;
  color: var(--muted);
}
@media (max-width: 820px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .hero, .split, .grid.three, .grid.two, .steps { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .nav-links { flex-wrap: wrap; }
}
