:root {
  --blue-950: #07182e;
  --blue-900: #09295c;
  --blue-800: #0d3f8c;
  --blue-100: #eaf2ff;
  --green-700: #0d8d38;
  --green-600: #15ad48;
  --green-100: #e8f8ed;
  --ink: #07182e;
  --muted: #4b5e7b;
  --line: #d8e2ef;
  --paper: #f6f9fc;
  --white: #ffffff;
  --amber: #f6b84b;
  --shadow: 0 18px 44px rgba(7, 24, 46, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.top-brand {
  padding: 22px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.top-brand .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.top-brand img { width: 40px; height: 40px; object-fit: contain; }

.top-brand span {
  font-size: 1.05rem;
  font-weight: 900;
}

.container {
  width: min(640px, calc(100% - 32px));
  margin-inline: auto;
}

.precheck-wrap {
  padding: 48px 0 64px;
}

.precheck-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 12px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

h1 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1.15;
  color: var(--blue-950);
}

.lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: .88rem;
  font-weight: 800;
  color: var(--blue-950);
}

.field { margin-bottom: 18px; }

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .98rem;
  font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}

input:focus {
  outline: none;
  border-color: var(--blue-800);
  box-shadow: 0 0 0 3px rgba(13, 63, 140, .12);
}

.hint {
  margin-top: 6px;
  color: var(--muted);
  font-size: .82rem;
}

.button {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--green-700);
  border: 0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.button:hover { background: #08752e; transform: translateY(-1px); }

.privacy-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
}

.trust-row svg { width: 16px; height: 16px; color: var(--green-700); }

.site-footer-mini {
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}

@media (max-width: 480px) {
  .precheck-card { padding: 24px; }
  h1 { font-size: 1.4rem; }
}

.price-line{
  margin: 0 0 14px;
  text-align: center;
  font-size: 1.02rem;
  color: #1F3864;
}
