:root {
  --green: #36aa42;
  --green-dark: #174635;
  --green-mid: #25753e;
  --green-soft: #e8f8ea;
  --text: #172033;
  --muted: #526075;
  --line: #dde8e1;
  --bg: #f6faf7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

.bg-light { 
  background: var(--bg); 
}

.bg-white { 
  background: #ffffff; 
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-mid);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading h2 span {
  color: var(--green);
}

.lead-text {
  max-width: 860px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 20px 42px rgba(54,170,66,0.25);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--green-mid);
  box-shadow: 0 24px 48px rgba(54,170,66,0.35);
}

.btn.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}

.btn.secondary:hover {
  border-color: var(--green);
  color: var(--green);
}
