.gcd-quiz {
  padding: 32px 0;
}

.gcd-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}

.gcd-head {
  margin-bottom: 14px;
}

.gcd-progress {
  margin-top: 12px;
}

.gcd-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e8edf5;
  overflow: hidden;
}

.gcd-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: #0a3d77;
  transition: width .2s ease;
}

.gcd-progress-meta {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4f4f4f;
  font-size: 13px;
}

.gcd-title {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.15;
}

.gcd-subtitle {
  margin: 0;
  line-height: 1.55;
  color: #404040;
}

.gcd-card {
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.gcd-step-head {
  margin-bottom: 12px;
}

.gcd-step-kicker {
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.gcd-step-title {
  margin: 0 0 4px;
  font-size: 22px;
}

.gcd-step-desc {
  margin: 0;
  color: #4f4f4f;
  line-height: 1.55;
}

.gcd-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.gcd-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 11px 12px;
  cursor: pointer;
}

.gcd-choice span {
  line-height: 1.35;
}

.gcd-q {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.gcd-email-wrap {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.gcd-email-label {
  font-size: 14px;
  line-height: 1.4;
}

.gcdEmailInput {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 11px 12px;
  line-height: 1.35;
}

.gcd-q-row {
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 12px;
}

.gcd-q-text {
  margin-bottom: 10px;
  line-height: 1.45;
  font-weight: 500;
}

.gcd-q-answers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gcd-q-answers input[type="text"],
.gcd-q-answers input[type="date"],
.gcd-q-answers select {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 11px 12px;
  line-height: 1.35;
}

.gcd-q-answers label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.gcd-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.gcd-actions-split {
  justify-content: space-between;
}

.gcd-actions-stack {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.gcd-btn-prev-left {
  margin-right: auto;
}

@media (max-width: 719px) {
  .gcd-actions-stack {
    flex-direction: column;
    align-items: stretch;
  }

  .gcd-btn-prev-left {
    margin-right: 0;
  }
}

.gcd-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.gcd-btn-primary {
  background: #0a3d77;
  border-color: #0a3d77;
  color: #fff;
}

.gcd-btn-ghost {
  background: #fff;
  border-color: #d8d8d8;
  color: #111;
}

.gcd-hint {
  margin-top: 10px;
  font-size: 13px;
  color: #5a5a5a;
}

.gcd-invalid {
  border-color: #b42318 !important;
  background: #fff6f6;
}

.gcd-error {
  margin: 8px 0 0;
  color: #b42318;
  font-size: 13px;
}

.gcd-score {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.gcd-score-num {
  font-size: 30px;
  font-weight: 800;
}

.gcd-score-label {
  font-size: 16px;
  font-weight: 600;
}

.gcd-result-text {
  margin-top: 10px;
  line-height: 1.65;
}

.gcd-key-message {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f1f5f9;
  line-height: 1.55;
}

.gcd-persona {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ecf4ff;
  line-height: 1.55;
}

.gcd-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

.gcd-debug {
  margin-top: 8px;
  font-size: 11px;
  color: #8a8a8a;
}

@media (min-width: 720px) {
  .gcd-grid {
    grid-template-columns: 1fr 1fr;
  }
}
