:root {
  --bg: #f4f1ea;
  --bg-card: #fffdf8;
  --ink: #16181d;
  --muted: #5c6370;
  --line: #ddd6c8;
  --accent: #1f4dd8;
  --accent-ink: #fff;
  --footer: #12141a;
  --radius: 18px;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "PT Root UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: var(--accent);
}

img {
  max-width: 100%;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  font-weight: 750;
  letter-spacing: -0.03em;
  font-size: 20px;
  color: inherit;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 650;
  border: 0;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  padding: 28px 0 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.kicker {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(34px, 6vw, 56px);
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.panel h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.meta {
  list-style: none;
  margin: 0;
  padding: 0;
}

.meta li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.meta li:last-child {
  border-bottom: 0;
}

.meta span {
  color: var(--muted);
}

section {
  padding: 28px 0;
}

.section-title {
  font-size: 28px;
  margin: 0 0 8px;
}

.section-note {
  color: var(--muted);
  margin: 0 0 20px;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

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

.card p,
.legal p,
.legal li {
  color: var(--ink);
}

.price {
  font-size: 32px;
  font-weight: 750;
  letter-spacing: -0.04em;
  margin: 8px 0 12px;
}

.price small {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

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

.step-num {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.legal {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.legal h1 {
  font-size: 34px;
}

.legal h2 {
  font-size: 20px;
  margin-top: 28px;
}

.legal .muted {
  color: var(--muted);
}

.faq details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 8px;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
}

.site-footer {
  margin-top: 40px;
  background: var(--footer);
  color: #ece8df;
  padding: 36px 0 24px;
}

.site-footer a {
  color: #d7e2ff;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #b7b3aa;
  font-weight: 600;
}

.site-footer p,
.site-footer li {
  color: #d8d4cb;
  font-size: 14px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 6px 0;
}

.copy {
  margin-top: 24px;
  border-top: 1px solid #2a2d36;
  padding-top: 16px;
  font-size: 13px;
  color: #9a958b;
}

.replace {
  background: #fff3c4;
  color: #5a4700;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .hero-grid,
  .cards,
  .steps,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }
}
