:root {
  --bg: #f6f5f1;
  --card: #ffffff;
  --text: #25302d;
  --muted: #64716c;
  --line: #d8ddd9;
  --accent: #49635b;
  --accent-strong: #324841;
  --accent-soft: #e8eeeb;
  --lane-blue: #808A99;
  --lane-blue-strong: #727c8b;
  --shadow: 0 14px 40px rgba(37, 48, 45, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 760px;
}

* { box-sizing: border-box; }
html { font-size: 16px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--accent-strong); }
img { max-width: 100%; display: block; }

.page {
  min-height: 100vh;
  padding: 28px 18px 40px;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: flex;
  justify-content: center;
  margin: 8px 0 22px;
}

.brand img {
  width: min(240px, 72vw);
  height: auto;
}

.card {
  background: var(--card);
  border: 1px solid rgba(73, 99, 91, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  margin: 28px 0 10px;
  font-size: 1.1rem;
}

.lead {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.04rem;
}

.trust {
  margin: 16px 0 8px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: #f8faf9;
  border: 1px solid var(--line);
}

.trust strong { color: var(--accent-strong); }
.muted { color: var(--muted); }
.small { font-size: 0.95rem; }
.subtle-link { margin-top: 10px; text-align: center; }

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 600;
  font-size: 0.96rem;
}

.helper {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: -2px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(73, 99, 91, 0.12);
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.checklist {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.checkitem {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fcfcfb;
}

.checkitem input[type="checkbox"],
.checkitem input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

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

.button,
button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 20px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.button:hover,
button:hover { background: var(--accent-strong); }
.button:active,
button:active { transform: translateY(1px); }

.button.alt {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid rgba(73, 99, 91, 0.22);
}

.button.single-lane,
.hero-link.single-lane {
  background: rgba(128, 138, 153, 0.18);
  border-color: rgba(128, 138, 153, 0.5);
}

.hero-link.single-lane:hover,
.hero-link.single-lane:focus {
  background: rgba(128, 138, 153, 0.28);
  border-color: rgba(128, 138, 153, 0.72);
  box-shadow: 0 10px 22px rgba(128, 138, 153, 0.16);
  transform: translateY(-1px);
}

button.single-lane,
.button.single-lane.cta {
  background: var(--lane-blue);
  color: #fff;
}

button.single-lane:hover,
.button.single-lane.cta:hover {
  background: var(--lane-blue-strong);
}

.note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #faf9f6;
  border: 1px dashed rgba(73, 99, 91, 0.24);
  color: var(--muted);
}

.footer {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer p {
  margin: 6px 0;
}

.hero-links {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.hero-link {
  display: block;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: inherit;
}

.hero-link strong {
  color: var(--accent-strong);
  display: block;
  margin-bottom: 4px;
}

.hidden {
  display: none !important;
}

@media (max-width: 700px) {
  .card { padding: 22px 18px; }
  .grid.two { grid-template-columns: 1fr; }
}

.hero-link.hero-cta {
  justify-self: center;
  width: auto;
  min-width: 280px;
  max-width: 100%;
  text-align: center;
  background: rgba(128, 138, 153, 0.16);
  color: var(--text);
  border: 1px solid rgba(128, 138, 153, 0.8);
  box-shadow: 0 6px 16px rgba(128, 138, 153, 0.10);
  padding: 15px 28px;
  border-radius: 999px;
}

.hero-link.hero-cta strong {
  display: block;
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.hero-link.hero-cta:hover,
.hero-link.hero-cta:focus {
  background: rgba(128, 138, 153, 0.24);
  border-color: var(--lane-blue);
  box-shadow: 0 8px 18px rgba(128, 138, 153, 0.14);
  transform: translateY(-1px);
}
