:root {
  --ink: #1a2332;
  --muted: #5a6675;
  --accent: #1f4e79;
  --bg: #ffffff;
  --rule: #e3e7ec;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
.wrap { max-width: 860px; margin: 0 auto; padding: 0 1.25rem; }
.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 1rem 0;
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}
.wordmark {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  text-decoration: none;
}
.tagline { color: var(--muted); font-size: 0.9rem; margin-left: 0.75rem; }
.hero { padding: 3.5rem 0; }
.hero h1 { font-size: 2rem; line-height: 1.25; margin-bottom: 1.25rem; }
.hook { font-size: 1.1rem; margin-bottom: 1rem; }
.trust { color: var(--muted); margin-bottom: 2rem; }
.notice { font-style: italic; color: var(--muted); }
.cta-form { margin-top: 1rem; font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif; }
.consult-option { display: block; margin-bottom: 1rem; color: var(--ink); }
.cta-button {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
  border-radius: 4px;
  cursor: pointer;
}
.cta-button:hover { background: #17395a; }
.refund-note { color: var(--muted); font-size: 0.85rem; margin-top: 0.75rem; }
.form-section { padding: 2.5rem 0; }
.form-section h1 { font-size: 1.6rem; margin-bottom: 1rem; }
.form-section form { font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif; }
.form-section label { display: block; margin: 1.25rem 0 0.35rem; font-weight: 600; }
.form-section input[type="text"], .form-section textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font: inherit;
  color: var(--ink);
}
.form-section textarea { resize: vertical; }
.form-section input[type="file"] { margin-bottom: 1rem; }
.form-section .cta-button { margin-top: 1.5rem; }
.form-errors {
  background: #fdf2f2;
  border: 1px solid #e8b4b4;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  color: #8a2424;
}
.progress-track {
  width: 100%;
  height: 10px;
  background: var(--rule);
  border-radius: 5px;
  overflow: hidden;
  margin: 1.5rem 0;
}
.progress-fill {
  height: 100%;
  width: 5%;
  background: var(--accent);
  border-radius: 5px;
  transition: width 1s ease;
}
.hidden { display: none; }
.save-notice { margin-top: 1rem; }
.site-footer {
  border-top: 1px solid var(--rule);
  margin-top: 3rem;
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}
.fineprint { margin-top: 0.5rem; }
@media (max-width: 600px) {
  .hero h1 { font-size: 1.5rem; }
  .tagline { display: block; margin-left: 0; }
}
