:root {
  --ink: #14211e;
  --muted: #60706b;
  --paper: #ffffff;
  --soft: #f4f7f6;
  --line: #d8e2df;
  --green: #14765b;
  --green-dark: #0f5c47;
  --blue: #1f5f8f;
  --amber: #b66c23;
  --shadow: 0 18px 42px rgba(20, 33, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 0 40px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
  background: var(--soft);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

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

.button.ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button.ghost:hover {
  border-color: var(--green);
  background: #fff;
}

.button.small {
  min-height: 40px;
  padding: 0 14px;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.86fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: #eef4f2;
}

.hero-media {
  order: 2;
  min-height: 560px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-content {
  order: 1;
  align-self: center;
  width: min(720px, 100%);
  padding: 74px 40px 64px max(40px, calc((100vw - 1180px) / 2));
}

.eyebrow,
.plan-label {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: 60px;
  line-height: 1;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: #3c4b47;
  font-size: 20px;
  line-height: 1.55;
}

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

.summary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.summary-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: #34413e;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 82px 40px;
}

.muted {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-head,
.pricing,
.features,
.workflow,
.contact {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-head {
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: 38px;
  line-height: 1.1;
}

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

.plan,
.features article,
.workflow ol li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.plan {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.plan.featured {
  border-color: rgba(20, 118, 91, 0.45);
  box-shadow: var(--shadow);
}

.plan h3 {
  margin: 0 0 10px;
  font-size: 36px;
}

.plan h3 span {
  color: var(--muted);
  font-size: 16px;
}

.plan p:not(.plan-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.plan ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 22px;
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.plan .button {
  margin-top: auto;
}

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

.features article {
  min-height: 170px;
  padding: 24px;
}

.features h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.features p,
.workflow p,
.contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.workflow {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: start;
}

.workflow p {
  max-width: 520px;
  margin-top: 16px;
  font-size: 18px;
}

.workflow ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow li {
  min-height: 130px;
  padding: 22px;
}

.workflow strong,
.workflow span {
  display: block;
}

.workflow strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.workflow span {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 32px;
}

.contact p {
  max-width: 520px;
  margin-top: 16px;
  font-size: 18px;
}

form {
  display: grid;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--soft);
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(20, 118, 91, 0.18);
  border-color: var(--green);
}

.footer {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

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

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: 1;
    min-height: 300px;
  }

  .hero-media img {
    min-height: 300px;
  }

  .hero-content {
    order: 2;
    padding: 44px 22px 54px;
  }

  h1 {
    font-size: 46px;
  }

  .pricing,
  .features,
  .workflow,
  .contact {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 22px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
  }

  .nav a {
    padding: 0 10px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .lead,
  .workflow p,
  .contact p {
    font-size: 17px;
  }

  .workflow ol {
    grid-template-columns: 1fr;
  }

  .plan {
    min-height: auto;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }
}
