.cert-path-section .ladder-header {
  margin-bottom: 66px;
}

.cert-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.cert-path__step {
  min-height: 190px;
  padding: 30px 24px 26px;
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 57, 76, 0.1);
  border-top: 6px solid #f57c00;
  box-shadow: 0 14px 36px rgba(0, 35, 47, 0.08);
}

.cert-path__step:not(:first-child)::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 42px;
  left: -6px;
  bottom: 100%;
  background: #f57c00;
}

.cert-path__step:nth-child(1) { margin-top: 168px; }
.cert-path__step:nth-child(2) { margin-top: 126px; }
.cert-path__step:nth-child(3) { margin-top: 84px; }
.cert-path__step:nth-child(4) { margin-top: 42px; }
.cert-path__step:nth-child(5) { margin-top: 0; }

.cert-path__kicker {
  margin-bottom: 22px;
  color: #f57c00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cert-path__name {
  color: #13222b;
  font-size: clamp(18px, 1.65vw, 25px);
  font-weight: 900;
  line-height: 1.3;
}

.cert-path__en {
  margin-top: 10px;
  color: #66747b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .cert-path {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .cert-path__step,
  .cert-path__step:nth-child(n) {
    width: 100%;
    min-height: 0;
    margin-top: 0;
    padding: 24px 22px;
    border-top-width: 4px;
  }

  .cert-path__step:not(:first-child)::before {
    width: 4px;
    height: 14px;
    left: 24px;
    bottom: 100%;
  }

  .cert-path__kicker {
    margin-bottom: 10px;
  }
}
