* {
  box-sizing: border-box;
}

:root {
  color: #17211f;
  background: #f7fbf8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  color: #17211f;
  background: #f7fbf8;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #dce9e1;
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #4c615b;
  font-size: 0.95rem;
}

.links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: #126c51;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: #fff;
  color: #126c51;
  border: 1px solid #b7d6c8;
}

.hero {
  padding: 72px 0 54px;
  background: linear-gradient(180deg, #eef8f2 0%, #f7fbf8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #126c51;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

p {
  margin: 0;
  color: #4c615b;
  line-height: 1.7;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  font-size: 1.13rem;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(18, 70, 57, 0.16);
}

.section {
  padding: 56px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  min-height: 142px;
  padding: 24px;
  border: 1px solid #dce9e1;
  border-radius: 8px;
  background: #fff;
}

.list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 16px 18px;
  border-left: 4px solid #126c51;
  background: #fff;
  color: #2f433d;
}

.band {
  background: #173a31;
  color: #fff;
}

.band p,
.band .eyebrow {
  color: #d8eee4;
}

.band .button.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #c9ddd4;
  border-radius: 8px;
  font: inherit;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid #dce9e1;
  background: #fff;
  color: #5c6d68;
}

@media (max-width: 760px) {
  .nav,
  .links,
  .hero-actions,
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
