:root {
  color-scheme: light;
  --ink: #17211b;
  --muted: #5d6b63;
  --line: #dce5df;
  --paper: #fbfcf9;
  --soft: #eef5ef;
  --brand: #176b4f;
  --accent: #d64f2a;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}

a {
  color: inherit;
}

.site-header,
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  padding: 26px 0;
}

.brand {
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a,
footer a {
  text-decoration: none;
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 70vh;
  display: grid;
  align-content: center;
  padding: 54px 0 72px;
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0;
}

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

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  color: #ffffff;
  background: var(--brand);
}

.secondary {
  color: var(--brand);
  border: 1px solid var(--brand);
}

.section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.muted {
  display: block;
  background: var(--soft);
  margin-inline: calc((100vw - min(1120px, calc(100vw - 40px))) / -2);
  padding-inline: calc((100vw - min(1120px, calc(100vw - 40px))) / 2);
}

.price-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #ffffff;
}

.price {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.price-note {
  margin: 8px 0 20px;
}

ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

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

article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
}

article span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  font-weight: 800;
}

.small {
  font-size: 14px;
}

.policy {
  max-width: 760px;
  padding: 54px 0 80px;
  border-top: 1px solid var(--line);
}

.policy h1 {
  font-size: 56px;
}

.policy h2 {
  margin-top: 36px;
  font-size: 24px;
}

footer {
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer span {
  margin-right: auto;
}

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

  nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 56px;
  }

  h1 {
    font-size: 44px;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 52px 0;
  }

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