  .dcx-steps {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  .dcx-steps__head {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }

  .dcx-steps__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: #2f2f31;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .dcx-steps__title {
    margin: 22px 0 0;
    color: #0f172b;
    font-size: clamp(34px, 4.8vw, 68px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .dcx-steps__desc {
    margin: 18px auto 0;
    max-width: 560px;
    color: #7b8ba3;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
  }

  .dcx-steps__timeline {
    position: relative;
    margin-top: 54px;
  }

  .dcx-steps__timeline::before {
    content: "";
    position: absolute;
    left: 48px;
    right: 48px;
    top: 36px;
    height: 1px;
    background: #2f2f31;
    opacity: 0.75;
  }

  .dcx-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
  }

  .dcx-step {
    position: relative;
    text-align: center;
    padding-top: 0;
  }

  .dcx-step__number {
    position: relative;
    z-index: 2;
    width: 74px;
    height: 74px;
    margin: 0 auto 42px;
    border-radius: 20px;
    background: #2f2f31;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(15, 23, 43, 0.10);
  }

  .dcx-step__title {
    margin: 0 0 18px;
    color: #0f172b;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
  }

  .dcx-step__desc {
    margin: 0 auto;
    max-width: 280px;
    color: #7b8ba3;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
  }

  .dcx-step--featured .dcx-step__number {
    background: linear-gradient(88deg, #b10d28 0.47%, #ed1a3b 98.23%);
  }

  @media (max-width: 1180px) {
    .dcx-steps__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      row-gap: 42px;
    }

    .dcx-steps__timeline::before {
      display: none;
    }
  }

  @media (max-width: 767px) {
    .dcx-steps {
      margin-top: 0;
      padding: 0 20px;
    }

    .dcx-steps__title {
      font-size: clamp(32px, 10vw, 48px);
      line-height: 1.06;
    }

    .dcx-steps__desc {
      font-size: 16px;
      line-height: 1.6;
    }

    .dcx-steps__timeline {
      margin-top: 34px;
    }

    .dcx-steps__grid {
      grid-template-columns: 1fr;
      gap: 26px;
    }

    .dcx-step {
      padding: 24px 18px;
      border: 1px solid #e2e8f0;
      border-radius: 24px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      box-shadow: 0 12px 30px rgba(15, 23, 43, 0.05);
    }

    .dcx-step__number {
      width: 64px;
      height: 64px;
      margin-bottom: 22px;
      border-radius: 18px;
      font-size: 20px;
    }

    .dcx-step__title {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .dcx-step__desc {
      max-width: none;
      font-size: 15px;
      line-height: 1.7;
    }
  }
