.seo-flow {
  background: #f5f7fa;
  padding: 48px 0;
  margin: 0;
}
.seo-flow__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.seo-flow__title {
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
  color: #004a93;
  margin: 0 0 32px;
}
.seo-flow__steps {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 8px;
}
.seo-flow__steps a,
.seo-flow__steps a:hover,
.seo-flow__steps a:visited,
.seo-flow__steps a:focus {
  text-decoration: none !important;
  color: #222 !important;
}
.seo-flow__step {
  flex: 1 1 0;
  min-width: 100px;
  background: #fff !important;
  border: 2px solid #d0e0f0 !important;
  border-radius: 8px;
  padding: 16px 8px;
  text-align: center;
  text-decoration: none !important;
  color: #222 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  transition: background 0.2s, border-color 0.2s;
  box-sizing: border-box;
}
.seo-flow__step:hover {
  background: #e8f0fb !important;
  border-color: #004a93 !important;
  text-decoration: none !important;
  color: #222 !important;
}
.seo-flow__step:visited {
  text-decoration: none !important;
  color: #222 !important;
}
.seo-flow__step-num {
  width: 28px;
  height: 28px;
  background: #004a93;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
  font-weight: bold;
  margin: 0 auto 8px;
  flex-shrink: 0;
}
.seo-flow__step-title {
  font-size: 0.8em;
  font-weight: bold;
  color: #222;
  line-height: 1.4;
  margin-bottom: 6px;
}
.seo-flow__step-desc {
  font-size: 0.7em;
  color: #666;
  line-height: 1.3;
}
.seo-flow__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #004a93;
  font-size: 1em;
  padding: 0 4px;
}

@media screen and (max-width: 768px) {
  .seo-flow__step {
    min-width: 80px;
  }
  .seo-flow__step-desc {
    display: none;
  }
}