:root { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #16232e; background: #f6f8f5; }
* { box-sizing: border-box; }
body { margin: 0; background: #f6f8f5; }
a { color: inherit; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1180px; margin: 0 auto; padding: 18px 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; text-decoration: none; }
.brand img { width: 38px; height: 38px; }
nav { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; color: #4e5f57; }
nav a { text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 54px 24px; }
.hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 54px; align-items: center; min-height: calc(100vh - 180px); }
h1 { margin: 0; font-size: clamp(44px, 7vw, 82px); line-height: .95; letter-spacing: 0; }
h2 { font-size: clamp(28px, 4vw, 46px); margin: 0 0 18px; letter-spacing: 0; }
h3 { margin: 0 0 8px; font-size: 20px; }
p { color: #506058; font-size: 18px; line-height: 1.7; }
.hero p { font-size: 22px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; border-radius: 8px; padding: 10px 16px; background: #102238; color: #fffaf0; text-decoration: none; font-weight: 750; }
.button.secondary { background: #fff; color: #102238; border: 1px solid #dce5de; }
.preview { width: 100%; border-radius: 24px; box-shadow: 0 24px 70px rgba(16,34,56,.14); border: 1px solid #dce5de; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature, .price, .note { background: #fff; border: 1px solid #dce5de; border-radius: 8px; padding: 20px; }
.steps { counter-reset: step; display: grid; gap: 12px; }
.steps li { list-style: none; background: #fff; border: 1px solid #dce5de; border-radius: 8px; padding: 18px; }
.steps li::before { counter-increment: step; content: counter(step); display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #f4c95d; margin-right: 10px; font-weight: 850; }
.band { background: #102238; color: #fffaf0; }
.band p, .band li { color: #d9e7dc; }
.legal main { max-width: 860px; }
.legal h1 { font-size: clamp(38px, 5vw, 64px); }
.legal li { color: #506058; line-height: 1.7; margin: 8px 0; }
.site-footer { border-top: 1px solid #dce5de; padding: 28px 24px; color: #66756e; }
.site-footer div { max-width: 1180px; margin: 0 auto; display: flex; gap: 14px; flex-wrap: wrap; justify-content: space-between; }
@media (max-width: 820px) {
  .site-header { display: grid; }
  .hero, .grid { grid-template-columns: 1fr; }
  .wrap { padding: 38px 18px; }
  .hero { min-height: auto; }
}
