:root {
  --bg1: #071a2f;
  --bg2: #10345d;
  --card: rgba(255, 255, 255, 0.96);
  --text: #152033;
  --muted: #5b6880;
  --line: #dce4f0;
  --accent: #d5a11e;
  --accent-dark: #ad7f0d;
  --success: #0c7a43;
  --shadow: 0 20px 60px rgba(2, 13, 29, 0.25);
  --radius: 22px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.1), transparent 30%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
  min-height: 100vh;
}
.app-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}
.hero {
  color: white;
  margin-bottom: 20px;
}
.hero__badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe39a;
  margin-bottom: 8px;
}
.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
}
.hero__sub {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.hero__note {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.9rem;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.progress {
  margin-bottom: 26px;
}
.progress__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.progress__bar {
  width: 100%;
  height: 10px;
  background: #edf2f8;
  border-radius: 999px;
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #e0b138, var(--accent));
  border-radius: 999px;
  transition: width 0.25s ease;
}
.screen-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
}
.screen-subtitle {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}
.option-grid {
  display: grid;
  gap: 14px;
}
.option-btn,
.button,
.link-button {
  appearance: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
.option-btn {
  width: 100%;
  text-align: left;
  padding: 18px 18px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
.option-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(213,161,30,0.65);
  box-shadow: 0 10px 24px rgba(16, 52, 93, 0.08);
}
.option-btn__label {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.option-btn__desc {
  color: var(--muted);
  font-size: 0.95rem;
}
.actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
}
.button--primary {
  background: var(--accent);
  color: #182033;
}
.button--primary:hover { background: #e0ad2d; }
.button--secondary {
  background: #eef3f9;
  color: #21314f;
}
.button--ghost {
  background: white;
  color: #21314f;
  border: 1px solid var(--line);
}
.summary-list,
.results-list,
.bullet-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.result-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fbfdff;
}
.result-card--primary {
  border-color: rgba(213,161,30,0.55);
  box-shadow: 0 10px 24px rgba(213,161,30,0.12);
}
.result-card__tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4fb;
  color: #2a4369;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.result-card__tag--primary {
  background: #fff5d8;
  color: #7e5d09;
}
.result-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}
.result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.contact-box {
  border: 1px solid var(--line);
  background: #f8fbff;
  border-radius: 18px;
  padding: 18px;
  margin-top: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
.label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.input,
.select,
.textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font: inherit;
  color: var(--text);
  background: white;
}
.textarea { min-height: 110px; resize: vertical; }
.notice {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f5f8fc;
  color: var(--muted);
  margin: 16px 0 0;
  line-height: 1.6;
}
.notice--success {
  background: #ecf9f1;
  color: var(--success);
}
.footer {
  margin-top: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .card { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
}
