:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17202a;
  background: #f7f4ee;
  font-size: 16px;
}
* { box-sizing: border-box; }
body { margin: 0; background: #f7f4ee; }
a { color: inherit; }
.site-header, .site-footer { max-width: 1160px; margin: 0 auto; padding: 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; }
.brand img { width: 38px; height: 38px; }
.nav { display: flex; flex-wrap: wrap; gap: 14px; color: #59616a; font-size: 14px; }
.nav a { text-decoration: none; }
.hero, .section, .page { max-width: 1160px; margin: 0 auto; padding: 58px 22px; }
.hero { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr); gap: 46px; align-items: center; min-height: 620px; }
h1 { font-size: 64px; line-height: 1; margin: 0 0 20px; letter-spacing: 0; }
h2 { font-size: 36px; line-height: 1.1; margin: 0 0 14px; letter-spacing: 0; }
h3 { margin: 0 0 8px; font-size: 18px; }
p, li { color: #59616a; line-height: 1.65; }
.lead { font-size: 20px; max-width: 620px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { background: #17202a; color: #fff8ed; border-radius: 8px; padding: 12px 16px; text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; min-height: 44px; }
.button.secondary { background: #fffdfa; color: #17202a; border: 1px solid #dfd7ca; }
.preview { width: 100%; border-radius: 24px; box-shadow: 0 24px 70px rgba(23,32,42,.14); }
.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.card { background: #fffdfa; border: 1px solid #dfd7ca; border-radius: 8px; padding: 18px; }
.steps { counter-reset: step; display: grid; gap: 10px; }
.step { counter-increment: step; display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; }
.step::before { content: counter(step); background: #f2a23a; color: #17202a; width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; font-weight: 800; }
.band { background: #17202a; color: #fff8ed; }
.band .section p, .band li { color: #d9cdbd; }
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 320px)); gap: 18px; }
.price { font-size: 42px; color: #17202a; font-weight: 900; }
.page { max-width: 860px; }
.page h1 { font-size: 46px; }
.page nav { background: #fffdfa; border: 1px solid #dfd7ca; border-radius: 8px; padding: 14px; }
.site-footer { border-top: 1px solid #dfd7ca; color: #69717a; align-items: flex-start; }
@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 34px; }
  h1 { font-size: 44px; }
  .grid, .pricing { grid-template-columns: 1fr; }
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
}
