.sample-tour-progress {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(183, 85, 43, 0.3);
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  background: #fffaf6;
  padding: 14px;
}

.sample-tour-progress-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.sample-tour-progress-head .eyebrow {
  margin: 0 0 3px;
}

.sample-tour-progress h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1.04rem;
  line-height: 1.25;
}

.sample-tour-progress > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.sample-tour-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(183, 85, 43, 0.32);
  border-radius: 999px;
  background: white;
  padding: 5px 8px;
  color: var(--copper-dark);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.sample-tour-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.sample-tour-step {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-bottom: 3px solid var(--line);
  padding: 0 2px 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
}

.sample-tour-step b {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e5ebe8;
  color: var(--green-deep);
  font-size: 0.68rem;
}

.sample-tour-step.current {
  border-color: var(--copper);
  color: var(--green-deep);
}

.sample-tour-step.current b {
  background: var(--copper);
  color: white;
}

.sample-tour-step.complete {
  border-color: var(--green);
  color: var(--green-deep);
}

.sample-tour-step.complete b {
  background: var(--green);
  color: white;
}

.sample-tour-areas {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sample-tour-areas li {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.34;
}

.sample-tour-areas svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.sample-tour-outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 10px;
}

.sample-tour-outcomes span {
  min-width: 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 740;
  line-height: 1.25;
}

.sample-tour-outcomes svg {
  width: 17px;
  height: 17px;
  color: var(--copper-dark);
}

.sample-tour-actions {
  display: grid;
  gap: 8px;
}

.sample-tour-actions .button {
  width: 100%;
  min-height: 46px;
  justify-content: center;
}

.sample-simulation-note {
  display: grid;
  gap: 3px;
  border-left: 3px solid var(--green);
  background: #edf7f3;
  padding: 10px 12px;
  color: var(--green-deep);
  font-size: 0.8rem;
  line-height: 1.35;
}

.sample-simulation-note span {
  color: var(--muted);
}

.proof-attachment-note.sample {
  color: var(--green);
}

@media (max-width: 380px) {
  .sample-tour-progress {
    padding: 12px;
  }

  .sample-tour-progress-head {
    gap: 8px;
  }

  .sample-tour-step {
    gap: 3px;
    font-size: 0.68rem;
  }
}
