:root {
  --green-900: #1b3a2d;
  --green-700: #2d6a4f;
  --green-100: #e8f5e9;
  --amber-500: #d4a017;
  --text: #1a1a1a;
  --text-muted: #4a5568;
  --bg: #faf9f7;
  --card: #ffffff;
  --radius: 12px;
  --font: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--green-700);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  background: var(--green-900);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.5rem;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-header nav a {
  color: #c8e6d0;
  text-decoration: none;
  font-size: 0.95rem;
}

.site-header nav a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--green-700);
  color: #fff !important;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
}

.hero {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(165deg, var(--green-100) 0%, var(--bg) 55%);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-700);
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--green-900);
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--green-700);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-900);
}

.btn-secondary {
  background: var(--card);
  color: var(--green-900);
  border: 2px solid var(--green-700);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(27, 58, 45, 0.12);
  border: 1px solid rgba(45, 106, 79, 0.15);
}

.status-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.status-green {
  background: #e6f4ea;
  color: #1e6b3a;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0;
}

.metrics dt {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.metrics dd {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0.15rem 0 0;
}

.card-note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: #f0f4f1;
}

.section h2 {
  font-size: 1.65rem;
  color: var(--green-900);
  margin: 0 0 1.75rem;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-grid article {
  background: var(--card);
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--green-900);
}

.feature-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.steps ol {
  margin: 0;
  padding-left: 1.25rem;
  max-width: 40rem;
}

.steps li {
  margin-bottom: 0.75rem;
}

.budget-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
}

.site-footer {
  background: var(--green-900);
  color: #a8c9b4;
  padding: 1.25rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  color: #d4edda;
}
