.problem-resolution-path {
  margin: 26px 0;
  padding: 24px;
  border: 1px solid #cfeaf2;
  border-radius: 24px;
  background: linear-gradient(135deg, #f4fdff 0%, #ffffff 100%);
  box-shadow: 0 18px 45px rgba(15, 36, 56, 0.06);
}

.problem-conversion-bridge {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid #c9edf4;
  border-radius: 24px;
  background: linear-gradient(135deg, #eefdff 0%, #ffffff 68%);
  box-shadow: 0 18px 45px rgba(15, 36, 56, 0.06);
}

.problem-conversion-bridge__head {
  max-width: 820px;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.problem-conversion-bridge__label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #dffbff;
  color: #008fa3;
  font-weight: 800;
  font-size: 14px;
}

.problem-conversion-bridge h2 {
  margin: 0;
  color: #122033;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.problem-conversion-bridge p {
  margin: 0;
  color: #334963;
  font-size: 18px;
  line-height: 1.55;
}

.problem-conversion-bridge__table {
  overflow: hidden;
  border: 1px solid #d8eef4;
  border-radius: 18px;
  background: #fff;
}

.problem-conversion-bridge__row {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) 1fr;
  gap: 16px;
  padding: 14px 16px;
  border-top: 1px solid #e2f2f6;
}

.problem-conversion-bridge__row:first-child {
  border-top: 0;
  background: #f3fdff;
  font-weight: 900;
  color: #122033;
}

.problem-conversion-bridge__row b {
  color: #122033;
}

.problem-conversion-bridge__row span {
  color: #344963;
  line-height: 1.45;
}

.problem-conversion-bridge__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.problem-conversion-bridge__button,
.problem-conversion-bridge__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.problem-conversion-bridge__button {
  background: #18bdc9;
  color: #fff;
}

.problem-conversion-bridge__link {
  border: 1px solid #bfe7ef;
  background: #fff;
  color: #008fa3;
}

.problem-conversion-bridge__note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f5fbfd;
  color: #334963;
  line-height: 1.55;
}

.problem-resolution-path__head {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 18px;
}

.problem-resolution-path__label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #dffbff;
  color: #008fa3;
  font-weight: 800;
  font-size: 14px;
}

.problem-resolution-path h2 {
  margin: 0;
  color: #122033;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.problem-resolution-path p {
  margin: 0;
  color: #334963;
  font-size: 18px;
  line-height: 1.55;
}

.problem-resolution-path__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: problem-path;
}

.problem-resolution-path__steps li {
  counter-increment: problem-path;
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #d8eef4;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.problem-resolution-path__steps li::before {
  content: counter(problem-path);
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #18bdc9;
  color: #fff;
  font-weight: 900;
  grid-column: 1;
  grid-row: 1;
}

.problem-resolution-path__steps b {
  color: #122033;
  font-size: 16px;
  padding-left: 42px;
  grid-column: 1;
  grid-row: 1;
}

.problem-resolution-path__steps span,
.problem-resolution-path__steps a {
  color: #344963;
  line-height: 1.5;
}

.problem-resolution-path__steps a {
  font-weight: 800;
  color: #008fa3;
  text-decoration: none;
}

.problem-resolution-path__steps a:hover,
.problem-resolution-path__steps a:focus {
  color: #006f81;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .problem-conversion-bridge {
    padding: 16px;
    border-radius: 20px;
  }

  .problem-conversion-bridge__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .problem-conversion-bridge__actions {
    display: grid;
  }

  .problem-resolution-path {
    padding: 16px;
    border-radius: 20px;
  }

  .problem-resolution-path__steps li {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .problem-resolution-path__steps span,
  .problem-resolution-path__steps a {
    padding-left: 42px;
  }
}
