:root {
  --brand: #0b5fa5;
  --brand-dark: #084a82;
  --accent: #f5a623;
  --ink: #1c2433;
  --muted: #5b6677;
  --bg: #f7f9fc;
  --line: #e2e8f0;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}
a { color: var(--brand); }
.container { max-width: 1040px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: #fff; z-index: 10;
}
.brand { font-weight: 800; font-size: 1.2rem; color: var(--brand); text-decoration: none; }
.brand span { color: var(--accent); }
.call-btn {
  background: var(--accent); color: #1c2433; text-decoration: none;
  padding: 10px 18px; border-radius: 8px; font-weight: 700; white-space: nowrap;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; padding: 64px 0;
}
.hero h1 { font-size: 2.1rem; margin: 0 0 12px; }
.hero p { font-size: 1.1rem; max-width: 640px; opacity: .95; }
.hero .actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #1c2433; text-decoration: none;
  padding: 14px 26px; border-radius: 8px; font-weight: 700;
}
.btn-ghost {
  border: 2px solid rgba(255,255,255,.7); color: #fff; text-decoration: none;
  padding: 12px 24px; border-radius: 8px; font-weight: 600;
}

/* Sections */
section { padding: 48px 0; }
h2 { font-size: 1.6rem; margin-top: 0; }
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  border: 1px solid var(--line); border-radius: 12px; padding: 22px;
  background: var(--bg);
}
.card h3 { margin: 0 0 8px; }
.muted { color: var(--muted); }
.badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 16px; }
.badge {
  background: var(--bg); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px; font-size: .9rem; font-weight: 600;
}
.info-row { display: flex; gap: 32px; flex-wrap: wrap; }
.info-row > div { flex: 1; min-width: 220px; }

/* CTA band */
.cta-band {
  background: var(--ink); color: #fff; text-align: center; padding: 48px 20px;
}
.cta-band h2 { color: #fff; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted);
  font-size: .9rem;
}
.site-footer a { color: var(--muted); }
ul.checks { list-style: none; padding: 0; }
ul.checks li { padding-left: 26px; position: relative; margin-bottom: 8px; }
ul.checks li::before {
  content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800;
}
