:root {
  --indigo: #3c3a78;
  --orange: #ff6700;
  --bg: #fafafa;
  --card-bg: #ffffff;
  --text: #1a1a1a;
  --text-dim: #5c5c5c;
  --border: #e3e3e8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--indigo);
}

.wrap {
  max-width: 640px;
  width: 100%;
  position: relative;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(60, 58, 120, 0.08);
}

.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width 0.3s ease;
}

.screen {
  display: none;
  animation: fadeIn 0.35s ease;
}

.screen.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.headline {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 20px 0;
  color: var(--indigo);
}

.question-headline {
  font-size: 24px;
}

.body-text {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-line;
  margin-bottom: 20px;
}

.quote {
  font-style: italic;
  color: var(--indigo);
  font-size: 15px;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin-bottom: 28px;
}

.sub-text {
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 16px;
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choice-btn {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.choice-btn:hover {
  border-color: var(--orange);
  background: #fff6ef;
}

.choice-btn.selected {
  border-color: var(--orange);
  background: #fff6ef;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  font-family: 'Montserrat', sans-serif;
}

.contact-form input {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--orange);
}

.contact-form .btn-primary {
  margin-top: 8px;
}
