:root {
  --green: #0f7a52;
  --deep: #12201a;
  --line: #d9e4dc;
  --muted: #5f6f68;
  --paper: #f7faf6;
  --surface: #ffffff;
  --accent: #d9472f;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--paper);
  color: var(--deep);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

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

.site-header {
  align-items: center;
  background: rgba(247, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.15rem;
  font-weight: 900;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  width: 42px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero {
  display: grid;
  min-height: calc(100vh - 75px);
  position: relative;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(15, 122, 82, 0.88), rgba(18, 32, 26, 0.48)),
    url("https://images.unsplash.com/photo-1559329007-40df8a9345d8?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero-content {
  align-self: center;
  color: #fff;
  max-width: 760px;
  padding: clamp(44px, 8vw, 96px) clamp(18px, 5vw, 72px);
  position: relative;
}

.eyebrow {
  color: #cbe8d9;
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4rem, 13vw, 8rem);
  line-height: 0.9;
  margin: 0 0 22px;
}

.hero p {
  color: #f2fff8;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  margin: 0;
  max-width: 680px;
}

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

.primary-action,
.secondary-action {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}

.primary-action {
  background: #fff;
  color: var(--green);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.section,
.split-section,
.contact-section {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(46px, 8vw, 88px) clamp(18px, 5vw, 32px);
}

.section-heading {
  max-width: 680px;
}

.section-heading .eyebrow,
.split-section .eyebrow,
.contact-section .eyebrow {
  color: var(--green);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  margin: 0 0 18px;
}

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.steps article,
.feature-list div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.steps span {
  align-items: center;
  background: #e4f4eb;
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 34px;
}

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

p,
.feature-list span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.split-section {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.contact-section {
  align-items: stretch;
  background: #e8f4ec;
  border-radius: 8px;
  display: grid;
  gap: clamp(22px, 5vw, 48px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  margin-bottom: 46px;
}

.contact-copy {
  align-self: center;
}

.contact-copy p {
  color: var(--muted);
  margin: 0;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--deep);
  font-weight: 850;
  padding: 12px 14px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 28px);
}

.contact-form label {
  color: var(--deep);
  display: grid;
  font-size: 0.88rem;
  font-weight: 900;
  gap: 7px;
}

.contact-form input,
.contact-form textarea {
  background: #fdfefd;
  border: 1px solid #cbd9d0;
  border-radius: 8px;
  color: var(--deep);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 122, 82, 0.14);
  outline: none;
}

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

.contact-form .primary-action {
  border: 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
}

.contact-form .primary-action:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hidden-field {
  display: none !important;
}

.form-status {
  font-weight: 800;
  margin: 0;
  min-height: 24px;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--accent);
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 20px clamp(18px, 5vw, 72px);
}

footer span:first-child {
  color: var(--deep);
  font-weight: 950;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: calc(100vh - 129px);
  }

  .hero-content {
    align-self: end;
  }

  .steps,
  .split-section {
    grid-template-columns: 1fr;
  }

  .contact-section,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-section,
  .form-grid {
    grid-template-columns: 1fr;
  }
}
