:root {
  --green: #1d9e75;
  --green-d: #0f6e56;
  --green-l: #e1f5ee;
  --ink: #143027;
  --muted: #5b6b64;
  --bg: #f7f6f2;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
a { color: var(--green-d); }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

header.hero {
  text-align: center;
  padding: 56px 20px 44px;
  background: radial-gradient(circle at 50% 32%, #2ec894, var(--green-d));
  color: #eafff7;
}
.hero img { width: 104px; height: 104px; border-radius: 24px; box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.hero h1 { margin: 18px 0 6px; font-size: 34px; letter-spacing: -.5px; }
.hero p { margin: 0 auto; max-width: 520px; font-size: 18px; color: #d7f5ea; }
.cta { margin-top: 26px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 20px; border-radius: 12px; font-weight: 600; text-decoration: none; }
.btn-primary { background: #fff; color: var(--green-d); }
.btn svg { width: 16px; height: 16px; vertical-align: -3px; margin-right: 7px; fill: currentColor; }

section { padding: 36px 0; border-bottom: 1px solid #e7e6e0; }
h2 { font-size: 22px; margin: 0 0 14px; }
.features { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.features li { padding-left: 28px; position: relative; }
.features li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.steps { counter-reset: s; list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.steps li { counter-increment: s; padding-left: 42px; position: relative; }
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: -2px;
  width: 28px; height: 28px; background: var(--green-l); color: var(--green-d);
  border-radius: 50%; text-align: center; line-height: 28px; font-weight: 700;
}
.note { background: var(--green-l); border-radius: 12px; padding: 14px 16px; font-size: 15px; color: var(--green-d); }

footer { text-align: center; padding: 30px 20px 50px; color: var(--muted); font-size: 15px; }
footer a { margin: 0 8px; }

.legal { padding: 40px 0; }
.legal h1 { font-size: 28px; }
.legal h2 { font-size: 19px; margin-top: 30px; }
.legal p, .legal li { color: #2c3d36; }
.legal a.back { display: inline-block; margin-bottom: 22px; }
