.banner--sub {
  background-image: url('../assets/images/transport/banner/banner.png');
}
.process-flow {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 6px 24px 0px rgba(43, 89, 193, 0.06);
  padding: 50px 40px;
}
.process-flow__inner {
  display: flex;
  align-items: flex-start;
}
.process-flow__left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 24px;
  height: 118px;
  justify-content: space-between;
}
.process-flow__source {
  padding: 8px 16px;
  background: #EDF7FF;
  border-radius: 4px;
}
.process-flow__source:first-child {
  margin-bottom: 30px;
}
.process-flow__source:last-child {
  margin-top: 20px;
}
.process-flow__source-text {
  font-size: 14px;
  color: var(--paragraph-color);
  white-space: nowrap;
}
.process-flow__line {
  display: flex;
  align-items: flex-start;
  padding-top: 44px;
}
.process-flow__line img {
  height: 90px;
  width: auto;
}
.process-flow__steps {
  display: flex;
  align-items: flex-start;
}
.process-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-flow__step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #D0E3FF;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fff;
}
.process-flow__step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.process-flow__step-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, #3B8CFF 0%, #60A5FF 100%);
  border-radius: 4px;
  min-width: 100px;
  height: 38px;
  box-sizing: border-box;
}
.process-flow__step-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.process-flow__step-subtitle {
  font-size: 14px;
  color: var(--paragraph-color);
  background: #EDF7FF;
  padding: 10px 20px;
  border-radius: 4px;
  white-space: nowrap;
  min-width: 100px;
  height: 38px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.process-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 38px;
  margin-top: 68px;
}
.process-flow__arrow img {
  width: 24px;
  height: auto;
}
.advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}
.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0);
  border: 1px solid #E5E8F2;
  border-radius: 12px;
}
.advantage-item__number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 89, 193, 0.05);
  border-radius: 50%;
  font-family: var(--font-family-number);
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}
.advantage-item__content {
  flex: 1;
  padding-top: 8px;
}
.advantage-item__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}
.advantage-item__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}