:root {
  --bg: #ffffff;
  --ink: #111514;
  --muted: #5f6864;
  --line: #dfe6e2;
  --soft: #f5f8f6;
  --accent: #08773e;
  --accent-dark: #055d30;
  --shadow: 0 24px 70px rgba(18, 30, 25, 0.11);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(17, 21, 20, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 760;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
  color: #2e3532;
  font-size: 14px;
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 88px) 72px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 6.2vw, 84px);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 26px rgba(8, 119, 62, 0.2);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: #b9c8c0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  color: #38413d;
  font-size: 14px;
}

.hero-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  background: #fbfcfb;
}

.hero-visual {
  border: 1px solid rgba(17, 21, 20, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #f9fbfa;
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 78px clamp(18px, 5vw, 88px);
}

.section-muted {
  background: var(--soft);
  border-block: 1px solid rgba(17, 21, 20, 0.07);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 660px;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.section-heading p,
.split p,
.form-copy p {
  margin-top: 16px;
  font-size: 18px;
}

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

.pain-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: white;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.work-list div {
  min-height: 116px;
  padding: 22px;
  background: white;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

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

.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 700;
}

.steps span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 14px;
}

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

.price-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  align-items: flex-start;
}

.price-card.emphasized {
  border-color: rgba(8, 119, 62, 0.35);
  box-shadow: 0 18px 44px rgba(8, 119, 62, 0.12);
}

.price {
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 820;
  line-height: 1.05;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: white;
  box-shadow: 0 12px 40px rgba(18, 30, 25, 0.08);
}

label {
  display: grid;
  gap: 7px;
  color: #27302c;
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cfd9d4;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  font: inherit;
  font-size: 15px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(8, 119, 62, 0.15);
}

.form-status {
  min-height: 24px;
  font-size: 14px;
}

.form-status.error {
  color: #9a2b22;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 780px;
  }

  .pain-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions,
  .hero-actions .button,
  .site-footer {
    width: 100%;
  }

  .pain-grid,
  .pricing-grid,
  .work-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
