.crop-block {
  align-items: start;
}

.crop-block ul {
  margin: 0;
  padding-left: 1.1em;
  color: var(--color-text-muted);
}

.crop-block li {
  margin-bottom: 6px;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
}

.process-step__num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 4px;
}

.process-step p {
  margin: 0;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  padding-left: 30px;
  position: relative;
  color: var(--color-text-muted);
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.check-list strong {
  color: var(--color-text);
}

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.cta-inline h2 {
  margin-bottom: 0.3em;
}

.cta-inline p {
  margin: 0;
}

@media (max-width: 640px) {
  .process-step {
    flex-direction: column;
  }
}
