:root {
  --navy: #14233c;
  --ink: #1d2433;
  --muted: #5b6475;
  --line: #e3e6ec;
  --bg: #ffffff;
  --soft: #f5f6f9;
  --accent: #a8842c;
  --maxw: 1040px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
a { color: var(--navy); }
a:hover { color: var(--accent); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
header.site { border-bottom: 1px solid var(--line); background: #fff; }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; flex-wrap: wrap; }
.brand { font-weight: 700; letter-spacing: .14em; color: var(--navy); text-decoration: none; font-size: 20px; }
.brand span { color: var(--accent); }
nav.main { display: flex; gap: 22px; flex-wrap: wrap; }
nav.main a { text-decoration: none; color: var(--ink); font-size: 15px; }
nav.main a:hover { color: var(--accent); }

/* Hero */
.hero { background: var(--navy); color: #fff; padding: 72px 0 64px; }
.hero h1 { font-size: clamp(28px, 4.2vw, 42px); line-height: 1.2; margin: 0 0 18px; font-weight: 700; max-width: 780px; }
.hero p { font-size: 18px; color: #d6dbe6; max-width: 680px; margin: 0 0 28px; }
.btn { display: inline-block; background: var(--accent); color: #fff; text-decoration: none; padding: 12px 22px; border-radius: 4px; font-weight: 600; }
.btn:hover { color: #fff; filter: brightness(1.08); }

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--soft); }
h2 { font-size: 28px; color: var(--navy); margin: 0 0 10px; }
.lead { color: var(--muted); margin: 0 0 32px; max-width: 720px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 26px; }
.card h3 { margin: 0 0 10px; color: var(--navy); font-size: 19px; }
.card ul { margin: 10px 0 0; padding-left: 18px; }
.card li { margin: 4px 0; }

/* Pricing table */
table.prices { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); }
table.prices th, table.prices td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.prices th { background: var(--navy); color: #fff; font-weight: 600; font-size: 15px; }
table.prices td.price { white-space: nowrap; font-weight: 700; color: var(--navy); }
table.prices tr:last-child td { border-bottom: 0; }
.note { font-size: 14px; color: var(--muted); margin-top: 14px; }
.terms { margin-top: 28px; }
.terms h3 { color: var(--navy); font-size: 18px; margin: 0 0 8px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.contact-grid .card p { margin: 4px 0; }
.label { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }

/* Legal pages */
.doc { padding: 48px 0 72px; }
.doc .wrap { max-width: 800px; }
.doc h1 { color: var(--navy); font-size: 32px; margin: 0 0 6px; }
.doc .updated { color: var(--muted); font-size: 14px; margin: 0 0 32px; }
.doc h2 { font-size: 21px; margin: 34px 0 8px; }
.doc p, .doc li { color: var(--ink); }
.doc dl { display: grid; grid-template-columns: 220px 1fr; gap: 6px 18px; margin: 0; }
.doc dt { color: var(--muted); }
.doc dd { margin: 0; }

/* Footer */
footer.site { background: var(--navy); color: #c9cfdb; font-size: 14px; padding: 36px 0; }
footer.site a { color: #fff; }
footer.site .legal-line { margin: 0 0 12px; }
footer.site nav { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .hero { padding: 52px 0 46px; }
  section { padding: 48px 0; }
  table.prices th:nth-child(2), table.prices td:nth-child(2) { display: none; }
  .doc dl { grid-template-columns: 1fr; }
  .doc dt { margin-top: 10px; }
}

/* v2 */
.hero .kicker { text-transform: uppercase; letter-spacing: .14em; font-size: 13px; color: var(--accent); margin: 0 0 14px; font-weight: 600; }
.card.feature { border-top: 3px solid var(--accent); }
.card .tag { display:inline-block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.creds { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.cred { border-left: 3px solid var(--accent); padding: 4px 0 4px 16px; }
.cred strong { display: block; font-size: 26px; color: var(--navy); line-height: 1.2; }
.cred span { color: var(--muted); font-size: 15px; }
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 24px; }
.step::before { counter-increment: s; content: counter(s); display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; margin-bottom: 12px; }
.step h3 { margin: 0 0 6px; color: var(--navy); font-size: 17px; }
.step p { margin: 0; color: var(--ink); }
