:root {
  --green: #00b86b;
  --blue: #1e73ff;
  --yellow: #ffc233;
  --ink: #10202b;
  --muted: #5c6b7a;
  --line: #e6ebf2;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink); background: #fff; line-height: 1.55;
}
a { text-decoration: none; }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; max-width: 1040px; margin: 0 auto;
}
.brand { font-weight: 900; color: var(--green); font-size: 18px; }
.nav-cta { color: var(--blue); font-weight: 800; font-size: 14px; }

.hero {
  max-width: 780px; margin: 0 auto; padding: 30px 20px 40px; text-align: center;
}
.pill {
  display: inline-block; background: #e5f8ef; color: var(--green);
  font-weight: 800; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.hero h1 { font-size: 38px; line-height: 1.12; margin: 0 0 14px; letter-spacing: -.5px; }
.hl { color: var(--green); }
.lead { font-size: 18px; color: var(--muted); margin: 0 auto 24px; max-width: 620px; }

.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-row.center { margin-top: 20px; }
.btn {
  display: inline-block; background: var(--green); color: #fff; font-weight: 800;
  padding: 12px 22px; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,184,107,.25);
}
.btn.big { font-size: 17px; padding: 16px 26px; }
.btn.ghost { background: #fff; color: var(--blue); border: 2px solid var(--line); box-shadow: none; }
.mini { color: var(--muted); font-size: 13px; margin-top: 14px; }

.section { max-width: 1040px; margin: 0 auto; padding: 40px 20px; }
.section h2 { text-align: center; font-size: 28px; margin: 0 0 26px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px;
  box-shadow: 0 6px 18px rgba(20,40,80,.05); text-align: center;
}
.feat .ico { font-size: 34px; }
.feat h3 { margin: 10px 0 6px; font-size: 18px; }
.feat p { color: var(--muted); margin: 0; }

.band { background: #f4f7fb; max-width: none; }
.band > * { max-width: 1040px; margin-left: auto; margin-right: auto; }
.checks { list-style: none; padding: 0; max-width: 560px; margin: 0 auto; }
.checks li {
  position: relative; padding: 12px 12px 12px 44px; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; margin-bottom: 10px; font-size: 16px;
}
.checks li::before {
  content: '✓'; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; background: var(--green); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px;
}

.foot { text-align: center; padding: 40px 20px; color: var(--muted); }
.foot .brand { margin-bottom: 6px; }
.foot .legal { font-size: 12px; opacity: .8; max-width: 520px; margin: 12px auto 0; }

@media (max-width: 560px) {
  .hero h1 { font-size: 30px; }
  .btn.big { width: 100%; }
}
